/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}




































html, body {
    height: 100%;
        margin: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    background: #000;
    color: #fff; 
}

main {
    flex: 1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
        background: #b30000;
    padding: 10px 20px;
}







.logo {
        height: 50px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 10px;
}

.menu a.active, .menu a:hover {
    background: #fff; 
    color: #b30000;
    border-radius: 5px;
}








.home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 50px;
    gap: 30px;
}

.home-text p {
    line-height: 1.5;
}

.home-image img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #b30000;
}









.btn {
    background: #b30000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
}

.btn:hover {
    background: #ff1a1a;
}








.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px;
}








.socials li {
    list-style: none;
    margin-bottom: 8px;
}

.socials li a {
    color: #b30000;
    text-decoration: none;
    font-weight: 500;
}

.socials li a:hover {
    color: #ff1a1a;
}







.contact-form input, .contact-form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 2px solid #b30000;
            border-radius: 5px;
    background: #222;
    color: #fff;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #ff1a1a;
}

.contact-form button {
    background: #b30000;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 8px;
}

.contact-form button:hover {
    background: #ff1a1a;
}







.item-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}








.main-image {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #b30000;
}

.thumbs img {
    width: 70px;
    margin: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: border 0.2s;
}

.thumbs img:hover {
    border: 2px solid #b30000;
}








.cart-page {
    padding: 40px;
    max-width: 900px;
    margin: auto;
}

#cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
        background: #111;
        padding: 15px;
    border-radius: 10px;
    border: 1px solid #b30000;
}

.cart-img {
    width: 100px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 20px;
}

.cart-details h4 {
    margin: 0 0 5px;
}

.cart-details .price {
    font-weight: 600;
    margin-bottom: 8px;
}
















.quantity-box input {
    width: 50px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #b30000;
    padding: 3px;
    background: #222;
    color: #fff;
}

.remove-btn {
    background: #b30000;
    color: white;
        border: none;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;

}

.remove-btn:hover {
    background: #ff1a1a;
}
















.cart-summary {
    margin-top: 40px;
    background: #111;
        padding: 20px;
    border-radius: 10px;
    border: 1px solid #b30000;
}

.cart-summary h3, .cart-summary h4 {
    color: #b30000;
}

.cart-buttons {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}











.btn.secondary {
        background: #555;
    color: #fff;
}

.btn.danger {
    background: #b30000;
}

.btn.danger:hover {
    background: #ff1a1a;
}

.hidden {
    display: none;
}












.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
            text-align: center;
    margin-top: 60px;
}

.empty-cart img {
    width: 120px;
    opacity: 0.6;
    margin-bottom: 15px;
}

.empty-cart p {
    margin-bottom: 20px;
}













footer {
    text-align: center;
    background: #111;
    color: #fff;
        padding: 15px;
            margin-top: auto;
    border-top: 2px solid #b30000;
}









iframe {
    border-radius: 10px;
    border: 2px solid #b30000;
}












h1, h2, h3, h4 {
    color: #ff1a1a;
}
