
        :root {
            --color-primary: #9b2226;
            --color-secondary: #ae2012;
            --color-tertiary: #bb3e03;
            --color-accent-1: #ca6702;
            --color-accent-2: #ee9b00;
            --color-light: #e9d8a6;
            --color-teal-light: #94d2bd;
            --color-teal: #0a9396;
            --color-teal-dark: #005f73;
            --color-dark: #001219;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: var(--color-dark);
            overflow-x: hidden;
        }

        /* Top Bar */
        .top-bar {
            background: var(--color-dark);
            color: white;
            padding: 8px 0;
            font-size: 13px;
        }

        .top-bar a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
        }

        .top-bar a:hover {
            color: var(--color-accent-2);
        }

        /* Header */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-main {
            padding: 15px 0;
        }

        .logo {
            font-size: 32px;
            font-weight: 800;
            color: var(--color-primary);
            text-decoration: none;
            letter-spacing: -1px;
        }

        .logo span {
            color: var(--color-teal);
        }

        .search-bar {
            flex: 1;
            max-width: 600px;
            margin: 0 40px;
            position: relative;
        }

        .search-bar input {
            width: 100%;
            padding: 12px 50px 12px 20px;
            border: 2px solid var(--color-light);
            border-radius: 25px;
            font-size: 15px;
            transition: all 0.3s;
        }

        .search-bar input:focus {
            outline: none;
            border-color: var(--color-teal);
            box-shadow: 0 0 0 3px rgba(10, 147, 150, 0.1);
        }

        .search-bar button {
            position: absolute;
            right: 5px;
            top: 5px;
            background: var(--color-teal);
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            color: white;
            cursor: pointer;
            transition: all 0.3s;
        }

        .search-bar button:hover {
            background: var(--color-teal-dark);
        }

        .header-actions {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .header-actions a {
            color: var(--color-dark);
            text-decoration: none;
            font-size: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            transition: color 0.3s;
        }

        .header-actions a:hover {
            color: var(--color-primary);
        }

        .header-actions i {
            font-size: 24px;
            margin-bottom: 3px;
        }

        .cart-badge {
            position: absolute;
            top: -5px;
            right: -8px;
            background: var(--color-primary);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        /* Navigation */
        nav {
            background: var(--color-primary);
            padding: 0;
        }

        .nav-menu {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
        }

        .nav-menu > li {
            position: relative;
        }

        .nav-menu > li > a {
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            display: block;
            font-weight: 500;
            transition: background 0.3s;
        }

        .nav-menu > li > a:hover,
        .nav-menu > li:hover > a {
            background: var(--color-secondary);
        }

        .dropdown-menu-custom {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 250px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            display: none;
            z-index: 1000;
            border-radius: 0 0 8px 8px;
        }

        .nav-menu > li:hover .dropdown-menu-custom {
            display: block;
        }

        .dropdown-menu-custom a {
            color: var(--color-dark);
            padding: 12px 20px;
            display: block;
            text-decoration: none;
            transition: all 0.3s;
            border-left: 3px solid transparent;
        }

        .dropdown-menu-custom a:hover {
            background: var(--color-light);
            border-left-color: var(--color-primary);
            padding-left: 25px;
        }

        /* ===========================
   MOBILE HEADER – FINAL CLEAN
=========================== */

.mobile-header {
    display: none;
}

@media (max-width: 991px) {

    /* Hide desktop header ONLY on mobile */
    header {
        display: none;
    }

    .mobile-header {
        display: block;
        position: sticky;
        top: 0;
        z-index: 1200;
        background: var(--color-primary);
        box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    }

    /* ---------- TOP ROW ---------- */
    .mobile-header-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 15px;
    }

    .icon-btn {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,0.15);
        color: #fff;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .icon-btn:active {
        transform: scale(0.92);
    }

    .mobile-logo {
        font-size: 22px;
        font-weight: 800;
        color: #fff;
        text-decoration: none;
    }

    .mobile-logo span {
        color: var(--color-teal-light);
    }

    .mobile-actions {
        display: flex;
        gap: 12px;
    }

    /* ---------- SEARCH ROW ---------- */
    .mobile-search-wrap {
        background: var(--color-primary);
        overflow: hidden;
        height: 72px;                 /* visible */
        transition: height 0.25s ease;
    }

    .mobile-search-wrap.hide {
        height: 0;                    /* hidden */
    }

    .mobile-search {
        padding: 10px 15px 14px;
    }

    .mobile-search .search-bar {
        position: relative;
        margin: 0;
        max-width: 100%;
    }

    .mobile-search .search-bar input {
        width: 100%;
        padding: 12px 56px 12px 18px;
        border-radius: 30px;
        font-size: 15px;
        border: none;
        outline: none;
    }

    /* SEARCH BUTTON – RIGHT CORNER, CENTERED */
    .mobile-search .search-bar button {
        position: absolute;
        right: 6px;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--color-teal);
        border: none;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    /* SEARCH RESULTS – SAME AS DESKTOP */
    .mobile-search-wrap #searchResults {
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        background: #fff;
        border-radius: 0 0 14px 14px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.18);
        max-height: 60vh;
        overflow-y: auto;
        z-index: 9999;
        display: none;
    }
}

/* ===========================
   DRAWER
=========================== */

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1400;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: #fff;
    z-index: 1500;
    transition: left 0.35s ease;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.active {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--color-primary);
    color: #fff;
}

.drawer-header .logo span {
    color: var(--color-teal-light);
}

.drawer-menu {
    overflow-y: auto;
    padding-bottom: 30px;
}

.drawer-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    text-decoration: none;
    color: var(--color-dark);
    font-size: 15px;
}

.drawer-menu a i {
    width: 20px;
    text-align: center;
    color: var(--color-primary);
}

.drawer-dropdown > a::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: auto;
}

.drawer-submenu {
    display: none;
    background: #fafafa;
}

