    /* ===================== GLOBAL STYLES ===================== */
    :root {
        --primary: #4a5a48;
        --primary-dark: #3b5b45;
        --secondary: #f5f2ed;
        --light: #fbf7ef;
        --text: #222;
        --text-light: #666;
        --white: #ffffff;
        --black: #000000;
        --shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        --radius: 10px;
        --transition: all 0.3s ease;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Inter', sans-serif;
    }

    body {
        background: var(--secondary);
        color: var(--text);
        line-height: 1.6;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .btn {
        display: inline-block;
        background: var(--primary);
        color: var(--white);
        padding: 14px 28px;
        border-radius: var(--radius);
        font-weight: 500;
        border: none;
        cursor: pointer;
        transition: var(--transition);
        text-align: center;
    }

    .btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

    .section-padding {
        padding: 80px 0;
    }

    .section-title {
        font-size: 36px;
        color: var(--primary);
        margin-bottom: 40px;
        text-align: center;
    }

    /* ===================== HEADER & NAVIGATION ===================== */
    .top-bar {
        background: var(--primary);
        color: var(--white);
        text-align: center;
        padding: 10px;
        font-size: 14px;
    }

    .header {
        background: var(--white);
        padding: 5px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        font-size: 1.2rem;
    }

    .logo img {
        height: 80px;
        width: 80px;
    }

    .nav {
        display: flex;
        gap: 30px;
    }

    .nav a {
        font-weight: 500;
        transition: var(--transition);
    }

    .nav a:hover {
        color: var(--primary);
    }

    .icons {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .icons i {
        cursor: pointer;
        transition: var(--transition);
    }

    .icons i:hover {
        color: var(--primary);
    }

    .cart {
        position: relative;
    }

    .badge {
        position: absolute;
        top: -8px;
        right: -8px;
        background: var(--black);
        color: var(--white);
        font-size: 11px;
        padding: 2px 6px;
        border-radius: 50%;
        min-width: 18px;
        text-align: center;
    }

    /* ===================== PAGE HEADER (Blog/Shop Banner) ===================== */
    .page-header {
        background: linear-gradient(rgba(74, 90, 72, 0.9), rgba(74, 90, 72, 0.9)), url('https://images.unsplash.com/photo-1546069901-ba9599a7e63c?auto=format&fit=crop&w=1200&q=80');
        background-size: cover;
        background-position: center;
        color: var(--white);
        padding: 100px 0;
        text-align: center;
    }

    .page-header h1 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .page-header p {
        font-size: 18px;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto;
    }

    /* ===================== HERO SECTION (Home Page) ===================== */
    .hero {
        background: linear-gradient(to right, #a99b88, #e6ded3);
        padding: 100px 0;
    }

    .hero .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }

    .hero-content {
        flex: 1;
        color: var(--white);
    }

    .hero h1 {
        font-size: 48px;
        margin: 20px 0;
        line-height: 1.2;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
        opacity: 0.9;
    }

    .hero-image {
        flex: 1;
        text-align: center;
    }

    .hero-image img {
        max-width: 100%;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    /* ===================== FEATURE SLIDER ===================== */
    .feature-slider {
        background: var(--light);
        padding: 30px 0;
        overflow: hidden;
    }

    .slider-track {
        display: flex;
        width: max-content;
        animation: scroll 20s linear infinite;
    }

    .slide {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0 45px;
        font-weight: 500;
        color: var(--primary);
        white-space: nowrap;
    }

    @keyframes scroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    /* ===================== ABOUT PAGE SPECIFIC (NEW) ===================== */
    .mission-section {
        padding: 80px 0;
        background: var(--white);
    }

    .mission-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .mission-image img {
        width: 100%;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .mission-content h2 {
        font-size: 32px;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .value-card {
        background: var(--white);
        padding: 40px 30px;
        border-radius: var(--radius);
        text-align: center;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .value-card:hover {
        transform: translateY(-10px);
    }

    .value-icon {
        font-size: 40px;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .story-timeline {
        position: relative;
        max-width: 800px;
        margin: 50px auto;
        padding: 20px;
    }

    .timeline-item {
        position: relative;
        margin-bottom: 40px;
        padding-left: 40px;
        border-left: 2px solid var(--primary);
    }

    .timeline-year {
        background: var(--primary);
        color: var(--white);
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 14px;
        position: absolute;
        left: -18px;
        top: 0;
    }

    .timeline-content {
        background: var(--light);
        padding: 20px;
        border-radius: var(--radius);
        margin-top: 10px;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .team-card {
        background: var(--white);
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        text-align: center;
        transition: var(--transition);
    }

    .team-card:hover {
        transform: translateY(-10px);
    }

    .team-image {
        height: 280px;
        overflow: hidden;
    }

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .team-info {
        padding: 20px;
    }

    /* ===================== SHOP FILTERS (Product Page) ===================== */
    .filter-section {
        background: var(--white);
        padding: 20px;
        border-radius: var(--radius);
        margin-bottom: 40px;
        box-shadow: var(--shadow);
    }

    .filter-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .filter-group {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    select,
    .search-box {
        padding: 10px 15px;
        border: 1px solid #ddd;
        border-radius: var(--radius);
        background: var(--white);
        font-size: 14px;
    }

    .search-box {
        width: 300px;
    }

    /* ===================== PRODUCT GRID & CARDS ===================== */
    .products-section {
        padding: 80px 0;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .product-card {
        background: var(--white);
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        position: relative;
    }

    .product-card:hover {
        transform: translateY(-10px);
    }

    .product-img {
        height: 250px;
        background: var(--light);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

    .product-card:hover .product-img img {
        transform: scale(1.05);
    }

    .product-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--primary);
        color: var(--white);
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
        z-index: 10;
    }

    .product-info {
        padding: 20px;
    }

    .product-category {
        color: var(--primary);
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 5px;
    }

    .product-title {
        font-size: 18px;
        margin-bottom: 10px;
        color: var(--primary);
    }

    .product-price {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 15px;
    }

    .old-price {
        text-decoration: line-through;
        color: var(--text-light);
        font-size: 16px;
        margin-left: 10px;
    }

    .rating {
        color: #f8c400;
        margin-bottom: 10px;
    }

    .product-actions {
        display: flex;
        gap: 10px;
    }

    .btn-view {
        background: var(--white);
        color: var(--primary);
        border: 1px solid var(--primary);
        flex: 1;
        padding: 10px;
        font-size: 14px;
    }

    .btn-cart {
        background: var(--primary);
        color: var(--white);
        border: 1px solid var(--primary);
        flex: 1;
        padding: 10px;
        font-size: 14px;
    }

    .btn-view:hover {
        background: var(--primary);
        color: var(--white);
    }

    /* ===================== BLOG SECTION ===================== */
    .blog-section {
        padding: 80px 0;
    }

    .blog-container {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 40px;
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .blog-card {
        background: var(--white);
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .blog-card:hover {
        transform: translateY(-10px);
    }

    .blog-image,
    .blog-img {
        height: 250px;
        overflow: hidden;
        background: var(--light);
    }

    .blog-image img,
    .blog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

    .blog-card:hover .blog-image img {
        transform: scale(1.05);
    }

    .blog-content {
        padding: 25px;
    }

    .blog-category {
        display: inline-block;
        background: var(--light);
        color: var(--primary);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .blog-title {
        font-size: 20px;
        margin-bottom: 15px;
        color: var(--text);
    }

    .blog-excerpt {
        color: var(--text-light);
        margin-bottom: 20px;
        line-height: 1.6;
        font-size: 14px;
    }

    .blog-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        color: var(--text-light);
    }

    .read-more {
        color: var(--primary);
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* ===================== SIDEBAR & WIDGETS ===================== */
    .sidebar {
        position: sticky;
        top: 100px;
        height: fit-content;
    }

    .widget {
        background: var(--white);
        padding: 25px;
        border-radius: var(--radius);
        margin-bottom: 30px;
        box-shadow: var(--shadow);
    }

    .widget-title {
        font-size: 18px;
        color: var(--primary);
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--light);
    }

    .search-form {
        display: flex;
    }

    .search-form input {
        flex: 1;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: var(--radius) 0 0 var(--radius);
    }

    .search-form button {
        padding: 12px 20px;
        background: var(--primary);
        color: var(--white);
        border: none;
        border-radius: 0 var(--radius) var(--radius) 0;
        cursor: pointer;
    }

    .categories-list {
        list-style: none;
    }

    .categories-list li {
        padding: 10px 0;
        border-bottom: 1px solid var(--light);
    }

    .categories-list a {
        display: flex;
        justify-content: space-between;
    }

    .recent-post {
        display: flex;
        gap: 15px;
        margin-bottom: 15px;
    }

    .recent-image {
        width: 80px;
        height: 80px;
        border-radius: var(--radius);
        overflow: hidden;
        flex-shrink: 0;
    }

    .recent-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ===================== PAGINATION ===================== */
    .pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 50px;
    }

    .page-btn {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius);
        background: var(--white);
        border: 1px solid #ddd;
        cursor: pointer;
        transition: var(--transition);
    }

    .page-btn.active {
        background: var(--primary);
        color: var(--white);
        border-color: var(--primary);
    }

    /* ===================== FOOTER ===================== */
    .site-footer {
        background: var(--black);
        color: var(--white);
        padding: 70px 0 30px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-col h4 {
        font-size: 18px;
        margin-bottom: 20px;
        color: var(--white);
    }

    .footer-col a {
        display: block;
        color: #ccc;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .footer-logo {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .social-icons {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: #333;
        border-radius: 50%;
        color: var(--white);
    }

    .newsletter-form {
        display: flex;
        margin-top: 15px;
    }

    .newsletter-form input {
        flex: 1;
        padding: 12px;
        border-radius: 5px 0 0 5px;
        border: none;
    }

    .newsletter-form button {
        padding: 12px 20px;
        background: var(--primary);
        border: none;
        border-radius: 0 5px 5px 0;
        color: var(--white);
        cursor: pointer;
    }

    .footer-bottom {
        border-top: 1px solid #333;
        padding-top: 20px;
        text-align: center;
        color: #ccc;
        font-size: 14px;
    }

    /* ===================== RESPONSIVE DESIGN ===================== */
    @media (max-width: 992px) {
        .hero .container {
            flex-direction: column;
            text-align: center;
        }

        .hero h1 {
            font-size: 36px;
        }

        .nav {
            display: none;
        }

        .blog-container {
            grid-template-columns: 1fr;
        }

        .sidebar {
            position: static;
            margin-top: 40px;
        }

        .mission-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

    @media (max-width: 768px) {

        .hero h1,
        .page-header h1 {
            font-size: 28px;
        }

        .section-title {
            font-size: 28px;
        }

        .products-grid,
        .blog-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .filter-row {
            flex-direction: column;
            align-items: stretch;
        }

        .search-box {
            width: 100%;
        }
    }

    @media (max-width: 480px) {

        .products-grid,
        .blog-grid {
            grid-template-columns: 1fr;
        }

        .newsletter-form {
            flex-direction: column;
        }

        .newsletter-form input,
        .newsletter-form button {
            width: 100%;
            border-radius: 5px;
            margin-bottom: 10px;
        }
    }

    /* ===================== CONTACT PAGE STYLES (Matched With Global CSS) ===================== */
    /* Contact Hero */
    .contact-hero {
        background: linear-gradient(rgba(74, 90, 72, 0.9), rgba(74, 90, 72, 0.9)), url('https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1400&q=80');
        background-size: cover;
        background-position: center;
        color: var(--white);
        padding: 100px 0;
        text-align: center;
    }

    .contact-hero h1 {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .contact-hero p {
        font-size: 18px;
        max-width: 650px;
        margin: 0 auto;
        opacity: 0.9;
    }

    /* Contact Section */
    .contact-section {
        padding: 100px 0;
        background: var(--secondary);
    }

    .contact-container {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 50px;
        align-items: flex-start;
    }

    /* Contact Info */
    .contact-info h2 {
        font-size: 34px;
        color: var(--primary);
        margin-bottom: 25px;
    }

    .contact-info p {
        color: var(--text-light);
        font-size: 16px;
        margin-bottom: 35px;
        line-height: 1.8;
    }

    .info-grid {
        display: grid;
        gap: 28px;
    }

    .info-item {
        display: flex;
        gap: 18px;
        align-items: flex-start;
    }

    .info-icon {
        width: 48px;
        height: 48px;
        background: var(--light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 18px;
        flex-shrink: 0;
    }

    .info-content h3 {
        font-size: 16px;
        color: var(--primary);
        margin-bottom: 4px;
    }

    .info-content p {
        font-size: 14px;
        color: var(--text-light);
        line-height: 1.6;
    }

    /* Social Links */
    .social-links {
        margin-top: 40px;
    }

    .social-links h3 {
        font-size: 18px;
        margin-bottom: 15px;
        color: var(--primary);
    }

    .social-links .social-icons a {
        background: var(--white);
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .social-links .social-icons a:hover {
        background: var(--primary);
        color: var(--white);
        transform: translateY(-4px);
    }

    /* Contact Form */
    .contact-form-container {
        background: var(--white);
        padding: 40px;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .contact-form h2 {
        font-size: 26px;
        color: var(--primary);
        margin-bottom: 30px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .form-group {
        margin-bottom: 22px;
    }

    .form-group label {
        display: block;
        font-size: 14px;
        margin-bottom: 6px;
        font-weight: 500;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px;
        border: 1px solid #ddd;
        border-radius: var(--radius);
        font-size: 14px;
        transition: var(--transition);
        background: var(--white);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 2px rgba(74, 90, 72, 0.15);
    }

    .form-group textarea {
        min-height: 140px;
        resize: vertical;
    }

    .submit-btn {
        width: 100%;
        padding: 15px;
        background: var(--primary);
        color: var(--white);
        border: none;
        border-radius: var(--radius);
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
    }

    .submit-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

    /* Map Section */
    .map-section {
        padding: 0 0 100px;
    }

    .map-container {
        height: 420px;
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .map-placeholder {
        height: 100%;
        background: var(--light);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--primary);
    }

    /* FAQ Section */
    .faq-section {
        padding: 100px 0;
        background: var(--light);
    }

    .faq-container h2 {
        text-align: center;
        font-size: 34px;
        color: var(--primary);
        margin-bottom: 45px;
    }

    .faq-item {
        background: var(--white);
        border-radius: var(--radius);
        margin-bottom: 15px;
        box-shadow: var(--shadow);
        overflow: hidden;
    }

    .faq-question {
        width: 100%;
        padding: 18px 25px;
        background: none;
        border: none;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        transition: max-height 0.3s ease;
    }

    .faq-item.active .faq-answer {
        max-height: 300px;
        padding: 0 25px 25px;
    }

    /* CTA Section */
    .cta-section {
        padding: 80px 0;
        background: var(--white);
    }

    .cta-content h2 {
        font-size: 34px;
        color: var(--primary);
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 16px;
        color: var(--text-light);
        max-width: 650px;
        margin: 0 auto 30px;
    }

    /* ===================== RESPONSIVE (CONTACT) ===================== */
    @media (max-width: 992px) {
        .contact-container {
            grid-template-columns: 1fr;
        }

        .contact-hero h1 {
            font-size: 36px;
        }
    }

    @media (max-width: 768px) {
        .form-row {
            grid-template-columns: 1fr;
        }

        .faq-container h2,
        .contact-info h2,
        .cta-content h2 {
            font-size: 28px;
        }
    }

    @media (max-width: 480px) {
        .contact-form-container {
            padding: 30px 20px;
        }

        .faq-question {
            font-size: 15px;
        }
    }

    /* ===================== CART PAGE STYLES ===================== */

    /* Breadcrumb */
    .breadcrumb {
        padding: 30px 0 20px;
        font-size: 14px;
        color: var(--text-light);
    }

    .breadcrumb a {
        color: var(--primary);
    }

    /* Page Title */
    .page-title {
        padding: 20px 0 40px;
    }

    .page-title h1 {
        font-size: 36px;
        color: var(--primary);
    }

    /* Empty Cart */
    .empty-cart {
        text-align: center;
        padding: 80px 20px;
        background: var(--white);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        margin-bottom: 40px;
    }

    .empty-cart i {
        font-size: 64px;
        color: var(--text-light);
        margin-bottom: 20px;
    }

    .empty-cart h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    /* Cart Layout */
    .cart-container {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    /* Cart Items */
    .cart-items {
        background: var(--white);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        padding: 30px;
    }

    .cart-header,
    .cart-item {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 0.5fr;
        align-items: center;
    }

    .cart-header {
        padding-bottom: 20px;
        border-bottom: 2px solid var(--light);
        font-weight: 600;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .cart-item {
        padding: 20px 0;
        border-bottom: 1px solid var(--light);
    }

    .cart-item:last-child {
        border-bottom: none;
    }

    /* Product Info */
    .product-info {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .product-image {
        width: 80px;
        height: 80px;
        border-radius: var(--radius);
        overflow: hidden;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Quantity Controls */
    .quantity-controls {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .qty-btn {
        width: 30px;
        height: 30px;
        border: 1px solid #ddd;
        background: var(--white);
        border-radius: 50%;
        cursor: pointer;
    }

    .qty-input {
        width: 50px;
        text-align: center;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: var(--radius);
    }

    /* Price */
    .price {
        font-weight: 600;
        color: var(--primary);
    }

    .old-price {
        text-decoration: line-through;
        color: var(--text-light);
        font-size: 14px;
        margin-right: 5px;
    }

    /* Remove Button */
    .remove-btn {
        background: none;
        border: none;
        color: var(--text-light);
        cursor: pointer;
    }

    .remove-btn:hover {
        color: red;
    }

    /* Cart Summary */
    .cart-summary {
        background: var(--white);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        padding: 30px;
        position: sticky;
        top: 100px;
        height: fit-content;
    }

    .summary-title {
        font-size: 20px;
        font-weight: 600;
        color: var(--primary);
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--light);
    }

    .summary-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    .summary-row.total {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary);
        margin-top: 20px;
        padding-top: 20px;
        border-top: 2px solid var(--light);
    }

    /* Promo Code */
    .promo-section {
        margin: 30px 0;
        padding: 20px;
        background: var(--light);
        border-radius: var(--radius);
    }

    .promo-form {
        display: flex;
        gap: 10px;
    }

    .promo-input {
        flex: 1;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: var(--radius);
    }

    .promo-btn {
        padding: 12px 20px;
        background: var(--primary);
        color: var(--white);
        border: none;
        border-radius: var(--radius);
        cursor: pointer;
    }

    /* Checkout Button */
    .checkout-btn {
        width: 100%;
        padding: 16px;
        background: var(--primary);
        color: var(--white);
        border: none;
        border-radius: var(--radius);
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        margin-top: 20px;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .cart-container {
            grid-template-columns: 1fr;
        }

        .cart-summary {
            position: static;
        }
    }

    @media (max-width: 768px) {

        .cart-header,
        .cart-item {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .cart-header {
            display: none;
        }
    }