
        html, body {
    height: 100%;
	width: 100%;
    margin: 0;
    padding: 0;
	overflow-x: none;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
}

.nav-main {
    flex: 0 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    padding: 0;
    margin: 18px;
    list-style: none;
}

.nav-links li {
    margin: 1 8px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #a98372;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-links li a:hover {
    color: #a98372;
}

.nav-links li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-icons {
    display: flex;
    align-items: center;
}

.logo {
    margin-right: auto;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}


		
		 @media (max-width: 1024px) {
            .mission-container,
            .values-grid,
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .impact-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }

            .mission-container,
            .values-grid,
            .team-grid,
            .impact-stats,
            .footer-container {
                grid-template-columns: 1fr;
            }

          
        }

		
		* {
            margin: 0px;
            padding: 0;
            box-sizing: initial;
            transition: all 0.3s ease;
        }
       
	   :root {
            --primary-bg: #ffffff;
            --secondary-bg: #f5f5f5;
            --text-color: #111111;
            --accent-color: #9b9b99;
            --secondary-text: #757575;
            --hover-color: #e5e5e5;
        }

        .dark-mode {
            --primary-bg: #111111;
            --secondary-bg: #1a1a1a;
            --text-color: #ffffff;
            --secondary-text: #b0b0b0;
            --hover-color: #2d2d2d;
        }

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background: var(--primary-bg);
            color: var(--text-color);
            line-height: 1.5;
        }