.drawer-submenu a {
    padding-left: 48px;
    font-size: 14px;
}


        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-teal-dark) 100%);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            top: -200px;
            right: -100px;
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            animation: fadeInUp 0.8s 0.2s backwards;
        }

        .btn-primary-custom {
            background: var(--color-accent-2);
            color: var(--color-dark);
            padding: 15px 40px;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            animation: fadeInUp 0.8s 0.4s backwards;
            display: inline-block;
            text-decoration: none;
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            background: var(--color-accent-1);
        }

        /* Category Cards */
        .category-section {
            padding: 60px 0;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 50px;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--color-teal);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        .category-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s;
            cursor: pointer;
            margin-bottom: 30px;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .category-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .category-card:hover img {
            transform: scale(1.1);
        }

        .category-card-body {
            padding: 25px;
            text-align: center;
        }

        .category-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--color-dark);
            margin-bottom: 10px;
        }

        .category-card p {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .category-card .btn-shop {
            background: var(--color-teal);
            color: white;
            padding: 10px 25px;
            border-radius: 20px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
        }

        .category-card .btn-shop:hover {
            background: var(--color-teal-dark);
        }

       /* ===============================
   PRODUCT CARD (UNIFORM SIZE)
================================ */
.product-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

/* Hover */
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* ===============================
   IMAGE CONTAINER
================================ */
.product-image {
    height: 220px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    position: relative;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* 🔑 fully visible */
    transition: transform 0.35s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Badge */
.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--color-primary);
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

/* ===============================
   CARD BODY (FLEX CONTROL)
================================ */
.product-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Title (clamped) */
.product-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
    line-height: 1.35;

    display: -webkit-box;
    -webkit-line-clamp: 2;   /* 🔑 equal height */
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

/* Rating */
.product-rating {
    font-size: 14px;
    color: var(--color-accent-2);
    margin-bottom: 8px;
}

/* Price */
.product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.product-price .old-price {
    font-size: 14px;
    color: #999;
    margin-left: 6px;
    text-decoration: line-through;
}

/* Push button to bottom */
.product-body .btn-add-cart {
    margin-top: auto;
}

/* ===============================
   BUTTON
================================ */
.btn-add-cart {
    width: 100%;
    background: linear-gradient(
        135deg,
        var(--color-teal),
        var(--color-teal-dark)
    );
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    align-items: stretch; /* 🔑 same height */
}
.products-grid--home,
.products-grid--listing {
    column-gap: 24px;
    row-gap: 48px;
}



        /* Services Section */
        .services-section {
            padding: 60px 0;
            background: linear-gradient(135deg, var(--color-light) 0%, #fff 100%);
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s;
            margin-bottom: 30px;
            border-top: 4px solid var(--color-teal);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            border-top-color: var(--color-primary);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 36px;
            color: white;
        }

        .service-card h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--color-dark);
        }

        .service-card p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        /* Deals Section */
        .deals-section {
            padding: 60px 0;
            background: var(--color-dark);
            color: white;
        }

        .deals-section .section-title {
            color: white;
        }

        .deals-section .section-title::after {
            background: var(--color-accent-2);
        }

        .deal-card {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.4s;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }

        .deal-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .deal-card:hover::before {
            opacity: 1;
        }

        .deal-card:hover {
            transform: scale(1.05);
        }

        .deal-discount {
            font-size: 48px;
            font-weight: 800;
            color: var(--color-accent-2);
            margin-bottom: 15px;
        }

        .deal-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        /* Newsletter */
        .newsletter {
            background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
            padding: 60px 0;
            color: white;
        }

        .newsletter h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .newsletter-form {
            max-width: 600px;
            margin: 30px auto 0;
            display: flex;
            gap: 10px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
        }

        .newsletter-form button {
            background: var(--color-accent-2);
            color: var(--color-dark);
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .newsletter-form button:hover {
            background: var(--color-accent-1);
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: var(--color-dark);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-section {
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--color-accent-2);
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
        }

        .footer-section ul li a:hover {
            color: var(--color-accent-2);
    transform: translateY(-2px);
        }

        .footer-section li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background-color: var(--color-accent-2);
    transition: width 0.3s ease;
}

.footer-section li a:hover::after {
    width: 100%;
}

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background: var(--color-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background: var(--color-teal);
            transform: translateY(-3px);
        }

        

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            text-align: center;
            color: #999;
        }
        /* Legal Section */
.legal-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-heading {
    color: var(--color-accent-2);
    margin-bottom: 15px;
    font-size: 16px;
}

.legal-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-links li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

/* 🔥 Hover Effect */
.legal-links li a:hover {
    color: var(--color-accent-2);
    transform: translateY(-2px);
}
/* Secure Checkout Styling */



/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-badges img {
    height: 38px;
    width: auto;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* Mobile Adjustment */
@media (max-width: 991px) {
    .trust-badges {
        justify-content: flex-start;
        margin-top: 15px;
    }
}


/* Optional Modern Underline Animation */
.legal-links li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background-color: var(--color-accent-2);
    transition: width 0.3s ease;
}

.legal-links li a:hover::after {
    width: 100%;
}


        /* Modal Styles */
        .modal-content {
            border-radius: 20px;
            border: none;
        }

        .modal-header {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-teal-dark) 100%);
            color: white;
            border-radius: 20px 20px 0 0;
            border: none;
        }

        .modal-body {
            padding: 30px;
        }

        .form-control {
            border-radius: 10px;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            margin-bottom: 15px;
        }

        .form-control:focus {
            border-color: var(--color-teal);
            box-shadow: 0 0 0 3px rgba(10, 147, 150, 0.1);
        }

        .btn-modal {
            width: 100%;
            padding: 12px;
            border-radius: 10px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-login {
            background: var(--color-teal);
            color: white;
        }

        .btn-login:hover {
            background: var(--color-teal-dark);
        }

        /* Cart Page */
        .cart-page {
            padding: 60px 0;
            display: none;
        }

        .cart-page.active {
            display: block;
        }

        .cart-item {
            background: white;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .cart-item img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 8px;
        }

        .cart-item-details {
            flex: 1;
        }

        .quantity-control {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .quantity-control button {
            width: 35px;
            height: 35px;
            border: none;
            background: var(--color-light);
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
        }

        .quantity-control button:hover {
            background: var(--color-teal);
            color: white;
        }

        .cart-summary {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            position: sticky;
            top: 100px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .page-content {
            display: none;
        }

        .page-content.active {
            display: block;
        }


        .featured-section{
            background: linear-gradient(
    135deg,
    var(--color-accent-1),
    var(--color-accent-2)
  );

   margin: 4rem 0;
  border-radius: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--color-accent-1),
    var(--color-accent-2)
  );
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        /* Featured Banner */
        .featured-banner {
  width: 100%;
 
}

.featured-banner:hover {
  transform: translateY(-6px);
  
}

/* inner layout */
.featured-banner-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  padding: clamp(2rem, 5vw, 4rem);
}

/* text side */
.featured-banner-content {
  color: var(--color-dark);
}

.featured-banner h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.featured-banner p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 520px;
}

/* image side */
.featured-banner-image {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
}

.featured-banner-image img {
  width: 100%;
  height: clamp(260px, 35vw, 420px);
  object-fit: cover;
  border-radius: 1.25rem;
  transition: transform 0.5s ease;
}

