        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        :root {
            --primary: #1a1a1a;
            --secondary: #d4af37;
            --light: #f8f9fa;
            --dark: #343a40;
            --gray: #6c757d;
            --white: #ffffff;
            --text: #333333;
            --text-light: #7f7f7f;
        }

        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

        body {
            background-color: var(--white);
            color: var(--text);
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--secondary);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background-color: var(--primary);
            color: var(--white);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary);
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 40px;
            margin-right: 10px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            font-weight: 500;
            font-size: 1.1rem;
            position: relative;
        }

        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary);
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }

        nav ul li a:hover:after {
            width: 100%;
        }

        .header-icons {
            display: flex;
            align-items: center;
        }

        .header-icons a {
            margin-left: 20px;
            font-size: 1.2rem;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 90vh;
            background: linear-gradient(rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), 
                        url('logo.png') no-repeat center center/cover;
            color: var(--white);
            display: flex;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secondary);
            color: var(--primary);
            border: none;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn:hover {
            background-color: var(--white);
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
        }

        /* Brands Section */
        .brands {
            padding: 60px 0;
            background-color: var(--light);
        }

        .brands h2 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 40px;
            color: var(--primary);
        }

        .brand-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            align-items: center;
        }

        .brand-item {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100px;
            filter: grayscale(100%);
            transition: all 0.3s ease;
        }

        .brand-item:hover {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        .brand-item img {
            max-height: 80px;
            width: auto;
        }

        /* Featured Products */
        .featured {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: var(--primary);
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--secondary);
            color: var(--primary);
            padding: 5px 10px;
            border-radius: 3px;
            font-weight: 600;
            font-size: 0.8rem;
            z-index: 1;
        }

        .product-img {
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-img img {
            transform: scale(1.05);
        }

        .product-info {
            padding: 20px;
        }

        .product-brand {
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .product-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .product-price {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .current-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
        }

        .old-price {
            font-size: 0.9rem;
            color: var(--gray);
            text-decoration: line-through;
            margin-left: 10px;
        }

        .product-actions {
            display: flex;
            justify-content: space-between;
        }

        .btn-sm {
            padding: 8px 15px;
            font-size: 0.9rem;
        }

        .btn-icon {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary);
            color: var(--white);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-icon:hover {
            background-color: var(--secondary);
            color: var(--primary);
            transform: translateY(-3px);
        }

        /* About Section */
        .about {
            padding: 80px 0;
            background-color: var(--light);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .about-text h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text);
        }

        .about-features {
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            margin-bottom: 15px;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background-color: var(--secondary);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            font-size: 1.2rem;
        }

        .feature-text h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        /* Newsletter */
        .newsletter {
            padding: 60px 0;
            background-color: var(--primary);
            color: var(--white);
            text-align: center;
        }

        .newsletter h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .newsletter p {
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
        }

        .newsletter-form .btn {
            border-radius: 0 30px 30px 0;
            padding: 15px 30px;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 60px 0 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--secondary);
            position: relative;
            padding-bottom: 15px;
        }

        .footer-col h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background: var(--secondary);
            bottom: 0;
            left: 0;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--gray);
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--secondary);
            color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background-color: var(--primary);
            text-align: center;
            padding: 20px 0;
        }

        /* Search Page */
        .search-page {
            padding: 80px 0;
        }

        .search-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .search-header h1 {
            font-size: 2rem;
            color: var(--primary);
        }

        .search-box {
            display: flex;
            max-width: 500px;
            width: 100%;
        }

        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }

        .search-box .btn {
            border-radius: 0 4px 4px 0;
            padding: 12px 20px;
        }

        .search-results {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .search-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }

        .filter-item {
            padding: 8px 15px;
            background-color: var(--light);
            border: 1px solid #ddd;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-item:hover, .filter-item.active {
            background-color: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        /* Product Page */
        .product-page {
            padding: 80px 0;
        }

        .product-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .product-gallery {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 20px;
        }

        .product-thumbs {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .product-thumb {
            width: 80px;
            height: 80px;
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
            cursor: pointer;
        }

        .product-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-main-img {
            height: 500px;
            border-radius: 10px;
            overflow: hidden;
        }

        .product-main-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-info {
            padding: 20px 0;
        }

        .product-breadcrumb {
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 20px;
        }

        .product-breadcrumb a {
            color: var(--secondary);
        }

        .product-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .product-brand {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 20px;
            display: block;
        }

        .product-price {
            margin-bottom: 20px;
        }

        .current-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
        }

        .old-price {
            font-size: 1.3rem;
            color: var(--gray);
            text-decoration: line-through;
            margin-left: 15px;
        }

        .product-rating {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .product-rating span {
            color: var(--gray);
            margin-left: 10px;
        }

        .product-description {
            margin-bottom: 30px;
        }

        .product-options {
            margin-bottom: 30px;
        }

        .option-title {
            font-weight: 600;
            margin-bottom: 10px;
        }

        .size-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .size-btn {
            width: 40px;
            height: 40px;
            border: 1px solid #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .size-btn:hover, .size-btn.active {
            background-color: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        .color-options {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .color-btn {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1px solid #ddd;
            cursor: pointer;
            position: relative;
        }

        .color-btn:after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: inherit;
            border-radius: 50%;
            top: 4px;
            left: 4px;
        }

        .color-btn.active:before {
            content: '';
            position: absolute;
            width: 10px;
            height: 10px;
            background-color: #fff;
            top: 5px;
            left: 5px;
            z-index: 1;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .quantity-btn {
            width: 40px;
            height: 40px;
            background-color: var(--light);
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
        }

        .quantity-input {
            width: 60px;
            height: 40px;
            text-align: center;
            border: 1px solid #ddd;
            border-left: none;
            border-right: none;
        }

        .product-actions {
            display: flex;
            gap: 15px;
        }

        .btn-lg {
            padding: 15px 30px;
            font-size: 1.1rem;
        }

        .product-tabs {
            margin-top: 50px;
        }

        .tabs-header {
            display: flex;
            border-bottom: 1px solid #ddd;
            margin-bottom: 30px;
        }

        .tab-btn {
            padding: 15px 25px;
            background-color: transparent;
            border: none;
            border-bottom: 3px solid transparent;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tab-btn.active, .tab-btn:hover {
            border-bottom-color: var(--secondary);
            color: var(--secondary);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        /* Contact Page */
        .contact-page {
            padding: 80px 0;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info {
            padding: 20px;
        }

        .contact-info h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .contact-info p {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            margin-bottom: 20px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: var(--secondary);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .info-text h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .social-media {
            margin-top: 30px;
        }

        .social-media h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .contact-form {
            background-color: var(--light);
            padding: 30px;
            border-radius: 10px;
        }

        .contact-form h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* Register Page */
        .register-page {
            padding: 80px 0;
        }

        .register-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--light);
            padding: 40px;
            border-radius: 10px;
        }

        .register-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .register-header h2 {
            font-size: 2rem;
            color: var(--primary);
        }

        .register-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .full-width {
            grid-column: 1 / -1;
        }

        .form-footer {
            grid-column: 1 / -1;
            margin-top: 20px;
        }

        .form-text {
            text-align: center;
            margin-top: 20px;
            color: var(--gray);
        }

        .form-text a {
            color: var(--secondary);
            font-weight: 600;
        }

        /* Cart/Orders Page */
        .orders-page {
            padding: 80px 0;
        }

        .orders-header {
            margin-bottom: 30px;
        }

        .orders-header h1 {
            font-size: 2rem;
            color: var(--primary);
        }

        .orders-container {
            background-color: var(--light);
            padding: 30px;
            border-radius: 10px;
        }

        .order-summary {
            display: grid;
            grid-template-columns: 100px 1fr auto auto;
            gap: 20px;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid #ddd;
        }

        .order-img {
            width: 100px;
            height: 100px;
            border-radius: 5px;
            overflow: hidden;
        }

        .order-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .order-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .order-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .order-price {
            font-weight: 600;
        }

        .order-quantity {
            display: flex;
            align-items: center;
        }

        .quantity-input {
            width: 50px;
            text-align: center;
        }

        .order-total {
            margin-top: 30px;
            text-align: right;
        }

        .order-total h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .checkout-btn {
            padding: 15px 30px;
            font-size: 1.1rem;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content, 
            .product-container, 
            .contact-container {
                grid-template-columns: 1fr;
            }

            .product-gallery {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto;
            }

            .product-thumbs {
                flex-direction: row;
                order: 2;
            }

            .product-main-img {
                height: 400px;
            }

            .register-form {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }

            nav {
                margin: 20px 0;
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li {
                margin: 10px 0;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input {
                border-radius: 30px;
                margin-bottom: 15px;
            }

            .newsletter-form .btn {
                border-radius: 30px;
            }

            .order-summary {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 10px;
            }

            .order-img {
                margin: 0 auto;
            }

            .order-quantity {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }

            .product-actions {
                flex-direction: column;
            }

            .tabs-header {
                flex-direction: column;
            }

            .tab-btn {
                text-align: center;
                padding: 10px;
                border-bottom: none;
                border-left: 3px solid transparent;
            }

            .tab-btn.active, .tab-btn:hover {
                border-bottom: none;
                border-left-color: var(--secondary);
            }
        }