@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0066CC;
    --secondary: #004A99;
    --light: #E8F4FD;
    --white: #FFFFFF;
    --dark: #1A1A1A;
    --gray: #666666;
    --light-gray: #F8F9FA;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--white);
    line-height: 1.6;
}

/* Modern Navigation */
.modern-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
    animation: slideDown 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-modern {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    cursor: pointer;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: 2px solid var(--light);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--dark);
}

.icon-btn:hover {
    border-color: var(--primary);
    background: var(--light);
    transform: translateY(-2px);
}

.cart-badge {
  padding: 4px;
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF4757;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cta-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cta-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark);
    padding: 0.5rem;
}

/* Hero Modern */
.hero-modern {
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F0F8FF 0%, #E8F4FD 100%);
}

/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #0066CC, #00A8E8);
    top: -250px;
    right: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #4A90E2, #0066CC);
    bottom: -200px;
    left: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #E8F4FD, #00A8E8);
    top: 50%;
    left: 30%;
    animation-delay: 10s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

/* Hero Content */
.hero-content-wrapper {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

/* Badge Pill */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #26DE81;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(38, 222, 129, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 10px rgba(38, 222, 129, 0); }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, #0066CC, #00A8E8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Hero Search Card */
.hero-search-container {
    margin-bottom: 2.5rem;
}

.search-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.search-input-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light);
}

.search-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    padding: 0.8rem 0;
    background: transparent;
    color: var(--dark);
    font-family: inherit;
}

.hero-search-input::placeholder {
    color: var(--gray);
}

.search-action-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.search-action-btn:hover {
    background: var(--secondary);
    transform: translateX(3px);
}

.arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.search-action-btn:hover .arrow {
    transform: translateX(5px);
}

/* Quick Suggestions */
.quick-suggestions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.suggestion-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
}

.suggestion-tag {
    background: var(--light);
    border: 1px solid rgba(0, 102, 204, 0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.suggestion-tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--dark);
}

.trust-icon {
    width: 24px;
    height: 24px;
    background: var(--light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    animation: fadeInRight 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: float 3s ease-in-out infinite;
    min-width: 280px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 102, 204, 0.2);
}

.card-1 {
    top: 80px;
    right: 20px;
    animation-delay: 0s;
}

.card-2 {
    top: 280px;
    right: 60px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 80px;
    right: 0;
    animation-delay: 2s;
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 15px;
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.card-content {
    flex: 1;
}

.card-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--gray);
}