.featured-banner:hover .featured-banner-image img {
  transform: scale(1.06);
}
@media (max-width: 768px) {
  .featured-banner-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .featured-banner p {
    margin-left: auto;
    margin-right: auto;
  }
}


        /* Testimonials */
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }

        .testimonial-rating {
            color: var(--color-accent-2);
            font-size: 20px;
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-style: italic;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--color-teal);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: var(--color-primary);
            border: none;
            color: white;
            font-size: 24px;
            padding: 10px 15px;
            cursor: pointer;
            border-radius: 5px;
        }

        .nav-menu.mobile-active {
            display: flex !important;
        }

        /* Sticky Cart Summary on Mobile */
        @media (max-width: 992px) {
            .cart-summary {
                position: relative;
                top: 0;
                margin-top: 20px;
            }
        }

        /* Enhanced Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .search-bar {
                margin: 20px 0;
                max-width: 100%;
            }
            
            .header-main {
                flex-direction: column;
                gap: 15px;
            }
            
            .header-actions {
                gap: 20px;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            nav {
                position: relative;
            }
            
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--color-primary);
                z-index: 999;
                box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            }
            
            .nav-menu > li {
                width: 100%;
            }
            
            .dropdown-menu-custom {
                position: static;
                display: none;
                box-shadow: none;
                background: var(--color-secondary);
            }
            
            .nav-menu > li.mobile-dropdown-active .dropdown-menu-custom {
                display: block;
            }
            
            .cart-item {
                flex-direction: column;
                text-align: center;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input,
            .newsletter-form button {
                width: 100%;
            }
            
            .featured-banner h2 {
                font-size: 32px;
            }
            
            .top-bar .d-flex {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .logo {
                font-size: 24px;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .product-image {
                height: 200px;
            }
            
            .category-card img {
                height: 180px;
            }
        }

        /* Loading Animation */
        .page-loading {
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }
        
        .page-loaded {
            opacity: 1;
        }

        /* Improved Hover Effects */
        .category-card,
        .product-card,
        .service-card {
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Skeleton Loading for Images */
        .skeleton-loading {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: skeleton-loading 1.5s infinite;
        }

        @keyframes skeleton-loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* Accessibility Improvements */
        .skip-to-main {
            position: absolute;
            left: -9999px;
            z-index: 999;
            padding: 10px;
            background: var(--color-primary);
            color: white;
            text-decoration: none;
        }

        .skip-to-main:focus {
            left: 10px;
            top: 10px;
        }

        /* Focus Visible for Keyboard Navigation */
        *:focus-visible {
            outline: 3px solid var(--color-teal);
            outline-offset: 2px;
        }

        /* Enhanced Features Panel */
        .features-panel {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 9999;
        }

        .feature-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
            color: white;
            border: none;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            transition: all 0.3s;
            margin-bottom: 10px;
            position: relative;
        }

        .feature-button:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(0,0,0,0.4);
        }

        .feature-button .tooltip-text {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--color-dark);
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .feature-button:hover .tooltip-text {
            opacity: 1;
        }

        /* AI Assistant Chat */
        .ai-chat-container {
            position: fixed;
            bottom: 100px;
            right: 20px;
            width: 400px;
            height: 600px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            display: none;
            flex-direction: column;
            z-index: 9998;
            overflow: hidden;
        }

        .ai-chat-container.active {
            display: flex;
        }

        .ai-chat-header {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-teal-dark) 100%);
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .ai-chat-messages {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
            background: #f8f9fa;
        }

        .ai-message {
            margin-bottom: 15px;
            display: flex;
            gap: 10px;
        }

        .ai-message.user {
            flex-direction: row-reverse;
        }

        .ai-message-bubble {
            max-width: 70%;
            padding: 12px 16px;
            border-radius: 15px;
            font-size: 14px;
            line-height: 1.5;
        }

        .ai-message.assistant .ai-message-bubble {
            background: white;
            color: var(--color-dark);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .ai-message.user .ai-message-bubble {
            background: var(--color-teal);
            color: white;
        }

        .ai-chat-input {
            padding: 15px;
            border-top: 1px solid #eee;
            display: flex;
            gap: 10px;
        }

        .ai-chat-input input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #eee;
            border-radius: 25px;
            font-size: 14px;
        }

        .ai-chat-input button {
            background: var(--color-teal);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .ai-chat-input button:hover {
            background: var(--color-teal-dark);
        }

        /* Product Comparison Modal */
        .comparison-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.8);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .comparison-modal.active {
            display: flex;
        }

        .comparison-content {
            background: white;
            border-radius: 20px;
            max-width: 1200px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 30px;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .comparison-item {
            border: 2px solid #eee;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s;
        }

        .comparison-item:hover {
            border-color: var(--color-teal);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        /* Quick Reorder Panel */
        .reorder-panel {
            position: fixed;
            left: -350px;
            top: 50%;
            transform: translateY(-50%);
            width: 350px;
            background: white;
            border-radius: 0 15px 15px 0;
            box-shadow: 5px 0 20px rgba(0,0,0,0.2);
            transition: left 0.3s;
            z-index: 9997;
            max-height: 80vh;
            overflow-y: auto;
        }

        .reorder-panel.active {
            left: 0;
        }

        .reorder-toggle {
            position: absolute;
            right: -40px;
            top: 20px;
            width: 40px;
            height: 60px;
            background: var(--color-primary);
            color: white;
            border: none;
            border-radius: 0 10px 10px 0;
            cursor: pointer;
            font-size: 18px;
        }

        /* Live Chat Widget */
        .live-chat-widget {
            position: fixed;
            bottom: 100px;
            right: 20px;
            width: 350px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            display: none;
            flex-direction: column;
            z-index: 9996;
            overflow: hidden;
        }

        .live-chat-widget.active {
            display: flex;
        }

        /* Sustainability Badge */
        .eco-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #22c55e;
            color: white;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 11px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* AR Preview Button */
        .ar-preview-btn {
            background: linear-gradient(135deg, #8b5cf6, #a855f7);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            margin-top: 10px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .ar-preview-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
        }

        /* Personalization Panel */
        .personalization-panel {
              background: linear-gradient(
    135deg,
    #fdfdfd,
    #f6f8fb
  );
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 1.25rem;
  margin: 3rem 0;
  color: var(--color-dark);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .recommendation-carousel {
           display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1.25rem 0.75rem;
  scroll-behavior: smooth;
  scrollbar-width: thin;
        }

        .recommendation-carousel::-webkit-scrollbar {
            height: 6px;
        }

        .recommendation-carousel::-webkit-scrollbar-track {
             background: rgba(0, 0, 0, 0.06);
  border-radius: 10px;
        }

        .recommendation-carousel::-webkit-scrollbar-thumb {
              background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.4)
  );
  border-radius: 10px;
        }

        .recommendation-carousel:hover::-webkit-scrollbar-thumb {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.55)
  );
}

        /* Rewards Tracker */
        .rewards-tracker {
            position: fixed;
            top: 80px;
            right: 20px;
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            min-width: 250px;
            z-index: 9995;
            display: none;
        }

        .rewards-tracker.active {
            display: block;
        }

        .rewards-progress {
            width: 100%;
            height: 10px;
            background: #eee;
            border-radius: 10px;
            overflow: hidden;
            margin: 15px 0;
        }

        .rewards-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--color-teal), var(--color-primary));
            transition: width 0.5s;
        }

        @media (max-width: 768px) {
            .ai-chat-container,
            .live-chat-widget {
                width: calc(100vw - 40px);
                right: 20px;
                left: 20px;
            }

            .features-panel {
                right: 10px;
                bottom: 10px;
            }

            .feature-button {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .reorder-panel {
                width: 300px;
            }

            .comparison-content {
                padding: 20px;
            }

            .comparison-grid {
                grid-template-columns: 1fr;
            }
        }


        /* start */

        .has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* Rotate arrow on hover (desktop) */
.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* If you use an "active" class for mobile */
.has-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* ===============================
   PROMO SECTION
================================ */
.promo-section {
  background: #f6f4f1;
  padding: clamp(1rem, 3vw, 3rem);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===============================
   TOP BANNER
================================ */
.promo-banner {
  background: #b00000;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  position: relative;
}

.promo-banner span {
  font-size: 1.4em;
  font-weight: 700;
}

.promo-banner small {
  display: block;
  opacity: 0.85;
  margin-top: 0.25rem;
}

.promo-banner .learn-more {
  position: absolute;
  right: 1rem;
  bottom: 0.75rem;
  font-size: 0.85rem;
  color: #fff;
  text-decoration: underline;
}

/* ===============================
   IMAGE GRID
================================ */
/* ===============================
   SINGLE PROMO BANNER
================================ */
.od-single-banner {
  width: 100%;
  padding: clamp(1rem, 3vw, 2.5rem);
 
}

.od-single-banner-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
}

/* Banner Image */
.od-single-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===============================
   RESPONSIVE TUNING
================================ */
@media (max-width: 768px) {
  .od-single-banner-wrapper {
    border-radius: 0.75rem;
  }
}

@media (max-width: 480px) {
  .od-single-banner {
    padding: 1rem;
  }
}

/* ===============================
   OFFERS GRID
================================ */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.offer-card {
  border-radius: 0.75rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}
.offer-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.offer-card:hover {
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(0, 0, 0, 0.05);
}
@media (hover: none) {
  .offer-card:hover {
    transform: none;
  }
}


.offer-card img {
  max-width: 100%;
  height: auto;
  border-radius: 5%;
  object-fit: contain;
}

.offer-card h4 {
  color: #b00000;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.offer-card p {
  font-size: 0.9rem;
  color: #555;
}

/* ===============================
   RESPONSIVE TWEAKS
================================ */
@media (max-width: 768px) {
  .promo-card.large {
    grid-column: span 1;
  }

  .promo-banner .learn-more {
    position: static;
    display: block;
    margin-top: 0.5rem;
  }
}

@media (max-width: 480px) {
  .promo-banner p {
    font-size: 0.95rem;
  }

  .highlight-content h3 {
    font-size: 1rem;
  }
}

/* ===============================
   OD DEALS SECTION
================================ */
.od-deals-section {
  padding: clamp(1.5rem, 4vw, 4rem);
  background: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.od-deals-title {
  text-align: center;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  margin-bottom: 2rem;
  font-weight: 600;
}

/* ===============================
   CATEGORIES
================================ */
.od-deals-categories {
  display: flex;
  gap: 1.25rem;
  width: 100%;
  padding-bottom: 1rem;
}

.od-deals-category-item {
  flex: 1 1 0;
  text-align: center;
  min-width: 0;
  padding: 0.5rem;
  border-radius: 0.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.od-deals-category-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  background: #f2f2f2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.od-deals-category-item:hover {
  transform: translateY(-4px);
}

.od-deals-category-item:hover img {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.od-deals-category-item span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
}
@media (hover: none) {
  .od-deals-category-item:hover {
    transform: none;
  }

  .od-deals-category-item:hover img {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
}


/* ===============================
   PROMO BANNER
================================ */
.od-deals-promo {
  margin: 3rem 0;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

.od-deals-promo-banner {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.od-deals-promo-banner {
  width: 100%;
  height: clamp(180px, 35vw, 420px);
  object-fit: cover;
}
.od-deals-promo {
  overflow: hidden;
}

.od-deals-promo-banner {
  transition: transform 0.4s ease;
}

.od-deals-promo:hover .od-deals-promo-banner {
  transform: scale(1.04);
}


/* ===============================
   PRODUCT GRID
================================ */
.od-deals-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.od-deals-product-card {
  background: #f8f8f8;
  border-radius: 0.75rem;
  padding: 0.5rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.od-deals-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.od-deals-product-card img {
  width: 100%;
  height: auto;
  border-radius: 5%;
  object-fit: contain;
  margin-bottom: 0.25rem;
  transition: transform 0.3s ease;
}

.od-deals-product-card:hover img {
  transform: scale(1.05);
}

.od-deals-product-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.od-deals-product-card p {
  font-size: 0.85rem;
  color: #555;
}


/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .od-deals-promo {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .od-deals-category-item {
    width: 90px;
  }

  .od-deals-promo-images img {
    width: 70px;
  }
}

/* ===============================
   CREATE WORKSPACE SECTION
================================ */
.ws-create-section {
  padding: clamp(1.5rem, 4vw, 4rem);
  background: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.ws-create-heading {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin-bottom: 2.5rem;
}

/* ===============================
   TOP GRID
================================ */
.ws-create-top-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.ws-create-offer-card {
  background: #f7f3ef;
  border-radius: 1rem;
  overflow: hidden;
}

.ws-create-image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ws-create-image-row img,
.ws-create-large-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.ws-create-offer-text {
  padding: 1rem;
  text-align: center;
}

.ws-create-offer-text span {
  color: #b00000;
  font-size: 1.8rem;
  font-weight: 700;
}

.ws-create-offer-text small {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.ws-create-image-row img,
.ws-create-large-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ws-create-offer-card:hover
.ws-create-image-row img,
.ws-create-offer-card:hover
.ws-create-large-img {
  transform: scale(1.05);
}

.ws-create-offer-card a{
  color: inherit;
  text-decoration: none;
}

/* ===============================
   FEATURE GRID
================================ */
.ws-create-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.ws-create-feature-card {
  background: #f9f9f9;
  border-radius: 0.75rem;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ws-create-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.ws-create-feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ws-create-feature-card:hover img {
  transform: scale(1.06);
}

.ws-create-feature-card h4 {
  margin-top: 0.75rem;
}
@media (hover: none) {
  .ws-create-feature-card:hover {
    transform: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  }

  .ws-create-feature-card:hover img {
    transform: none;
  }
}

.ws-create-feature-card a{
  color: inherit;
  text-decoration: none;
}


/* ===============================
   PROMO WIDE
================================ */
.ws-create-subheading {
  text-align: center;
  margin-bottom: 1.5rem;
}

.ws-create-promo-wide {
  border-radius: 1rem;
  align-items: center;
}

.ws-create-badge {
  background: #b00000;
  padding: 0.5rem 0.75rem;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 1rem;
}

.ws-create-promo-left img {
  max-width: 100%;
  margin-bottom: 2.5rem;
}

/* ===============================
   BOTTOM GRID
================================ */
.ws-create-bottom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.ws-create-deal-card {
  background: #f8f8f8;
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ws-create-deal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
}

.ws-create-deal-card img {
  width: 100%;
  height: auto;
  border-radius: 5%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.ws-create-deal-card:hover img {
  transform: scale(1.08);
}


/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .ws-create-promo-wide {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .ws-create-image-row img,
  .ws-create-large-img {
    height: 160px;
  }
}

@media (hover: none) {
  .ws-create-deal-card:hover {
    transform: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  }

  .ws-create-deal-card:hover img {
    transform: none;
  }
}

.shop-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

/* Sidebar */
.shop-sidebar {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  height: fit-content;
}

.shop-sidebar h4 {
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.filter-group {
  margin-bottom: 1.6rem;
}

.filter-group h5 {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: #555;
}

.filter-group button,
.filter-select {
  width: 100%;
  padding: 0.55rem 0.75rem;
  margin-bottom: 0.45rem;
  border-radius: 0.6rem;
  border: 1px solid #ddd;
  background: #f9f9f9;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-group button:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.price-label {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Products */
.shop-products .row {
  row-gap: 1.75rem;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.3);
}

.product-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-body {
  padding: 1rem;
  text-align: center;
}

.product-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  min-height: 42px;
}

.product-rating {
  color: var(--color-accent-2);
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.old-price {
  font-size: 0.85rem;
  color: #999;
  text-decoration: line-through;
  margin-left: 6px;
}

.btn-add-cart {
  width: 100%;
  padding: 0.6rem;
  border-radius: 0.6rem;
  border: none;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

.btn-add-cart:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
}


.price-range-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.35rem; /* very small gap */
}

.price-min,
.price-max {
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  white-space: nowrap;
}

.price-range-wrap input[type="range"] {
  width: 100%;
}


/* Global safety */
.qs-privacy-page,
.qs-privacy-page * {
  box-sizing: border-box;
}

/* Section */
.qs-privacy-page {
  padding: 70px 0;
  background: linear-gradient(180deg, #f8f9fb, #ffffff);
  width: 100%;
  overflow-x: hidden;
}

/* Container alignment (Bootstrap safe) */
.qs-privacy-page .container {
  max-width: 1400px;
}

/* Header */
.qs-privacy-header {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.qs-privacy-header h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.qs-privacy-header p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
}

/* Wrapper */
.qs-privacy-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.6rem;
  width: 100%;
}

/* Cards */
.qs-privacy-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.6rem;
  box-shadow: 0 14px 35px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.qs-privacy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.12);
}

/* Typography */
.qs-privacy-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--color-dark);
}

.qs-privacy-card p,
.qs-privacy-card li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
}

.qs-privacy-card ul {
  padding-left: 1.2rem;
}

/* Mobile */
@media (max-width: 768px) {
  .qs-privacy-page {
    padding: 50px 0;
  }

  .qs-privacy-header {
    margin-bottom: 40px;
  }

  .qs-privacy-card {
    padding: 1.4rem;
  }
}

/* Global safety */
.qs-terms-page,
.qs-terms-page * {
  box-sizing: border-box;
}

/* Section */
.qs-terms-page {
  padding: 70px 0;
  background: linear-gradient(180deg, #f8f9fb, #ffffff);
  width: 100%;
  overflow-x: hidden;
}

/* Container */
.qs-terms-page .container {
  max-width: 1400px;
}

/* Header */
.qs-terms-header {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.qs-terms-header h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.qs-terms-header p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
}

/* Grid */
.qs-terms-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.6rem;
  width: 100%;
}

/* Cards */
.qs-terms-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.6rem;
  box-shadow: 0 14px 35px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.qs-terms-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.12);
}

/* Typography */
.qs-terms-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--color-dark);
}

.qs-terms-card p,
.qs-terms-card li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
}