.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    margin-right: auto;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.nav-links {
    display: flex;
    justify-content: center; /* Center the list items horizontally */
    flex-grow: 1; /* Allow the nav-links to grow and take available space */
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-links li {
    margin: 0 5px; /* Space between list items */
}

.nav-links li a {
    text-decoration: none;
    color: #333; /* Original color */
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease; /* Smooth color transition */
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color:#a98372; /* Blue underline */
    transform-origin: bottom right;
    transition: transform 0.3s ease-out; /* Smooth underline transition */
}

.nav-links li a:hover {
    color: #a98372; /* Change text color on hover */
}

.nav-links li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-icons {
    display: flex;
    align-items: center;
}

/* Product Page Styles */
.product-details {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.product-images {
    flex: 1;
    margin-right: 20px;
}

.product-images img.main-img {
    width: 100%;
    height: auto;
}

.thumb-imgs {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.thumb-imgs img {
    width: 32%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumb-imgs img:hover {
    transform: scale(1.1);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.5rem;
    color: #69717a;
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 20px;
}

.product-options {
    margin-bottom: 20px;
}

.product-options label {
    display: block;
    margin-bottom: 5px;
}

.product-options select {
    padding: 5px;
    width: 100px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.footer {
    background-color: #f8f8f8;
    padding: 20px 0;
    text-align: center;
    margin-top: 20px;
}
        /* Utility Classes */
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Navigation */
        .top-bar {
            background: var(--secondary-bg);
            padding: 0.5rem 0;
            font-size: 0.8rem;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-main {
            background: var(--primary-bg);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            gap: 1.6rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
        }

        .nav-icons {
            display: flex;
            gap: 1.5rem;
        }

        /* Hero Section */
        .hero {
            height: 114vh;
            position: relative;
            overflow: hidden;
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-title {
            font-size: 7.2em;
            margin-bottom: 1rem;
			font-weight: 800;
			line-height: 1em;
			letter-spacing: -0.02em;
			text-transform: capitalize;
			color: var(--light-color);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }
		
		.site-banner{
			text-align: center;
		}
		.site-banner h1.hero{
			font-size: 7.2em;
			font-weight: 800;
			line-height: 1em;
			letter-spacing: -0.02em;
			text-transform: capitalize;
			color: var(--light-color);
		}
        
        /* Membership Section */
        .membership {
            background: var(--text-color);
            color: var(--primary-bg);
            padding: 4rem 0;
            text-align: center;
        }

        .membership-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .membership-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .membership-card {
            padding: 2rem;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
        }

		
		/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.nav-main {
    background-color: #f8f8f8;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-nav-links {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-nav-links li {
    margin: 0 15px;
}

.main-nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav-links li a:hover {
    color: #ff5733f;
}

.page-links {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.page-links li {
    margin: 5px 10px; /* Adjust margin for mobile */
}

.page-links li a {
    text-decoration: none;
    color: #555;
    font-weight: normal;
    position: relative;
    transition: color 0.3s ease;
}

.page-links li a:hover {
    color: #ff5733;
}

.nav-icons {
    display: flex;
    align-items: center;
}



        /* Footer */
        .footer {
            background: var(--secondary-bg);
            padding: 4rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .footer-links h4 {
            margin-bottom: 1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links a {
            color: var(--secondary-text);
            text-decoration: none;
            line-height: 2;
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--secondary-text);
            text-align: center;
            color: var(--secondary-text);
        }

        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .featured-grid {
                grid-template-columns: 1fr;
            }
			html, body {
				height: 100%;
				width: 100%;
				margin: 0;
				padding: 0;
				overflow-x: none;
				font-family: Arial, sans-serif;
				box-sizing: border-box;
			}
            .innovation-content {
                grid-template-columns: 1fr;
            }

            .membership-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
.nav-links.show {
    display: flex;
}

        @media (max-width: 768px) {
            
			html, body {
				height: 100%;
				width: 100%;
				margin: 0;
				padding: 0;
				overflow-x: none;
				font-family: Arial, sans-serif;
				box-sizing: border-box;
			}
			
			.hero-title {
                font-size: 2.5rem;
            }

			.logo {
				order: 1;
				margin: 20px 0;
				text-align: center;
			}

            .main-nav-links {
                display: none;
            }
			
			.nav-container { 
				flex-direction: column; 
			}
			
            .container {
                padding: 10px;
            }

            .featured-img {
                height: 300px;
            }

            .innovation-img {
                height: 400px;
            }
        }

        /* Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .fade-up.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Menu Button */
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
        }
    
	
.mobile-menu {
    display: none;
}


/* Hero Section Styles */

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(70%);
}


/* Responsive Styles */
@media (max-width: 768px) {


    .main-nav-links li {
        margin: 10px 0;
    }
	.nav-icons{
		display: none; 
	}
    .mobile-menu {
        display: block;
    }

    .product-details {
        flex-direction: column;
    }

    .product-images, .product-info {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

        }
		
	   /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .featured-grid {
                grid-template-columns: 1fr;
            }
			html, body {
				height: 100%;
				width: 100%;
				margin: 0;
				padding: 0;
				overflow-x: none;
				font-family: Arial, sans-serif;
				box-sizing: border-box;
			}
            .innovation-content {
                grid-template-columns: 1fr;
            }

            .membership-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
.nav-links.show {
    display: flex;
}

        @media (max-width: 768px) {
            
			html, body {
				height: 100%;
				width: 100%;
				margin: 0;
				padding: 0;
				overflow-x: none;
				font-family: Arial, sans-serif;
				box-sizing: border-box;
			}
			
			.hero-title {
                font-size: 2.5rem;
            }

			.logo {
				order: 1;
				margin: 20px 0;
				text-align: center;
			}

            .main-nav-links {
                display: none;
            }
			
			.nav-container { 
				flex-direction: column; 
			}
			
            .container {
                padding: 10px;
            }

            .featured-img {
                height: 300px;
            }

            .innovation-img {
                height: 400px;
            }
        }

        /* Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .fade-up.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Menu Button */
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
        }
    
	
.mobile-menu {
    display: none;
}





/* Hero Section Styles */

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(70%);
}


/* Responsive Styles */
@media (max-width: 768px) {


    .main-nav-links li {
        margin: 10px 0;
    }
	.nav-icons{
		display: none; 
	}
    .mobile-menu {
        display: block;
    }

    .product-details {
        flex-direction: column;
    }

    .product-images, .product-info {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 22px;
    }
}
 .product-gallery {
            position: sticky;
            top: 100px;
            height: fit-content;
        }

	
	/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Navigation */
.nav-main {
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #ff5733;
}

.nav-icons {
    display: flex;
    align-items: center;
    display: none;
}

.nav-icons i {
    margin-left: 15px;
    cursor: pointer;
    color: #333;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-links.show {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }
}
        :root {
            --primary-color: #ffffff;
            --secondary-color: #000000;
            --accent-color: #725f5f;
            --text-color: #111111;
            --background-color: #f8f8f8;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }\

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', sans-serif;
        }

        
/* Product Section */
.product-container {
    max-width: 1200px;
    margin: 0px 14px;
    padding: 0px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    min-height: 81vh;
}

.product-gallery {
    position: relative;
    top: 100px;
    height: fit-content;
}

.swiper-container {
    width: 100%;
    height: 600px;
    margin-bottom: -35px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 30px;
    object-fit: contain;
}

.gallery-thumbs {
    display: flex;
    gap: 11px;
    margin-top: 1px;
    margin-block: -45px;
    flex-direction: row;
    justify-content: center;
}

.thumb {
    width: 80px;
    height: 80px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

/* Nav Icons */
.nav-icons {
    display: flex;
    align-items: center;
    GAP: 10PX;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    margin-right: 15px;
}

.cart-icon .cart-count {
    position: absolute;
    top: -13px;
    right: -18px;
    background-color: #96694a;
    color: white;
    padding: 1px 5px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.cart-icon .cart-count.animate {
    animation: bounce 0.3s;
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}

/* Modal Styles */
.cart-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);  /* Dark overlay */
}

.cart-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    animation: fadeIn 0.5s; /* Smooth fade-in animation */
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.cart-items {
    margin: 20px 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.cart-item span {
    font-size: 16px;
    font-weight: 500;
}

.cart-total {
    margin-top: 20px;
    font-size: 18px;
}

.cart-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}


.checkout-btn {
    width: 70%;
    padding: 15px;
    background-color: #534343;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.clear-cart-btn {
    width: 38%;
    padding: 1rem;
    background-color: #c0c0c0;
    color: #000000;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    margin-top: 1.5rem;
}

.clear-cart-btn:hover {
	background-color: #c98383;
}


.checkout-btn:hover {
    background-color: #737373;
}

.thumb:hover {
    opacity: 1;
}

.thumb.active {
    opacity: 1;
    border: 0px solid var(--accent-color);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info {
    padding: 20px 0;
}

.product-tag {
    display: inline-block;
    padding: 5px 10px;
    background: var(--accent-color);
    color: white;
    font-size: 12px;
    border-radius: 3px;
    margin-bottom: 20px;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-price {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.product-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.size-selector, .quantity-selector {
    margin-bottom: 30px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
}

.size-options, .quantity-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-option, .quantity-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

.size-option:hover, .quantity-btn:hover {
    border-color: var(--secondary-color);
}

.size-option.selected, .quantity-btn:hover {
    background: #5f5454;
    color: white;
    border-color: var(--secondary-color);
}

.quantity-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 500;
}

.add-to-cart {
    width: 100%;
    padding: 20px;
    background: #4f4f4f;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.add-to-cart:hover {
    background: var(--accent-color);
}

.add-to-cart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.add-to-cart:active::after {
    width: 300px;
    height: 300px;
}

.product-meta {
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.meta-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.meta-item i {
    color: var(--accent-color);
}

/* Additional Features */
.features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature {
    text-align: center;
    padding: 20px;
    background: var(--background-color);
    border-radius: 5px;
}

.feature i {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.feature h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.feature p {
    font-size: 12px;
    color: #666;
}

/* Size Guide */
.size-guide {
    margin-top: 30px;
}

.size-guide-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-gallery {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .nav-main {
        padding: 15px 20px;
    }

    .product-container {
        padding: 0px;
        margin: 0px;
    }

    .swiper-container {
        height: 400px;
    }

    .features {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.6s forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

a:link {
  text-decoration: none;
}

 body {
            background: #ffffff;
            color: var(--text-color);
            line-height: 1.6;
        }

        .checkout-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 2rem;
        }

        .checkout-form {
            background: #efefef;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: 0 8px 30px rgba(0,0,0,0.05);
        }

        .order-summary {
            background: #efefef;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: 0 8px 30px rgba(0,0,0,0.05);
            top: 2rem;
            height: fit-content;
        }

        .section-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-color);
        }

        .form-input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #e1e1e1;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
            background: #f8f8f8;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
        }

        .input-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .card-element {
            padding: 1rem;
            border: 1px solid #e1e1e1;
            border-radius: var(--border-radius);
            background: #f8f8f8;
        }

        .order-item {
            display: flex;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
        }

        .item-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 1rem;
        }

        .item-details {
            flex-grow: 1;
        }

        .item-title {
            font-weight: 500;
            margin-bottom: 0.25rem;
        }

        .item-price {
            color: var(--accent-color);
            font-weight: 600;
        }

        .order-summary-row {
            display: flex;
            justify-content: space-between;
            margin: 1rem 0;
            font-size: 0.95rem;
        }

        .total-row {
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 2px solid #eee;
        }

        .checkout-btn {
            width: 100%;
            padding: 1rem;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 1.5rem;
        }

        .checkout-btn:hover {
            background: #000;
            transform: translateY(-2px);
        }

        .shipping-method {
            display: flex;
            align-items: center;
            padding: 1rem;
            border: 1px solid #e1e1e1;
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .shipping-method:hover {
            border-color: var(--accent-color);
        }

        .shipping-method.selected {
            border-color: var(--accent-color);
            background: rgba(0,0,0,0.02);
        }

        .shipping-method input[type="radio"] {
            margin-right: 1rem;
        }

        .promo-code {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .promo-code input {
            flex-grow: 1;
        }

        .promo-code button {
            padding: 0 1.5rem;
            background: var(--accent-color);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
        }

        .promo-code button:hover {
            background: #000;
        }

        .payment-methods {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .payment-method {
            flex: 1;
            padding: 1rem;
            border: 1px solid #e1e1e1;
            border-radius: var(--border-radius);
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .payment-method:hover {
            border-color: var(--accent-color);
        }

        .payment-method.selected {
            border-color: var(--accent-color);
            background: rgba(0,0,0,0.02);
        }

        .payment-method i {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        @media (max-width: 768px) {
            .checkout-container {
                grid-template-columns: 1fr;
            }

            .input-grid {
                grid-template-columns: 1fr;
            }
        }

        .progress-bar {
            display: flex;
            justify-content: space-between;
            margin-bottom: 2rem;
            position: relative;
        }

        .progress-step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 30px;
            height: 30px;
            background: white;
            border: 2px solid #e1e1e1;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.5rem;
            transition: var(--transition);
        }

        .progress-step.active .step-number {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }

        .step-title {
            font-size: 0.9rem;
            color: #666;
        }

        .progress-bar::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 0;
            right: 0;
            height: 2px;
            background: #e1e1e1;
            z-index: 0;
        }

        .success-animation {
            display: none;
            text-align: center;
            padding: 2rem;
        }

        .success-animation i {
            font-size: 4rem;
            color: #4CAF50;
            margin-bottom: 1rem;
        }

        .loading {
            display: none;
            text-align: center;
            padding: 1rem;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
		
		:root {
            --primary-color: #1a1a1a;
            --secondary-color: #f5f5f5;
            --accent-color: #333;
            --text-color: #2c2c2c;
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
		
		/* Add to your existing CSS */
		
		
		/* Add to your existing styles */
.notification {
    position: fixed;
    top: 20px;
    right: -300px;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 1000;
}

.notification.success {
    background: #4CAF50;
    color: white;
}

.notification.error {
    background: #f44336;
    color: white;
}

.notification.show {
    right: 20px;
}

.error {
    border-color: #f44336 !important;
}

.item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.quantity-badge {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 0.8em;
    margin-left: 5px;
}

.cart-empty {
    text-align: center;
    padding: 20px;
    color: #666;
}

.cart-empty i {
    font-size: 2em;
    margin-bottom: 10px;
    color: #999;
}

.notification {
    position: fixed;
    top: 20px;
    right: -300px;
    background: #cccabe;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 1000;
}

.notification.show {
    right: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.cart-item-image img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-details h4 {
    margin: 0;
    font-size: 0.9rem;
}

.cart-item-details p {
    margin: 2px 0;
    font-size: 0.8rem;
    color: #666;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    padding: 5px;
}

.remove-item:hover {
    color: #cc0000;
}

.empty-cart {
    text-align: center;
    padding: 20px;
    color: #666;
}

/* Add these styles to ensure footer stays at bottom */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* viewport height */
}

.main-content {
    flex: 1 0 auto; /* This will push the footer down */
    padding-bottom: 40px; /* Add some space before footer */
}

.footer {
    flex-shrink: 0; /* Prevent footer from shrinking */
    width: 100%;
    padding: 40px 0 20px;
    margin-top: auto; /* This helps push it to the bottom */
}

/* Your existing footer styles */
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive footer */