.card-badge {
    background: linear-gradient(135deg, #FFB800, #FF8C00);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Hero Illustration */
.hero-illustration {
    position: absolute;
    top: 50%;
    left: -80px;
    transform: translateY(-50%);
}

.illustration-circle {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, var(--primary), #00A8E8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(0, 102, 204, 0.3);
    animation: rotate 30s linear infinite;
    position: relative;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.main-icon {
    font-size: 6rem;
    font-weight: 900;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-left: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(-45deg);
}

/* Banner Section */
.banner-section {
    padding: 5rem 5%;
    background: var(--white);
}

.banner-slider {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.banner-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.banner-slide {
    min-width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
}

.banner-slide:nth-child(1) {
    background: linear-gradient(135deg, #0066CC 0%, #00A8E8 100%);
}

.banner-slide:nth-child(2) {
    background: linear-gradient(135deg, #004A99 0%, #0066CC 100%);
}

.banner-slide:nth-child(3) {
    background: linear-gradient(135deg, #003D7A 0%, #0066CC 100%);
}

.banner-content {
    padding: 4rem 6rem;
    color: var(--white);
    max-width: 600px;
}

.banner-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    font-weight: 600;
}

.banner-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.banner-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.banner-btn {
    background: var(--white);
    color: var(--primary);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.banner-nav {
    position: absolute;
    bottom: 3rem;
    right: 6rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.banner-arrow {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.banner-arrow:hover {
    background: var(--white);
    color: var(--primary);
    transform: scale(1.1);
}

/* Categories Section */
.categories-section {
    padding: 6rem 5%;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray);
    font-size: 1.2rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 220px;
    gap: 1.5rem;
    max-width: 1600px;
    margin: 0 auto;
}

.bento-item {
    background: var(--white);
    border-radius: 25px;
    padding: 2rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid transparent;
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,102,204,0.15);
    border-color: var(--primary);
}

/* Premium Category - Large */
.bento-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--dark);
}

.bento-item:nth-child(2) {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.bento-item:nth-child(3) {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item:nth-child(4) {
    grid-column: span 2;
}

.bento-item:nth-child(5) {
    grid-column: span 2;
}

.bento-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, #FF6B9D 0%, #C239B3 100%);
    color: var(--white);
}

.bento-item:nth-child(7) {
    grid-column: span 2;
}

.bento-item:nth-child(8) {
    grid-column: span 2;
    background: linear-gradient(135deg, #4A5568 0%, #2D3748 100%);
    color: var(--white);
}

.bento-item:nth-child(9) {
    grid-column: span 2;
}

.bento-item:nth-child(10) {
    grid-column: span 2;
}

.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.3);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.bento-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    font-weight: 700;
    transition: transform 0.4s ease;
}

.bento-item:hover .bento-icon {
    transform: scale(1.15) rotate(5deg);
}

.bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.bento-item p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 5%;
    background: var(--white);
}

.reviews-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.review-card {
    flex: 1;
    background: var(--light-gray);
    border-radius: 25px;
    padding: 3rem;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.review-card:nth-child(1) {
    transform: translateY(0);
}

.review-card:nth-child(2) {
    transform: translateY(40px);
}

.review-card:nth-child(3) {
    transform: translateY(80px);
}

.review-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0,102,204,0.15);
    z-index: 10;
    background: var(--white);
}

.quote-mark {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: 900;
}

.review-rating {
    color: #FFB800;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 2rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light);
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.reviewer-info h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.reviewer-info p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 5rem 5% 2rem;
}

.footer-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 10px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn {
    aspect-ratio: 1;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    color: var(--white);
    border: none;
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    color: rgba(255,255,255,0.7);
}

/* Responsive */
@media (max-width: 1400px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(6) {
        grid-column: span 2;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: none;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    
    .bento-item:nth-child(1), 
    .bento-item:nth-child(2), 
    .bento-item:nth-child(3), 
    .bento-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .reviews-container {
        flex-direction: column;
    }

    .review-card:nth-child(1),
    .review-card:nth-child(2),
    .review-card:nth-child(3) {
        transform: translateY(0);
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .search-action-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .banner-content {
        padding: 3rem;
    }

    .banner-content h2 {
        font-size: 2rem;
    }

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

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

    .nav-container {
        padding: 1rem 5%;
    }

    .nav-actions .icon-btn:first-child {
        display: none;
    }
}
.hero-suggestions{
  max-height: 40vh;
  overflow-y: scroll;
  margin-bottom: 9px;
}
/* ===== NAV: centered + minimal ===== */
.nav-center {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
  }
  
  .nav-center__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .nav-center__brand {
    font-weight: 800;
    letter-spacing: -0.2px;
  }
  
  .nav-center__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .nav-center__cartLink {
    text-decoration: none;
  }
  
  .nav-center__cartBtn {
    border: 1px solid rgba(0, 102, 204, 0.16);
    background: rgba(255, 255, 255, 0.9);
  }
  
  /* ===== HERO: centered premium minimal ===== */
  .hero-center {
    background: linear-gradient(180deg, #F7FBFF 0%, #FFFFFF 72%);
    text-align: center;
  }
  
  .hero-center__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(900px 520px at 50% 15%, rgba(0, 102, 204, 0.16), transparent 60%),
      radial-gradient(900px 520px at 50% 90%, rgba(0, 168, 232, 0.08), transparent 60%);
  }
  
  .hero-center__wrap {
    position: relative;
    z-index: 1;
  }
  
  .hero-center__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 5.5rem 5% 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  
  .hero-center__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(0, 102, 204, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.12);
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.92rem;
  }
  
  .hero-center__badgeDot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(0, 102, 204, 0.85);
  }
  
  .hero-center__title {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.08;
    letter-spacing: -1.6px;
    margin-top: 0.4rem;
  }
  
  .hero-center__desc {
    max-width: 720px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.12rem;
    line-height: 1.85;
  }
  
  /* search card centered + elegant */
  .hero-center__search {
    width: min(840px, 100%);
    margin-top: 0.6rem;
  }
  
  .hero-center__searchCard {
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(0, 74, 153, 0.12);
    border: 1px solid rgba(0, 102, 204, 0.10);
  }
  
  .hero-center__searchRow {
    border-bottom: none;
    padding-bottom: 0;
    gap: 0.8rem;
  }
  
  .hero-center__searchIcon {
    color: var(--primary);
    opacity: 0.9;
  }
  
  .hero-center__suggestions {
    margin-top: 0.75rem;
    list-style: none;
    padding: 0;
    text-align: left; /* suggestions look better left-aligned */
  }
  
  /* suggestion dropdown (simple) */
  .hero-center__suggestions li {
    margin-top: 0.55rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0, 102, 204, 0.10);
    padding: 0.85rem 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
  }
  
  .hero-center__suggestions li:hover {
    background: rgba(0, 102, 204, 0.06);
    border-color: rgba(0, 102, 204, 0.18);
  }
  
  .hero-center__chips {
    justify-content: center;
    margin-top: 0.9rem;
  }
  
  /* bottom meta row */
  .hero-center__meta {
    margin-top: 0.6rem;
    display: flex;
    gap: 1.3rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: rgba(26, 26, 26, 0.78);
    font-weight: 600;
    font-size: 0.95rem;
  }
  
  .hero-center__metaItem {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
  }
  
  .hero-center__metaLine {
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: rgba(0, 102, 204, 0.35);
  }
  
  /* responsive nav */
  @media (max-width: 768px) {
    .nav-center__menuBtn {
      display: inline-flex;
    }
  }
  
  /* ===== Categories (Clean + Premium) ===== */
.categories-clean {
  background: #ffffff;
  padding: 5.5rem 5%;
}

.categories-clean__header {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.categories-clean__header h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 900;
  color: var(--secondary);
  letter-spacing: -0.8px;
}

.categories-clean__header p {
  margin-top: 0.7rem;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
}

.categories-clean__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.1rem;
}

/* card */
.category-card {
  grid-column: span 4;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 102, 204, 0.10);
  border-radius: 18px;
  padding: 1.4rem 1.4rem 1.2rem;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 14px 40px rgba(0, 74, 153, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 102, 204, 0.22);
  box-shadow: 0 22px 60px rgba(0, 74, 153, 0.12);
}