.qs-terms-card ul {
  padding-left: 1.2rem;
}

/* Mobile */
@media (max-width: 768px) {
  .qs-terms-page {
    padding: 50px 0;
  }

  .qs-terms-header {
    margin-bottom: 40px;
  }

  .qs-terms-card {
    padding: 1.4rem;
  }
}

/* Safety */
.qs-disclaimer-page,
.qs-disclaimer-page * {
  box-sizing: border-box;
}

/* Section */
.qs-disclaimer-page {
  padding: 70px 0;
  background: linear-gradient(180deg, #f8f9fb, #ffffff);
  width: 100%;
  overflow-x: hidden;
}

/* Container */
.qs-disclaimer-page .container {
  max-width: 1400px;
}

/* Header */
.qs-disclaimer-header {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.qs-disclaimer-header h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.qs-disclaimer-header p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
}

/* Grid */
.qs-disclaimer-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.6rem;
  width: 100%;
}

/* Cards */
.qs-disclaimer-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.6rem;
  box-shadow: 0 14px 35px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.qs-disclaimer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.12);
}

/* Typography */
.qs-disclaimer-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--color-dark);
}

.qs-disclaimer-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
}

/* Mobile */
@media (max-width: 768px) {
  .qs-disclaimer-page {
    padding: 50px 0;
  }

  .qs-disclaimer-header {
    margin-bottom: 40px;
  }

  .qs-disclaimer-card {
    padding: 1.4rem;
  }
}

