        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-black: #1a1a1a;
            --soft-black: #2a2a2a;
            --gold-accent: #D4AF37;
            --light-gray: #f8f8f8;
            --medium-gray: #e0e0e0;
            --text-gray: #666;
            --white: #ffffff;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--primary-black);
            background-color: var(--white);
            overflow-x: hidden;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Main content wrapper */
        .main-content {
            flex: 1;
        }

        /* Header */
        .header {
            background-color: var(--primary-black);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--white);
            text-decoration: none;
            letter-spacing: -1px;
        }

        .logo::after {
            content: "•";
            color: var(--gold-accent);
            margin-left: 4px;
        }

        .main-nav {
            display: flex;
            gap: 32px;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            background: none;
            border: none;
            font-size: 16px;
            cursor: pointer;
            padding: 12px 16px;
            border-radius: 6px;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: var(--white);
        }

        .nav-link:hover {
            background-color: var(--soft-black);
        }

        .dropdown-arrow {
            transition: transform 0.3s ease;
            font-size: 12px;
        }

        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            box-shadow: 0 8px 32px rgba(0,0,0,0.15);
            border-radius: 8px;
            min-width: 250px;
            max-width: 350px;
            width: max-content;
            max-height: 400px;
            overflow-y: auto;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .submenu-header {
            padding: 16px 20px 12px;
            border-bottom: 1px solid var(--medium-gray);
            background-color: var(--light-gray);
            border-radius: 8px 8px 0 0;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .submenu-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-black);
            margin-bottom: 8px;
        }

        .submenu-search {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid var(--medium-gray);
            border-radius: 6px;
            font-size: 14px;
            background-color: var(--white);
        }

        .submenu-search:focus {
            outline: none;
            border-color: var(--gold-accent);
        }

        .submenu-section {
            padding: 12px 0;
        }

        .submenu-section:not(:last-child) {
            border-bottom: 1px solid var(--medium-gray);
        }

        .submenu-section-title {
            padding: 8px 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background-color: var(--light-gray);
        }

        .submenu-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .nav-item:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-item:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        .submenu a {
            display: block;
            padding: 10px 20px;
            text-decoration: none;
            color: var(--primary-black);
            transition: background-color 0.3s ease;
            font-size: 14px;
            border-radius: 0;
        }

        .submenu a:hover {
            background-color: var(--light-gray);
        }

        .submenu a.featured {
            font-weight: 600;
            color: var(--gold-accent);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            padding: 8px;
        }

        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .hero-section {
            padding: 16px 0;
            text-align: center;
            background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
        }

        .hero-section h1 {
	    font-size:36px !important;
/*            font-size: 48px;*/
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -2px;
        }

        .hero-section h2 {
/*            font-size: 24px;
            font-weight: 400;*/
            color: var(--text-gray);
            margin-bottom: 0px;
        }

        .hero-text, .hero-section .container div {
            font-size: 16px;
            color: var(--text-gray);
            max-width: 1000px;
            margin: 0 auto;
            line-height: 1.4;
        }
        
        .hero-text p {
    	    margin-bottom:8px;
        }

        /* Product Catalogue */
        .catalogue-section {
            padding: 24px 0;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--text-gray);
            text-align: center;
            margin-bottom: 48px;
        }

        .filters {
            display: flex;
            gap: 16px;
            margin-bottom: 48px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .filter-dropdown {
            position: relative;
        }

        .filter-button {
            padding: 12px 16px;
            border: 2px solid var(--medium-gray);
            border-radius: 8px;
            background-color: var(--white);
            font-size: 16px;
            cursor: pointer;
            transition: border-color 0.3s ease;
            min-width: 120px;
            max-width: 180px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .filter-button:focus {
            outline: none;
            border-color: var(--gold-accent);
        }

        .filter-button:hover {
            border-color: var(--gold-accent);
        }

        .filter-arrow {
            transition: transform 0.3s ease;
            font-size: 12px;
        }

        .filter-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--white);
            box-shadow: 0 8px 32px rgba(0,0,0,0.15);
            border-radius: 8px;
            max-height: 300px;
            overflow-y: auto;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 100;
            min-width: 200px;
        }

        .filter-search {
            padding: 12px 16px;
            border-bottom: 1px solid var(--medium-gray);
            background-color: var(--light-gray);
            border-radius: 8px 8px 0 0;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .filter-search input {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid var(--medium-gray);
            border-radius: 6px;
            font-size: 14px;
            background-color: var(--white);
        }

        .filter-search input:focus {
            outline: none;
            border-color: var(--gold-accent);
        }

        .filter-section {
            padding: 8px 0;
        }

        .filter-section:not(:last-child) {
            border-bottom: 1px solid var(--medium-gray);
        }

        .filter-section-title {
            padding: 8px 16px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background-color: var(--light-gray);
        }

        .filter-menu.is-active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .filter-menu a {
            display: block;
            padding: 12px 16px;
            text-decoration: none;
            color: var(--primary-black);
            transition: background-color 0.3s ease;
            font-size: 14px;
        }

        .filter-menu a:hover {
            background-color: var(--light-gray);
        }

        .filter-menu a:first-child {
            border-radius: 8px 8px 0 0;
        }

        .filter-menu a:last-child {
            border-radius: 0 0 8px 8px;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 40px;
            width: 100%;
        }

        .product-card {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            position: relative;
            width: 100%;
            min-width: 0;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }





    






        /* Product Images */
        .product-images {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .main-image {
            width: 100%;
            height: 600px;
            /*background: linear-gradient(45deg, var(--medium-gray), var(--light-gray));*/
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--text-gray);
            position: relative;
            overflow: hidden;
        }

        .image-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: var(--gold-accent);
            color: var(--white);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .image-nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: bold;
            color: var(--primary-black);
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            z-index: 10;
        }

        .image-nav-arrow:hover {
            background-color: var(--gold-accent);
            color: var(--white);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
        }

        .image-nav-arrow.prev {
            left: 20px;
        }

        .image-nav-arrow.next {
            right: 20px;
        }

        .image-counter {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.7);
            color: var(--white);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }







        .product-info {
            padding: 20px;
        }
        
        a.product-brand, a.product-name, a.product-price, a.nodecor {
    	    text-decoration:none;
        }

        .product-brand, .product-brand a {
            font-size: 14px;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0px;
        }

        .product-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 0px;
            color: var(--primary-black);
        }

        .product-price {
            font-size: 20px;
            font-weight: 700;
            color: var(--gold-accent);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .original-price {
            font-size: 16px;
            color: var(--text-gray);
            text-decoration: line-through;
            font-weight: 400;
        }

        /* Content Block 2 */
        .content-block {
            padding: 80px 0;
            background-color: var(--light-gray);
        }

        .content-block h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
            text-align: center;
        }

        .content-block h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 24px;
            text-align: center;
            color: var(--text-gray);
        }

        .content-block p {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text-gray);
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        /* Footer */
        .footer {
            background-color: var(--primary-black);
            color: var(--white);
            padding: 60px 0 40px;
            margin-top: auto;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
        }

        .footer-text {
            flex: 1;
            max-width: 400px;
        }

        .footer-text h4 {
            font-size: 20px;
            margin-bottom: 16px;
            color: var(--gold-accent);
        }

        .footer-menu {
            display: flex;
            gap: 32px;
        }

        .footer-menu a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-menu a:hover {
            color: var(--gold-accent);
        }

        .footer-bottom {
            border-top: 1px solid var(--soft-black);
            padding-top: 24px;
            text-align: center;
            color: var(--text-gray);
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .filters {
                justify-content: flex-start;
            }

        }

        @media (min-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(5, 1fr);
            }

            .hero-section h1 {
                font-size: 64px;
            }

            .hero-section h2 {
                font-size: 28px;
            }
        }

        @media (max-width: 767px) {
            .header-container {
                padding: 0 16px;
            }

            .submenu {
                left: 20px;
                right: 20px;
                min-width: auto;
                max-width: none;
                width: auto;
            }

            .submenu-grid {
                grid-template-columns: 1fr;
            }

            .main-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--primary-black);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            }

            .main-nav.is-active {
                display: flex;
            }

            .mobile-menu-toggle {
                display: block;
                font-size:32px;
                color: var(--white);
            }

            .container {
                padding: 0 16px;
            }

            .filters {
                flex-direction: column;
                align-items: stretch;
            }

            .filter-dropdown {
                width: 100%;
            }

            .filter-button {
                width: 100%;
                min-width: auto;
                max-width: none;
            }

            .hero-section {
                padding: 16px 0 8px 0;
            }

            .hero-section h1 {
                font-size: 24px;
            }

            .hero-section h2 {
                font-size: 20px;
            }
            
            .seo-text div {
        	display:none;
            }
            
            .hero-section .container h1 {
        	font-size:32px !important;
            }

            .catalogue-section,
            .content-block {
                padding: 0px 0;
            }
            
            .filters {
            }

            .footer-content {
                flex-direction: column;
                gap: 32px;
            }

	    .footer-text {
		display:none;
	    }

            .footer-menu {
        	display:none;
                flex-direction: column;
                gap: 16px;
            }

            .product-image {
                _height: 350px;
            }
            
            .product-price {
        	font-size:14px;
            }
            
            .filter-button {
        	color:black;
            }
            
            .pagination {
        	margin-bottom:32px;
            }
        }








        /* Breadcrumb */
        .breadcrumb {
            background-color: var(--light-gray);
            padding: 16px 0;
        }

        .breadcrumb-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-gray);
        }

        .breadcrumb-nav a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-nav a:hover {
            color: var(--gold-accent);
        }

        .breadcrumb-separator {
            color: var(--medium-gray);
        }










        /* Pagination Styles */
        .pagination {
            display: flex;
        flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            margin-top: 3rem;
            gap: 0.5rem;
            max-width:90%;
        }

        .pagination-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 1px solid #ddd;
            background: white;
            color: #666;
            font-size: 1rem;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .pagination a {
	    text-decoration:none;
        }

        .pagination-button:hover {
            border-color: #000;
            color: #000;
        }

        .pagination-button.active {
            background: #000;
            color: white;
            border-color: #000;
        }

        .pagination-button.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .pagination-ellipsis {
            color: #666;
            padding: 0 0.5rem;
        }
        
        
        

	
	.allbrands {
	    text-align:left;
	    max-width:1000px;
	}
	
	.allbrands a, .allbrands a:hover{
	    color: var(--soft-black);
	    margin-right:16px;
	    white-space: nowrap;
	}






        .level2 {
            margin-left:16px;
        }
        .level3 {
            margin-left:32px;
        }
        .selected {
            font-weight:bold;
        }



















        /* Main Content */
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 24px;
        }

        .product-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
        }

        /* Product Images */
        .product-images {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .main-image {
            width: 100%;
            height: 600px;
            background: linear-gradient(45deg, var(--medium-gray), var(--light-gray));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--text-gray);
            position: relative;
            overflow: hidden;
        }

        .image-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: var(--gold-accent);
            color: var(--white);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .thumbnail-images {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding: 4px 0;
        }

        .thumbnail {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--medium-gray), var(--light-gray));
            border-radius: 8px;
            flex-shrink: 0;
            cursor: pointer;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: var(--text-gray);
        }

        .thumbnail:hover {
            opacity: 0.7;
        }

        .thumbnail.active {
            border: 2px solid var(--gold-accent);
        }

        /* Product Info */
        .product-info {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .product-brand {
            font-size: 14px;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .product-title {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -1px;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .current-price {
            font-size: 32px;
            font-weight: 700;
            color: var(--gold-accent);
        }

        .original-price {
            font-size: 24px;
            color: var(--text-gray);
            text-decoration: line-through;
        }

        .discount-badge {
            background-color: var(--error-red);
            color: var(--white);
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
        }

        .product-description {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-gray);
        }

        /* Product Options */
        .product-options {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .option-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .option-label {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-black);
        }

        .size-options {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .size-option {
            padding: 12px 16px;
            border: 2px solid var(--medium-gray);
            border-radius: 8px;
            background-color: var(--white);
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            min-width: 50px;
            text-align: center;
        }

        .size-option:hover {
            border-color: var(--gold-accent);
        }

        .size-option.selected {
            border-color: var(--gold-accent);
            background-color: var(--gold-accent);
            color: var(--white);
        }

        .size-option.unavailable {
            opacity: 0.3;
            cursor: not-allowed;
            position: relative;
        }

        .size-option.unavailable::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 10%;
            right: 10%;
            height: 2px;
            background-color: var(--error-red);
            transform: translateY(-50%) rotate(-45deg);
        }

        .color-options {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .color-option {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 3px solid var(--white);
            box-shadow: 0 0 0 2px var(--medium-gray);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .color-option.selected {
            box-shadow: 0 0 0 2px var(--gold-accent);
            transform: scale(1.1);
        }

        .color-black { background-color: #000; }
        .color-navy { background-color: #1e3a8a; }
        .color-burgundy { background-color: #7c2d12; }

        .quantity-selector {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            border: 2px solid var(--medium-gray);
            border-radius: 8px;
            overflow: hidden;
        }

        .quantity-btn {
            background: none;
            border: none;
            padding: 12px 16px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }

        .quantity-btn:hover {
            background-color: var(--light-gray);
        }

        .quantity-input {
            border: none;
            padding: 12px 16px;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            width: 60px;
            background-color: var(--white);
        }

        .quantity-input:focus {
            outline: none;
        }

        /* Action Buttons */
        .action-buttons {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .buy-button {
            background-color: var(--gold-accent);
            color: var(--white);
            border: none;
            padding: 18px 32px;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .buy-button:hover {
            background-color: #b8941f;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
        }

        .buy-button:active {
            transform: translateY(0);
        }

        .secondary-buttons {
            display: flex;
            gap: 12px;
        }

        .secondary-btn {
            flex: 1;
            padding: 14px 24px;
            border: 2px solid var(--medium-gray);
            border-radius: 8px;
            background-color: var(--white);
            color: var(--primary-black);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .secondary-btn:hover {
            border-color: var(--gold-accent);
            color: var(--gold-accent);
        }

        /* Product Details */
        .product-details {
            margin-top: 80px;
        }

        .details-tabs {
            display: flex;
            border-bottom: 2px solid var(--medium-gray);
            margin-bottom: 32px;
        }

        .tab-button {
            background: none;
            border: none;
            padding: 16px 24px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }

        .tab-button.active {
            color: var(--gold-accent);
            border-bottom-color: var(--gold-accent);
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.3s ease;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .details-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .detail-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--light-gray);
        }

        .detail-label {
            font-weight: 600;
            color: var(--primary-black);
        }

        .detail-value {
            color: var(--text-gray);
        }

        /* Footer */
        .footer {
            background-color: var(--primary-black);
            color: var(--white);
            padding: 60px 0 40px;
            margin-top: 80px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
        }

        .footer-text {
            flex: 1;
            max-width: 400px;
        }

        .footer-text h4 {
            font-size: 20px;
            margin-bottom: 16px;
            color: var(--gold-accent);
        }

        .footer-menu {
            display: flex;
            gap: 32px;
        }

        .footer-menu a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-menu a:hover {
            color: var(--gold-accent);
        }

        .footer-bottom {
            border-top: 1px solid var(--soft-black);
            padding-top: 24px;
            text-align: center;
            color: var(--text-gray);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                padding: 0 16px;
            }

            .header-nav {
                gap: 16px;
            }

            .nav-link {
                font-size: 14px;
            }

            .main-container {
                padding: 24px 16px;
            }

            .product-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .main-image {
                height: 400px;
            }

            .product-title {
                font-size: 28px;
            }

            .current-price {
                font-size: 24px;
            }

            .original-price {
                font-size: 18px;
            }

            .secondary-buttons {
                flex-direction: column;
            }

            .details-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .details-tabs {
                overflow-x: auto;
                white-space: nowrap;
            }

            .tab-button {
                padding: 12px 16px;
                font-size: 14px;
            }

            .footer-content {
                flex-direction: column;
                gap: 32px;
            }

            .footer-menu {
                flex-direction: column;
                gap: 16px;
            }

            .breadcrumb-container {
                padding: 0 16px;
            }
        }

        @media (max-width: 480px) {
            .size-options {
                justify-content: center;
            }

            .color-options {
                justify-content: center;
            }

            .action-buttons {
                position: sticky;
                bottom: 0;
                background-color: var(--white);
                padding: 16px;
                margin: 0 -16px;
                border-top: 1px solid var(--medium-gray);
                z-index: 100;
            }
        }








        