.category-card__top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.6rem;
}

.category-card__pill {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--secondary);
  background: rgba(0, 102, 204, 0.10);
  border: 1px solid rgba(0, 102, 204, 0.14);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.category-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.2px;
  margin-bottom: 0.35rem;
}

.category-card__desc {
  color: rgba(26, 26, 26, 0.70);
  line-height: 1.65;
  font-size: 0.98rem;
  margin-bottom: 0.9rem;
}

.category-card__cta {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.1px;
}

/* featured variant: bigger + subtle gradient */
.category-card.is-featured {
  grid-column: span 8;
  background:
    radial-gradient(500px 250px at 20% 30%, rgba(0, 102, 204, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(0, 102, 204, 0.06), rgba(255,255,255, 0.95));
  border-color: rgba(0, 102, 204, 0.16);
}

.category-card.is-featured .category-card__title {
  font-size: 1.35rem;
}

.category-card.is-featured .category-card__desc {
  max-width: 520px;
}

/* Responsive */
@media (max-width: 1024px) {
  .category-card { grid-column: span 6; }
  .category-card.is-featured { grid-column: span 12; }
}

@media (max-width: 640px) {
  .categories-clean__grid { gap: 0.9rem; }
  .category-card { grid-column: span 12; }
}
/* Top row now supports icon image + pill */
.category-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
  }
  
  /* Small image slot */
  .category-card__media {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 102, 204, 0.06);
    border: 1px solid rgba(0, 102, 204, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* keeps image clipped nicely */
    flex: 0 0 auto;
  }
  
  /* The image inside the slot */
  .category-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* use cover for photos, contain for icons */
    display: block;
  }
  
  /* If your images are icons (transparent SVG/PNG), you may prefer this:
  .category-card__media img { object-fit: contain; padding: 8px; }
  */
  
  /* Featured card: slightly larger image slot */
  .category-card.is-featured .category-card__media {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }
  .categories-clean {
    background: #ffffff;
    padding: 5.5rem 5%;
  }
  
  .categories-clean__header {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    text-align: center;
  }
  
  .categories-clean__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.1rem;
  }
  
  /* Uniform card sizing */
  .category-card {
    grid-column: span 4;
    text-decoration: none;
    color: inherit;
  
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 102, 204, 0.10);
    border-radius: 18px;
  
    padding: 1.35rem;
    min-height: 190px;          /* keeps everything consistent */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  
    box-shadow: 0 14px 40px rgba(0, 74, 153, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  
  .category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 102, 204, 0.22);
    box-shadow: 0 22px 60px rgba(0, 74, 153, 0.12);
  }
  
  /* Systematic header: image + title aligned */
  .category-card__head {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0.9rem;
    align-items: center;
    margin-bottom: 0.75rem;
  }
  
  .category-card__media {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0, 102, 204, 0.06);
    border: 1px solid rgba(0, 102, 204, 0.10);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .category-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* use contain + padding for icon-style images */
    display: block;
  }
  
  .category-card__headText {
    min-width: 0;
  }
  
  .category-card__title {
    font-size: 1.12rem;
    font-weight: 850;
    color: var(--dark);
    letter-spacing: -0.2px;
    line-height: 1.2;
  }
  
  .category-card__desc {
    color: rgba(26, 26, 26, 0.70);
    line-height: 1.65;
    font-size: 0.98rem;
    margin-top: 0.2rem;
    margin-bottom: 1rem;
  
    /* keeps rows aligned even if some text is longer */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .category-card__cta {
    color: var(--primary);
    font-weight: 850;
    font-size: 0.95rem;
  }
  
  /* Featured: still systematic, just larger */
  .category-card.is-featured {
    grid-column: span 8;
    min-height: 190px;
    background:
      radial-gradient(520px 260px at 18% 30%, rgba(0, 102, 204, 0.16), transparent 60%),
      linear-gradient(180deg, rgba(0, 102, 204, 0.05), rgba(255,255,255, 0.96));
    border-color: rgba(0, 102, 204, 0.14);
  }
  
  .category-card__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    margin-top: 0.35rem;
    font-size: 0.78rem;
    font-weight: 850;
    color: var(--secondary);
    background: rgba(0, 102, 204, 0.10);
    border: 1px solid rgba(0, 102, 204, 0.14);
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
  }
  
  /* responsive */
  @media (max-width: 1024px) {
    .category-card { grid-column: span 6; }
    .category-card.is-featured { grid-column: span 12; }
  }
  
  @media (max-width: 640px) {
    .category-card { grid-column: span 12; }
  }
  .categories-carousel {
    padding: 5.5rem 5%;
    background: #fff;
  }
  
  .categories-carousel__header {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
  }
  
  .categories-carousel__wrap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 12px;
    align-items: center;
  }
  
  /* Track (scroll area) */
  .categories-carousel__track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* snap carousel */
    scroll-behavior: smooth;
    padding: 6px 2px 12px;
    -webkit-overflow-scrolling: touch;
  
    /* hide scrollbar (still scrollable) */
    scrollbar-width: none;
  }
  .categories-carousel__track::-webkit-scrollbar { display: none; }
  
  /* Buttons */
  .categories-carousel__btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(0, 102, 204, 0.16);
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    display: grid;
    place-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 12px 30px rgba(0, 74, 153, 0.10);
  }
  .categories-carousel__btn:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 102, 204, 0.26);
    box-shadow: 0 18px 45px rgba(0, 74, 153, 0.14);
  }
  
  /* Slide card */
  .cat-slide {
    scroll-snap-align: start; /* each card snaps */
    flex: 0 0 220px;
    border-radius: 18px;
    border: 1px solid rgba(0, 102, 204, 0.10);
    background: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    color: var(--dark);
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 74, 153, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  .cat-slide:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 102, 204, 0.22);
    box-shadow: 0 22px 60px rgba(0, 74, 153, 0.12);
  }
  
  /* Image area */
  .cat-slide__img {
    height: 140px;
    background: rgba(0, 102, 204, 0.06);
  }
  .cat-slide__img img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
     object-fit: contain;
    display: block;
  }
  
  /* Title area */
  .cat-slide__title,
  .cat-slide__titleRow {
    padding: 12px 14px 14px;
    font-weight: 850;
    letter-spacing: -0.2px;
    font-size: 1rem;
  }
  
  .cat-slide__titleRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  
  .cat-slide__pill {
    font-size: 0.75rem;
    font-weight: 850;
    color: var(--secondary);
    background: rgba(0, 102, 204, 0.10);
    border: 1px solid rgba(0, 102, 204, 0.14);
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
  }
  
  /* featured slightly larger */
  .cat-slide.is-featured {
    flex-basis: 280px;
  }
  
  /* hint text */
  .categories-carousel__hint {
    max-width: 1200px;
    margin: 0.6rem auto 0;
    text-align: center;
    color: rgba(26, 26, 26, 0.55);
    font-weight: 600;
    font-size: 0.9rem;
  }
  
  /* Mobile: remove arrows, swipe */
  @media (max-width: 768px) {
    .categories-carousel__wrap {
      grid-template-columns: 1fr;
    }
    .categories-carousel__btn {
      display: none;
    }
    .cat-slide {
      flex-basis: 78%;
    }
  }
      