/* Safety */
.qs-return-page,
.qs-return-page * {
  box-sizing: border-box;
}

/* Section */
.qs-return-page {
  padding: 70px 0;
  background: linear-gradient(180deg, #f8f9fb, #ffffff);
  width: 100%;
  overflow-x: hidden;
}

/* Container */
.qs-return-page .container {
  max-width: 1400px;
}

/* Header */
.qs-return-header {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.qs-return-header h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.qs-return-header p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
}

/* Grid */
.qs-return-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.6rem;
  width: 100%;
}

/* Cards */
.qs-return-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.6rem;
  box-shadow: 0 14px 35px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.qs-return-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.12);
}

/* Typography */
.qs-return-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--color-dark);
}

.qs-return-card p,
.qs-return-card li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
}

.qs-return-card ul {
  padding-left: 1.2rem;
}

/* Mobile */
@media (max-width: 768px) {
  .qs-return-page {
    padding: 50px 0;
  }

  .qs-return-header {
    margin-bottom: 40px;
  }

  .qs-return-card {
    padding: 1.4rem;
  }
}

/* Safety */
.qs-faq-page,
.qs-faq-page * {
  box-sizing: border-box;
}

/* Section */
.qs-faq-page {
  padding: 70px 0;
  background: linear-gradient(180deg, #f8f9fb, #ffffff);
  width: 100%;
  overflow-x: hidden;
}

.qs-faq-page .container {
  max-width: 1400px;
}

/* Header */
.qs-faq-header {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.qs-faq-header h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.qs-faq-header p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
}

/* Grid */
.qs-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Card */
.qs-faq-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 14px 35px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.qs-faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0,0,0,0.12);
}

/* Question */
.qs-faq-question {
  padding: 1.1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.qs-faq-toggle {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.qs-faq-card.active .qs-faq-toggle {
  transform: rotate(45deg);
}

/* Answer */
.qs-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.qs-faq-card.active .qs-faq-answer {
  max-height: 300px;
  padding: 0.75rem 1.25rem 1.25rem;
}

/* Responsive */
@media (max-width: 992px) {
  .qs-faq-grid {
    grid-template-columns: 1fr;
  }
}

.od-deals-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

/* checkout page */

.input-group {
  position: relative;
  margin-bottom: 18px;
}

.status-icon {
  position: absolute;
  right: 10px;
  top: 12px;
  font-weight: bold;
}

textarea + .status-icon {
  top: 10px;
}

.input-error {
  border: 1px solid red !important;
}

.input-success {
  border: 1px solid green !important;
}

.error-message {
  color: red;
  font-size: 0.85rem;
  margin-top: 4px;
  display: block;
}

.success-icon { color: green; }
.error-icon { color: red; }

.place-order-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-spinner {
  margin-left: 8px;
}


.checkout-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.checkout-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.checkout-card h3 {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem;
  border-radius: 0.6rem;
  border: 1px solid #ccc;
  margin-top: 5px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  outline: none;
}

.error {
  color: #c00000;
  font-size: 0.75rem;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem;
  border-radius: 0.6rem;
  background: #f4f6f8;
  margin-bottom: 1.5rem;
}

.btn-place-order {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.7rem;
  border: none;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
}

.summary-row.total {
  font-size: 1.1rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   PRINTIFY MARKETING SECTION
================================ */
.ps-marketing-section {
  padding: 60px 0;
  background: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Header */
.ps-section-header {
  max-width: 720px;
  margin: 0 auto 3rem;
}

.ps-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.ps-subtitle {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.7;
}

/* Hero */
.ps-hero {
  margin-bottom: 4rem;
}

.ps-hero-img {
  width: 100%;
  border-radius: 1.2rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.ps-highlight-title {
  color: var(--color-primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.ps-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Feature List */
.ps-feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.ps-feature-list li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #555;
}

.ps-feature-list i {
  color: var(--color-teal);
  margin-right: 10px;
}

/* Buttons */
.ps-btn-primary,
.ps-btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  border-radius: 0.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ps-btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.ps-btn-primary:hover {
  background: var(--color-teal);
}

.ps-btn-secondary {
  background: #111;
  color: #fff;
}

.ps-btn-secondary:hover {
  background: var(--color-primary);
}

/* Services */
.ps-services {
  margin-bottom: 4rem;
}

.ps-service-card {
  background: #f9f9f9;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ps-service-card i {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.ps-service-card h4 {
  margin-bottom: 0.5rem;
}

.ps-service-card p {
  font-size: 0.9rem;
  color: #666;
}

.ps-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

/* CTA */
.ps-cta {
  background: linear-gradient(135deg, #f4f7fb, #eef1f6);
  padding: 3rem 2rem;
  border-radius: 1.2rem;
  text-align: center;
}

.ps-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.ps-cta p {
  color: #555;
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .ps-hero {
    text-align: center;
  }

  .ps-highlight-title {
    font-size: 1.5rem;
  }
}

/* ===============================
   BUSINESS SERVICE SECTION
================================ */
.bs-service-section {
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===============================
   HEADER
================================ */
.bs-header {
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.bs-header .section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.bs-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #666;
}

/* ===============================
   HERO SECTION
================================ */
.bs-hero {
  margin-bottom: 4.5rem;
}

.bs-hero-img {
  width: 100%;
  border-radius: 1.25rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

.bs-highlight-title {
  font-size: 1.9rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.bs-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

/* ===============================
   FEATURE LIST
================================ */
.bs-feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.8rem;
}

.bs-feature-list li {
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
  color: #555;
  display: flex;
  align-items: center;
}

.bs-feature-list i {
  color: var(--color-teal);
  margin-right: 10px;
  font-size: 1rem;
}

/* ===============================
   BUTTONS
================================ */
.bs-btn-primary,
.bs-btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.7rem;
  border-radius: 0.65rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bs-btn-primary {
  background: var(--color-primary);
  color: #ffffff;
}

.bs-btn-primary:hover {
  background: var(--color-teal);
  color: #ffffff;
}

.bs-btn-secondary {
  background: #111111;
  color: #ffffff;
}

.bs-btn-secondary:hover {
  background: var(--color-primary);
  color: #ffffff;
}

/* ===============================
   SERVICES GRID
================================ */
.bs-services {
  margin-bottom: 4.5rem;
}

.bs-service-card {
  background: #f9fafb;
  border-radius: 1.1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bs-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

/* Service Image */
.bs-service-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0.9rem;
  margin-bottom: 1.2rem;
}

/* Service Content */
.bs-service-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bs-service-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ===============================
   CTA SECTION
================================ */
.bs-cta {
  background: linear-gradient(135deg, #f4f7fb, #eef1f6);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: 1.4rem;
  text-align: center;
}

.bs-cta h3 {
  font-size: clamp(1.6rem, 3vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.bs-cta p {
  color: #555;
  margin-bottom: 1.6rem;
  font-size: 0.95rem;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .bs-highlight-title {
    font-size: 1.6rem;
  }

  .bs-hero {
    text-align: center;
  }

  .bs-service-img {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .bs-service-img {
    height: 140px;
  }
}

/* ===============================
   TECH SERVICES SECTION
================================ */
.ts-services-section {
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Header */
.ts-header {
  max-width: 820px;
  margin: 0 auto 3.5rem;
}

.ts-subtitle {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.7;
}

/* ===============================
   SERVICE CARD
================================ */
.ts-service-card {
  background: #f9fafb;
  border-radius: 1.25rem;
  overflow: hidden;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ts-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

/* Image */
.ts-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Card Body */
.ts-card-body {
  padding: 1.6rem;
  text-align: center;
}

.ts-card-body i {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.ts-card-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ts-card-body p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

/* Buttons */
.ts-btn,
.ts-btn-secondary {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border-radius: 0.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ts-btn {
  background: var(--color-primary);
  color: #fff;
}

.ts-btn:hover {
  background: var(--color-teal);
  color: #fff;
}

.ts-btn-secondary {
  background: #111;
  color: #fff;
}

.ts-btn-secondary:hover {
  background: var(--color-primary);
}

/* ===============================
   CTA
================================ */
.ts-cta {
  margin-top: 4.5rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f4f7fb, #eef1f6);
  border-radius: 1.5rem;
  text-align: center;
}

.ts-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.ts-cta p {
  color: #555;
  margin-bottom: 1.5rem;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .ts-card-img {
    height: 160px;
  }

  .ts-cta h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .ts-card-img {
    height: 150px;
  }
}

/* ===============================
   WORKSPACE DESIGN SECTION
================================ */
.ws-design-section {
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Header */
.ws-design-header {
  max-width: 820px;
  margin: 0 auto 3.5rem;
}

.ws-design-subtitle {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.7;
}

/* ===============================
   DESIGN CARD
================================ */
.ws-design-card {
  background: #f9fafb;
  border-radius: 1.25rem;
  overflow: hidden;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ws-design-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

/* Image */
.ws-design-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Card Body */
.ws-design-body {
  padding: 1.6rem;
  text-align: center;
}

.ws-design-body i {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.ws-design-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ws-design-body p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

/* Buttons */
.ws-design-btn,
.ws-design-btn-secondary {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border-radius: 0.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ws-design-btn {
  background: var(--color-primary);
  color: #fff;
}

.ws-design-btn:hover {
  background: var(--color-teal);
  color: #fff;
}

.ws-design-btn-secondary {
  background: #111;
  color: #fff;
}

.ws-design-btn-secondary:hover {
  background: var(--color-primary);
}

/* ===============================
   CTA
================================ */
.ws-design-cta {
  margin-top: 4.5rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f4f7fb, #eef1f6);
  border-radius: 1.5rem;
  text-align: center;
}

.ws-design-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.ws-design-cta p {
  color: #555;
  margin-bottom: 1.5rem;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .ws-design-img {
    height: 160px;
  }

  .ws-design-cta h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .ws-design-img {
    height: 150px;
  }
}
/* ===============================
   EDUCATION PAGE
================================ */
.edu-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #222;
}

/* HERO */
.edu-hero {
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: linear-gradient(135deg, #f4f7fb, #eef2f7);
}

.edu-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.edu-subtitle {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.edu-hero-img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

/* BUTTONS */
.edu-btn-primary,
.edu-btn-secondary {
  display: inline-block;
  padding: .8rem 1.8rem;
  border-radius: .7rem;
  font-weight: 600;
  text-decoration: none;
}

.edu-btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.edu-btn-secondary {
  background: #111;
  color: #fff;
}

/* SECTION TITLE */
.edu-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

/* SOLUTIONS */
.edu-solutions {
  padding: 5rem 0;
}

.edu-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.edu-card i {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* SPLIT */
.edu-split {
  padding: 5rem 0;
  background: #fafafa;
}

.edu-split-img {
  width: 100%;
  border-radius: 1.3rem;
}

/* LIST */
.edu-list {
  list-style: none;
  padding: 0;
}

.edu-list li {
  margin-bottom: .8rem;
  font-size: 1rem;
}

.edu-list i {
  color: var(--color-teal);
  margin-right: 10px;
}

/* TOOLS */
.edu-tools {
  padding: 5rem 0;
}

.edu-tool-card {
  background: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.edu-tool-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.edu-tool-card h4 {
  padding: 1rem 1.2rem 0;
}

.edu-tool-card p {
  padding: 0 1.2rem 1.4rem;
  color: #666;
}

/* CTA */
.edu-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #eef2f7, #e6ebf3);
}

.edu-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.edu-cta p {
  color: #555;
  margin-bottom: 1.8rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .edu-section-title {
    font-size: 1.6rem;
  }
}

/* ===============================
   REMOTE WORK PAGE
================================ */
.rw-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #222;
}

/* HERO */
.rw-hero {
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: linear-gradient(135deg, #f4f7fb, #eef2f7);
}

.rw-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.rw-subtitle {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

.rw-hero-img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

/* BUTTONS */
.rw-btn-primary,
.rw-btn-secondary {
  display: inline-block;
  padding: .8rem 1.8rem;
  border-radius: .7rem;
  font-weight: 600;
  text-decoration: none;
}

.rw-btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.rw-btn-secondary {
  background: #111;
  color: #fff;
}

/* SECTION TITLES */
.rw-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

/* SOLUTIONS */
.rw-solutions {
  padding: 5rem 0;
}

.rw-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.rw-card i {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* SPLIT */
.rw-split {
  padding: 5rem 0;
  background: #fafafa;
}

.rw-split-img {
  width: 100%;
  border-radius: 1.3rem;
}

/* LIST */
.rw-list {
  list-style: none;
  padding: 0;
}

.rw-list li {
  margin-bottom: .8rem;
  font-size: 1rem;
}

.rw-list i {
  color: var(--color-teal);
  margin-right: 10px;
}

/* TOOLS */
.rw-tools {
  padding: 5rem 0;
}

.rw-tool-card {
  background: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.rw-tool-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.rw-tool-card h4 {
  padding: 1rem 1.2rem 0;
}

.rw-tool-card p {
  padding: 0 1.2rem 1.4rem;
  color: #666;
}

/* CTA */
.rw-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #eef2f7, #e6ebf3);
}

.rw-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.rw-cta p {
  color: #555;
  margin-bottom: 1.8rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .rw-section-title {
    font-size: 1.6rem;
  }
}

/* ===============================
   SUSTAINABILITY PAGE
================================ */
.sus-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #222;
}

/* HERO */
.sus-hero {
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: linear-gradient(135deg, #eef7f2, #e6f2ec);
}

.sus-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.sus-subtitle {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

.sus-hero-img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

/* BUTTONS */
.sus-btn-primary,
.sus-btn-secondary {
  display: inline-block;
  padding: .8rem 1.8rem;
  border-radius: .7rem;
  font-weight: 600;
  text-decoration: none;
}

.sus-btn-primary {
  background: #2f8f46;
  color: #fff;
}

.sus-btn-secondary {
  background: #111;
  color: #fff;
}

/* SECTION TITLES */
.sus-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

/* SOLUTIONS */
.sus-solutions {
  padding: 5rem 0;
}

.sus-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.sus-card i {
  font-size: 2.2rem;
  color: #2f8f46;
  margin-bottom: 1rem;
}

/* SPLIT */
.sus-split {
  padding: 5rem 0;
  background: #fafafa;
}

.sus-split-img {
  width: 100%;
  border-radius: 1.3rem;
}

/* LIST */
.sus-list {
  list-style: none;
  padding: 0;
}

.sus-list li {
  margin-bottom: .8rem;
  font-size: 1rem;
}

.sus-list i {
  color: #2f8f46;
  margin-right: 10px;
}

/* TOOLS */
.sus-tools {
  padding: 5rem 0;
}

.sus-tool-card {
  background: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.sus-tool-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.sus-tool-card h4 {
  padding: 1rem 1.2rem 0;
}

.sus-tool-card p {
  padding: 0 1.2rem 1.4rem;
  color: #666;
}

/* CTA */
.sus-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #e6f2ec, #ddebe4);
}

.sus-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.sus-cta p {
  color: #555;
  margin-bottom: 1.8rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .sus-section-title {
    font-size: 1.6rem;
  }
}
/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 100000;
  transform: translateY(100%);
  transition: transform .35s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-banner a {
  color: #0aa7a7;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.btn-cookie {
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-cookie.accept {
  background: #0aa7a7;
  color: #fff;
}

.btn-cookie.decline {
  background: #444;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}
/* SCROLL TO TOP */
#scrollTopBtn {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--color-primary);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
  z-index: 99999;
  box-shadow: 0 10px 25px rgba(0,0,0,.3);
  transition: transform .3s ease, opacity .3s ease;
}

#scrollTopBtn:hover {
  transform: translateY(-4px);
}

/* MOBILE SAFE */
@media (max-width: 768px) {
  #scrollTopBtn {
    right: 14px;
    bottom: 80px;
  }
}

/* ===============================
   CHECKOUT LAYOUT
================================ */
.checkout-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(16px, 3vw, 32px);
  align-items: flex-start;
}

/* ===============================
   CARD
================================ */
.checkout-card {
  background: #ffffff;
  padding: clamp(16px, 3vw, 28px);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.checkout-card h3 {
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 22px);
  margin-bottom: 18px;
}

/* ===============================
   FORM INPUTS
================================ */
.checkout-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid #ddd;
  margin-bottom: 14px;
  font-size: 14px;
}

.checkout-input:focus {
  border-color: var(--color-primary);
  outline: none;
}

/* ===============================
   COD PAYMENT BOX
================================ */
.cod-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 10px;
  border: 2px solid var(--color-primary);
  background: #f8fbff;
  font-weight: 600;
  font-size: 14px;
}

/* ===============================
   PLACE ORDER BUTTON
================================ */
.place-order-btn {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.place-order-btn:hover {
  opacity: 0.95;
}

/* ===============================
   SUMMARY ITEMS
================================ */
.checkout-summary-item {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.checkout-summary-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.checkout-summary-item div {
  font-size: 14px;
  line-height: 1.4;
}

/* ===============================
   TOTAL
================================ */
.checkout-total {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: clamp(16px, 2.5vw, 18px);
  margin-top: 15px;
}

/* ===============================
   LARGE DESKTOP (≥1400px)
================================ */
@media (min-width: 1400px) {
  .checkout-wrapper {
    grid-template-columns: 1.6fr 1fr;
  }

  .checkout-summary-item img {
    width: 70px;
    height: 70px;
  }
}

/* ===============================
   LAPTOP / TABLET LANDSCAPE (≤1200px)
================================ */
@media (max-width: 1200px) {
  .checkout-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===============================
   TABLET PORTRAIT (≤992px)
================================ */
@media (max-width: 992px) {
  .checkout-wrapper {
    grid-template-columns: 1fr;
  }

  .checkout-card {
    margin-bottom: 20px;
  }
}

/* ===============================
   MOBILE (≤576px)
================================ */
@media (max-width: 576px) {
  .checkout-card {
    padding: 16px;
    border-radius: 12px;
  }

  .checkout-summary-item {
    gap: 10px;
  }

  .checkout-summary-item img {
    width: 52px;
    height: 52px;
  }

  .checkout-input {
    font-size: 13px;
    padding: 11px 12px;
  }

  .place-order-btn {
    font-size: 15px;
    padding: 13px;
  }
}

/* ===============================
   EXTRA SMALL DEVICES (≤360px)
================================ */
@media (max-width: 360px) {
  .checkout-summary-item img {
    width: 46px;
    height: 46px;
  }

  .checkout-total {
    font-size: 15px;
  }
}

/* ================= GLOBAL ENHANCEMENTS ================= */

.services-hero {
  background: linear-gradient(135deg, #9b2226 0%, #0a9396 100%);
  color: #fff;
  padding: 80px 20px;
  border-radius: 0 0 60px 60px;
}

.services-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.services-hero p {
  opacity: 0.9;
  font-size: 1.1rem;
}


/* ================= SERVICE CARDS ================= */

.service-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: linear-gradient(135deg, rgba(10,147,150,0.08), rgba(155,34,38,0.08));
  top: -50%;
  left: -50%;
  transform: rotate(25deg);
}

.service-card i {
  font-size: 40px;
  margin-bottom: 18px;
  color: #0a9396;
  z-index: 1;
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  z-index: 1;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}


/* ================= PREMIUM BUTTON ================= */

.service-btn {
  background: linear-gradient(135deg, #0a9396, #005f63);
  border: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.3s ease;
  z-index: 1;
  position: relative;
}

.service-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(10,147,150,0.4);
}


/* ================= PRICING SECTION ================= */

.pricing-section {
  background: #f8f9fa;
}

.pricing-card {
  background: #fff;
  border-radius: 25px;
  padding: 40px 30px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.15);
}

.pricing-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.price {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 25px;
}

.price span {
  font-size: 14px;
  color: #777;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.feature-list li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-list i {
  font-size: 14px;
}

.featured {
  border: 2px solid #0a9396;
  transform: scale(1.03);
}

.badge-plan {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ee9b00;
  color: #fff;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

.plan-btn {
  width: 100%;
  background: linear-gradient(135deg, #9b2226, #bb3e03);
  border: none;
  color: #fff;
  padding: 12px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}

.plan-btn:hover {
  box-shadow: 0 8px 25px rgba(155,34,38,0.4);
  transform: scale(1.03);
}


/* ================= MODAL DESIGN ================= */

.service-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.service-modal-content {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 30px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.2);
  position: relative;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.close-modal {
  position: absolute;
  right: 25px;
  top: 20px;
  font-size: 22px;
  cursor: pointer;
  color: #777;
}

.close-modal:hover {
  color: #9b2226;
}


/* ================= FORM STYLING ================= */

.service-modal-content input,
.service-modal-content textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: 0.3s;
}

.service-modal-content input:focus,
.service-modal-content textarea:focus {
  border-color: #0a9396;
  box-shadow: 0 0 0 3px rgba(10,147,150,0.2);
  outline: none;
}

.error-message {
  font-size: 0.8rem;
  color: #c1121f;
  margin-bottom: 10px;
}

.success-box {
  background: #e6fffa;
  color: #0a9396;
  padding: 20px;
  border-radius: 15px;
  font-weight: 600;
  text-align: center;
  margin-top: 15px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .pricing-card {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 60px 20px;
  }

  .service-card {
    padding: 25px 20px;
  }

  .pricing-card {
    margin-bottom: 20px;
  }

  .service-modal-content {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .service-btn,
  .plan-btn {
    font-size: 0.85rem;
    padding: 10px;
  }

  .price {
    font-size: 28px;
  }
}

