:root {
    --background: 0 0% 100%;
    --foreground: #364958;
    --primary-color: #252525;
    --secondary-color: #1a1a1a;
    --text-color: #fff;
    --light-text: #fff;
    --light-bg: #f8f9fa;
    --font-serif: 'Outfit', 'Montserrat', system-ui, sans-serif;
    --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --accent-color: #5f7470;
}

body {
    font-family: var(--font-sans);
    background-color: var(--foreground);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Mobile-first approach */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

    .navbar.scrolled {
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 0.5rem 0;
    }

.nav-link {
    color: var(--text-color) !important;
    margin: 0 0.5rem;
    font-size: 0.9rem;
    text-transform: lowercase;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: var(--accent-color) !important;
    }

.navbar-brand {
    margin-right: 0;
}

.logo-container {
    text-align: center;
    margin-bottom: 0.5rem;
}

.logo-text {
    font-size: 0.9rem;
    text-transform: lowercase;
    color: var(--text-color);
    margin-top: 0.5rem;
    font-weight: 600;
}

.triangle-logo {
    width: 40px;
    height: 40px;
    display: block;
    margin: 0 auto;
}

/* Mobile menu adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: white;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        margin-top: 1rem;
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .navbar-toggler {
        border: none;
        padding: .25rem .5rem;
        font-size: 1rem;
    }

        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }
}

.hero-section {
    /*background-image: url('/api/placeholder/1440/800');*/
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(173,216,230,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 1rem;
    /* max-width: 90%; */
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: #252525;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #252525;
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-custom {
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 2rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

    .btn-custom:hover {
        background-color: #2c5fc7;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(61, 124, 244, 0.2);
    }

.section {
    padding: 3rem 0;
}

.section-dark {
    background-color: #1a1a1a;
    color: white;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #252525;
    text-align: center;
}

.section-title-light {
    color: white;
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    gap: 0.5rem;
}

.category-tab {
    background-color: #f5f5f5;
    color: #333;
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin: 0.25rem;
}

    .category-tab:hover, .category-tab.active {
        background-color: var(--accent-color);
        color: white;
    }

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 0;
}

.image-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background-color: white;
    height: 100%;
    position: relative;
}

    .image-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

.image-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.image-card-content {
    padding: 1rem;
}

.image-card-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.image-card-price {
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.image-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #777;
}

.footer {
    background-color: #fff;
    padding: 2rem 0;
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #eee;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin: 0 0.5rem 0.5rem;
    }

    .footer-links a {
        color: #555;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: var(--accent-color);
        }

.social-icon {
    color: #252525;
    font-size: 1.2rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

    .social-icon:hover {
        color: var(--accent-color);
    }

.triangle-logo {
    width: 40px;
    height: 40px;
}

.section-box {
    background-color: #f8f9fa;
    padding: 3rem 1.5rem;
    text-align: center;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.features-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(61, 124, 244, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.search-container {
    max-width: 600px;
    margin: auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 3rem;
    border: 1px solid #eee;
    border-radius: 100px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

    .search-input:focus {
        outline: none;
        border-color: var(--accent-color);
        box-shadow: 0 0 0 3px rgba(61, 124, 244, 0.1);
    }

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    border: none;
    background: #fff;
}

.load-more {
    text-align: center;
    margin-top: 2rem;
}


/* Media queries for responsive design */
@media (min-width: 576px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .hero-content {
        /* max-width: 80%; */
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
    }

    .image-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .features-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    /* .hero-content {
        max-width: 70%;
    } */

    .section {
        padding: 5rem 0;
    }

    .navbar-nav {
        margin-left: auto;
    }
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lazy loading styles */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-loaded {
    opacity: 1;
}

/* Custom component styles for ImageShop - FLUX.1 Kontext Theme */
/* Add this to your wwwroot/css/site.css or create a new CSS file */

@tailwind base;
@tailwind components;
@tailwind utilities;

@layer components {
    /* Hero Section Components */
    .hero-section {
        @apply min-h-screen bg-gradient-to-br from-forest-dark via-forest-medium to-forest-light relative overflow-hidden;
    }

    .hero-content {
        @apply relative z-10 text-center px-4 max-w-4xl mx-auto;
    }

    .hero-title {
        @apply text-4xl md:text-6xl lg:text-7xl font-bold mb-6;
        /* background: linear-gradient(135deg, #ffffff 0%, #22c55e 50%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text; */
    }

    .hero-subtitle {
        @apply text-lg md:text-xl text-gray-300 mb-8 max-w-2xl mx-auto leading-relaxed;
    }

    /* Card Components */
    .image-card {
        @apply bg-card-bg border border-border-dark rounded-xl overflow-hidden transition-all duration-300 hover:shadow-2xl hover:border-accent-green/30 group;
    }

    .image-card-img {
        @apply w-full h-48 object-cover transition-transform duration-300 group-hover:scale-105;
    }

    .image-card-content {
        @apply p-4;
    }

    .image-card-title {
        @apply text-white font-semibold mb-2 group-hover:text-accent-green transition-colors duration-200;
    }

    .image-card-price {
        @apply text-accent-green font-bold text-lg mb-2;
    }

    .image-card-meta {
        @apply text-text-muted text-sm flex justify-between items-center;
    }

    /* Feature Cards */
    .feature-card {
        @apply bg-card-bg border border-border-dark rounded-xl p-6 text-center transition-all duration-300 hover:shadow-xl hover:border-accent-green/30 hover:-translate-y-1;
    }

    .feature-icon {
        @apply w-16 h-16 mx-auto mb-4 bg-gradient-to-br from-accent-green to-accent-blue rounded-full flex items-center justify-center text-forest-dark text-2xl font-bold;
    }

    .feature-title {
        @apply text-white font-semibold text-lg mb-2;
    }

    .feature-description {
        @apply text-text-muted text-sm leading-relaxed;
    }

    /* Button Components */
    .btn-primary {
        @apply bg-accent-green text-forest-dark px-6 py-3 rounded-lg font-semibold transition-all duration-200 hover:bg-green-400 hover:shadow-lg hover:-translate-y-0.5 active:translate-y-0;
    }

    .btn-secondary {
        @apply bg-transparent border border-accent-green text-accent-green px-6 py-3 rounded-lg font-semibold transition-all duration-200 hover:bg-accent-green hover:text-forest-dark hover:shadow-lg;
    }

    .btn-outline {
        @apply bg-transparent border border-border-dark text-white px-6 py-3 rounded-lg font-semibold transition-all duration-200 hover:bg-white hover:text-forest-dark hover:shadow-lg;
    }

    /* Form Components */
    .input-field {
        @apply w-full bg-card-bg border border-border-dark text-white rounded-lg px-4 py-3 focus:outline-none focus:border-accent-green focus:ring-2 focus:ring-accent-green/20 transition-all duration-200;
    }

    .search-container {
        @apply relative max-w-md my-10;
    }

    .search-input {
        @apply w-full bg-card-bg border border-border-dark text-white rounded-full pl-12 pr-4 py-3 focus:outline-none focus:border-accent-green focus:ring-2 focus:ring-accent-green/20 transition-all duration-200;
    }

    .search-icon {
        @apply absolute left-4 top-1/2 transform -translate-y-1/2 text-text-muted;
    }

    /* Category Tabs */
    .category-tabs {
        @apply flex flex-wrap justify-center gap-2 mb-8;
    }

    .category-tab {
        @apply px-4 py-2 bg-card-bg border border-border-dark text-text-muted rounded-full text-sm font-medium transition-all duration-200 hover:text-white hover:border-accent-green;
    }

        .category-tab.active {
            @apply bg-accent-green text-forest-dark border-accent-green;
        }

    /* Grid Layouts */
    .image-grid {
        @apply grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-6;
    }

    .feature-grid {
        @apply grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6;
    }

    /* Loading and Animation Components */
    .loading-spinner {
        @apply inline-block w-6 h-6 border-2 border-accent-green border-t-transparent rounded-full animate-spin;
    }

    .pulse-dot {
        @apply w-3 h-3 bg-accent-green rounded-full animate-pulse;
    }

    /* Section Components */
    .section {
        @apply py-16 px-4;
    }

    .section-title {
        @apply text-3xl md:text-4xl lg:text-5xl font-bold text-center mb-6;
        /* background: linear-gradient(135deg, #ffffff 0%, #22c55e 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text; */
    }

    .section-subtitle {
        @apply text-lg text-text-muted text-center mb-12 max-w-2xl mx-auto;
    }

    /* Modal Components */
    .modal-overlay {
        @apply fixed inset-0 bg-black/50 backdrop-blur-sm z-50 flex items-center justify-center;
    }

    .modal-content {
        @apply bg-card-bg border border-border-dark rounded-xl max-w-md w-full mx-4 overflow-hidden;
    }

    .modal-header {
        @apply px-6 py-4 border-b border-border-dark;
    }

    .modal-body {
        @apply px-6 py-4;
    }

    .modal-footer {
        @apply px-6 py-4 border-t border-border-dark flex justify-end space-x-3;
    }

    /* Shopping Cart Badge */
    .cart-badge {
        @apply absolute -top-1 -right-1 bg-red-500 text-white text-xs rounded-full h-5 w-5 flex items-center justify-center font-medium;
    }

    /* Gradient Text */
    .gradient-text {
        background: linear-gradient(135deg, #ffffff 0%, #C9E4CA 50%, #87BBA2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Glass Effect */
    .glass-effect {
        @apply bg-white/5 backdrop-blur-md border border-white/10;
    }

    /* Utility Classes */
    .text-shadow {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .border-gradient {
        position: relative;
    }

        .border-gradient::before {
            content: '';
            position: absolute;
            inset: 0;
            padding: 1px;
            background: linear-gradient(135deg, #C9E4CA, #87BBA2);
            border-radius: inherit;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: xor;
        }
}

@layer utilities {
    /* Custom animations */
    .animate-float {
        animation: float 3s ease-in-out infinite;
    }

    .animate-glow-pulse {
        animation: glow-pulse 2s ease-in-out infinite alternate;
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes glow-pulse {
        0% {
            box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
        }

        100% {
            box-shadow: 0 0 30px rgba(34, 197, 94, 0.6), 0 0 40px rgba(59, 130, 246, 0.3);
        }
    }

    /* Scrollbar Styling */
    .scrollbar-thin {
        scrollbar-width: thin;
        scrollbar-color: #374151 #1f2937;
    }

        .scrollbar-thin::-webkit-scrollbar {
            width: 6px;
        }

        .scrollbar-thin::-webkit-scrollbar-track {
            background: #1f2937;
        }

        .scrollbar-thin::-webkit-scrollbar-thumb {
            background: #374151;
            border-radius: 3px;
        }

            .scrollbar-thin::-webkit-scrollbar-thumb:hover {
                background: #22c55e;
            }
}






























/* ── HERO VIDEO BACKGROUND ── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: brightness(0.7) saturate(1.2);
}
/* Remove the static glow divs since video replaces them */
.hero-glow, .hero-glow2 { display: none; }
/* ══ HERO ══ */
.hero{position:relative;min-height:580px;display:flex;align-items:center;justify-content:center;background:var(--dark);padding:60px 24px 72px}
.hero-grain{position:absolute;inset:0;opacity:.04;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");background-size:200px}
.hero-glow{position:absolute;top:-20%;left:30%;width:50%;height:80%;background:radial-gradient(ellipse,rgba(252,52,65,.18) 0%,transparent 70%);pointer-events:none}
.hero-glow2{position:absolute;bottom:0;right:10%;width:30%;height:50%;background:radial-gradient(ellipse,rgba(252,52,65,.1) 0%,transparent 70%);pointer-events:none}
.hero-content{position:relative;z-index:1;text-align:center;color:#fff;max-width:880px;width:100%}
.hero-badge{display:inline-flex;align-items:center;gap:8px;padding:7px 18px;background:rgba(252,52,65,.12);border:1px solid rgba(252,52,65,.3);border-radius:30px;font-size:11.5px;font-weight:700;letter-spacing:.9px;text-transform:uppercase;color:rgba(255,255,255,.85);margin-bottom:28px}
.hero-badge-dot{width:6px;height:6px;background:var(--accent);border-radius:50%;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.8)}}
.hero h1{font-size:clamp(40px,6vw,70px);font-weight:700;letter-spacing:-3px;line-height:1.0;margin-bottom:18px}
.hero h1 .red{color:var(--accent)}
.hero-sub{font-size:16px;color:rgba(255,255,255,.5);font-weight:400;margin-bottom:38px;line-height:1.65;max-width:480px;margin-left:auto;margin-right:auto}
.hero-search{display:flex;align-items:stretch;background:#fff;border-radius:8px;overflow:hidden;max-width:660px;margin:0 auto 22px;height:58px;box-shadow:0 8px 40px rgba(0,0,0,.45)}
.hero-search-tag{display:flex;align-items:center;gap:6px;padding:0 16px;border-right:1px solid var(--border);background:#fff;font-size:13px;font-weight:600;color:var(--text);white-space:nowrap;flex-shrink:0}
.hero-search-tag svg{width:15px;height:15px;fill:none;stroke:var(--text);stroke-width:2}
.hero-search input{flex:1;height:100%;padding:0 18px;border:none;font-family:'Outfit',sans-serif;font-size:15px;color:var(--text);outline:none;background:#fff;min-width:0}
.hero-search input::placeholder{color:#bbb}
.hero-search-btn{height:100%;padding:0 26px;border:none;background:var(--accent);color:#fff;font-size:14.5px;font-weight:700;display:flex;align-items:center;gap:7px;font-family:'Outfit',sans-serif;cursor:pointer;transition:background .15s;flex-shrink:0}
.hero-search-btn:hover{background:var(--accent-h)}
.hero-search-btn svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:2.5}
.hero-trending{font-size:12.5px;color:rgba(255,255,255,.4);display:flex;align-items:center;justify-content:center;gap:8px;flex-wrap:wrap}
.hero-trending strong{color:rgba(255,255,255,.35);font-weight:500}
.hero-trending a{color:rgba(255,255,255,.7);padding:4px 13px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.1);border-radius:20px;font-size:12px;transition:all .15s}
.hero-trending a:hover{background:rgba(255,255,255,.13);color:#fff}

/* ══ STATS BAR ══ */
.stats-bar{background:var(--dark2);border-bottom:1px solid rgba(255,255,255,.06)}
.stats-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:0}
.stat-item{display:flex;align-items:center;gap:10px;padding:18px 40px;border-right:1px solid rgba(255,255,255,.07)}
.stat-item:last-child{border-right:none}
.stat-num{font-size:22px;font-weight:800;color:#fff;letter-spacing:-.5px}
.stat-lbl{font-size:12px;color:rgba(255,255,255,.38);font-weight:400;line-height:1.3}

/* ══ SECTION BASE ══ */
.sec{padding:72px 24px}
.sec-white{background:var(--white)}
.sec-gray{background:var(--gray)}
.container{max-width:1320px;margin:0 auto}
.sec-title{font-size:clamp(25px, 4vw, 40px);font-weight:600;letter-spacing:-1.2px;line-height:1.1;color:var(--dark)}
.sec-sub{font-size:15px;color:var(--muted);margin-top:8px}


/* ── ONE PLATFORM SECTION ── */
.services-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:4px}
.svc-card{display:flex;align-items:center;gap:13px;padding:18px 14px;border-radius:8px;cursor:pointer;transition:background .15s;text-decoration:none;color:inherit}
.svc-card:hover{background:rgba(0,0,0,.04)}
.svc-thumb{width:84px;height:84px;border-radius:var(--radius);object-fit:cover;flex-shrink:0}
.svc-info h3{font-size:15px;font-weight:600;margin-bottom:4px;line-height:1.3;color:var(--dark)}
.svc-info p{font-size:12.5px;color:var(--muted);line-height:1.4}


/* ══ CONTENT AT YOUR FINGERTIPS ══ */
.fingertips-head{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:14px;margin-bottom:26px}
.btn-see-pricing{height:38px;padding:0 22px;border:1.5px solid var(--border);background:transparent;border-radius:30px;font-size:13px;font-weight:500;color:var(--text);transition:all .15s;cursor:pointer;font-family:'Outfit',sans-serif;white-space:nowrap}
.btn-see-pricing:hover{border-color:var(--text);background:var(--text);color:#fff}
.feat-car-wrap{position:relative}
.feat-car-viewport{overflow:hidden}
.feat-car-track{display:flex;gap:14px;transition:transform .45s cubic-bezier(.25,.46,.45,.94)}
.feat-card{flex:0 0 calc(25% - 10.5px);position:relative;border-radius:12px;overflow:hidden;cursor:pointer;background:#ddd;aspect-ratio:4/5}
.feat-card img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease;display:block}
.feat-card:hover img{transform:scale(1.06)}
.feat-card-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.72) 0%,rgba(0,0,0,.15) 50%,transparent 100%);transition:background .3s}
.feat-card:hover .feat-card-overlay{background:linear-gradient(to top,rgba(0,0,0,.88) 0%,rgba(0,0,0,.4) 55%,rgba(0,0,0,.08) 100%)}
.feat-card-info{position:absolute;bottom:0;left:0;right:0;padding:22px 18px}
.feat-card-info h3{font-size:18px;font-weight:700;color:#fff;letter-spacing:-.2px;line-height:1.2}
.feat-card-arrow{position:absolute;right:14px;bottom:22px;width:32px;height:32px;background:rgba(255,255,255,.15);border-radius:50%;display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .2s;backdrop-filter:blur(8px)}
.feat-card:hover .feat-card-arrow{opacity:1}
.feat-card-arrow svg{width:13px;height:13px;fill:none;stroke:#fff;stroke-width:2.5}

/* ══ CAROUSEL ARROWS ══ */
.car-arrow{position:absolute;top:50%;transform:translateY(-50%);width:42px;height:42px;background:#fff;border:1px solid var(--border);border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:20;box-shadow:0 2px 14px rgba(0,0,0,.14);transition:box-shadow .15s}
.car-arrow:hover{box-shadow:0 4px 24px rgba(0,0,0,.22)}
.car-arrow svg{width:16px;height:16px;fill:none;stroke:var(--text);stroke-width:2.5}
.car-prev{left:-21px}
.car-next{right:-21px}

/* ══ AI CREATIVE STUDIO (BENTO) ══ */
.bento-grid{display:grid;grid-template-columns:repeat(3,1fr);grid-template-rows:420px 280px 320px;gap:12px}
.bento-card{position:relative;overflow:hidden;border-radius:14px;cursor:pointer;background:#ddd}
.bento-card img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;display:block}
.bento-card:hover img{transform:scale(1.06)}
.bento-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.82) 0%,rgba(0,0,0,.2) 45%,transparent 100%);transition:background .3s}
.bento-card:hover .bento-overlay{background:linear-gradient(to top,rgba(0,0,0,.92) 0%,rgba(0,0,0,.4) 55%,rgba(0,0,0,.05) 100%)}
.bento-info{position:absolute;bottom:0;left:0;right:0;padding:24px 22px}
.bento-tag{display:inline-flex;align-items:center;padding:4px 12px;background:var(--accent);color:#fff;font-size:10.5px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;border-radius:20px;margin-bottom:10px}
.bento-info h3{font-size:clamp(16px,1.8vw,22px);font-weight:800;color:#fff;letter-spacing:-.4px;line-height:1.15}
.bento-info p{font-size:13px;color:rgba(255,255,255,.6);margin-top:5px}
/* Bento positions */
.b1{grid-column:1/3;grid-row:1}
.b2{grid-column:3;grid-row:1}
.b3{grid-column:1;grid-row:2}
.b4{grid-column:2;grid-row:2}
.b5{grid-column:3;grid-row:2}
.b6{grid-column:1/3;grid-row:3}
.b7{grid-column:3;grid-row:3}

/* ══ EXPLORE ══ */
.explore-top-row{gap:12px;margin-bottom:18px}
.explore-tabs{display:flex;align-items:center;gap:7px;overflow-x:auto;scrollbar-width:none;padding-bottom:3px}
.explore-tabs::-webkit-scrollbar{display:none}
.e-tab{display:inline-flex;align-items:center;gap:6px;padding:7px 16px;border-radius:24px;border:1.5px solid var(--border);background:transparent;font-size:13px;font-weight:500;color:var(--muted);cursor:pointer;transition:all .15s;white-space:nowrap;font-family:'Outfit',sans-serif}
.e-tab:hover{background:rgba(0,0,0,.04);color:var(--text)}
.e-tab.active{background:var(--text);border-color:var(--text);color:#fff}
.e-tab svg{width:13px;height:13px;fill:none;stroke:currentColor;stroke-width:2}
.sort-tabs{display:flex;border:1.5px solid var(--border);border-radius:6px;overflow:hidden;flex-shrink:0}
.sort-tab{padding:7px 15px;background:transparent;border:none;font-size:13px;font-weight:500;color:var(--muted);cursor:pointer;transition:all .15s;font-family:'Outfit',sans-serif}
.sort-tab.active{background:var(--text);color:#fff}
.masonry-wrap{position:relative;max-height:620px;overflow:hidden}
.masonry-cols{display:flex;gap:8px}
.masonry-col{flex:1;display:flex;flex-direction:column;gap:8px}
.m-card{position:relative;border-radius:var(--radius);overflow:hidden;cursor:pointer;background:#ddd}
.m-card img{width:100%;height:auto;display:block;transition:transform .35s ease}
.m-card:hover img{transform:scale(1.03)}
.m-card-ov{position:absolute;inset:0;background:rgba(0,0,0,.38);opacity:0;transition:opacity .25s;display:flex;align-items:flex-end;padding:10px}
.m-card:hover .m-card-ov{opacity:1}
.m-card-ov button{width:100%;padding:9px;background:#fff;border:none;border-radius:5px;font-size:12.5px;font-weight:600;color:var(--text);font-family:'Outfit',sans-serif;cursor:pointer}
.masonry-fade{position:absolute;bottom:0;left:0;right:0;height:180px;background:linear-gradient(transparent,var(--gray));pointer-events:none;z-index:10}
.see-more-wrap{display:flex;justify-content:center;padding-top:28px}
.btn-see-more{height:44px;padding:0 32px;border:1.5px solid var(--border);background:var(--white);border-radius:6px;font-size:14px;font-weight:500;color:var(--text);cursor:pointer;font-family:'Outfit',sans-serif;transition:background .15s}
.btn-see-more:hover{background:var(--gray)}

/* ══ COLLECTIONS ══ */
.coll-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:30px}
.btn-see-all{height:38px;padding:0 22px;border:1.5px solid var(--border);background:transparent;border-radius:30px;font-size:13px;font-weight:500;color:var(--muted);cursor:pointer;font-family:'Outfit',sans-serif;transition:all .15s}
.btn-see-all:hover{color:var(--text);border-color:var(--text)}
.coll-car-wrap{position:relative}
.coll-car-viewport{overflow:hidden}
.coll-car-track{display:flex;gap:14px;transition:transform .45s cubic-bezier(.25,.46,.45,.94)}
.coll-card{flex:0 0 calc(25% - 10.5px);position:relative;border-radius:12px;overflow:hidden;cursor:pointer;background:#ddd;aspect-ratio:3/4}
.coll-card img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease !important;display:block}
.coll-card:hover img{transform:scale(1.06)}
.coll-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.72) 0%,rgba(0,0,0,.08) 55%,transparent 100%);transition:background .3s}
.coll-card:hover .coll-overlay{background:linear-gradient(to top,rgba(0,0,0,.88) 0%,rgba(0,0,0,.25) 60%,transparent 100%)}
.coll-icon{position:absolute;top:14px;left:14px;width:32px;height:32px;background:rgba(255,255,255,.15);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.2);border-radius:7px;display:flex;align-items:center;justify-content:center}
.coll-icon svg{width:15px;height:15px;fill:none;stroke:#fff;stroke-width:2}
.coll-info{position:absolute;bottom:0;left:0;right:0;padding:24px 18px}
.coll-info h3{font-size:18px;font-weight:700;color:#fff;letter-spacing:-.3px;line-height:1.2}

/* ── MULTI SECTION ── */
.multi-head{margin-bottom:28px}
.multi-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.multi-card{display:flex;align-items:center;gap:13px;padding:16px;border-radius:8px;text-decoration:none;color:inherit;cursor:pointer;transition:background .15s}
.multi-card:hover{background:rgba(0,0,0,.03)}
.multi-thumb{width:68px;height:68px;border-radius:var(--radius);object-fit:cover;flex-shrink:0}
.multi-info h3{font-size:15px;font-weight:600;margin-bottom:4px;color:var(--dark)}
.multi-info p{font-size:12.5px;color:var(--muted)}


/* ══ PRICING ══ */
.pricing-wrap{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;max-width:1060px;margin:0 auto}
.price-card{border:1.5px solid var(--border);border-radius:14px;padding:34px;background:#fff;position:relative;transition:box-shadow .2s}
.price-card:hover{box-shadow:0 8px 40px rgba(0,0,0,.1)}
.price-card.featured{background:var(--dark);border-color:var(--dark)}
.price-badge{position:absolute;top:-14px;left:50%;transform:translateX(-50%);background:var(--accent);color:#fff;font-size:10.5px;font-weight:700;letter-spacing:.6px;text-transform:uppercase;padding:6px 16px;border-radius:30px;white-space:nowrap}
.price-tier{font-size:10.5px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--light);margin-bottom:12px;display:block}
.price-card.featured .price-tier{color:rgba(255,255,255,.4)}
.price-amount{display:flex;align-items:flex-end;gap:2px;margin-bottom:4px}
.price-dollar{font-size:44px;font-weight:900;letter-spacing:-2.5px;line-height:1;color:var(--text)}
.price-card.featured .price-dollar{color:#fff}
.price-period{font-size:14px;color:var(--muted);font-weight:400;padding-bottom:5px}
.price-card.featured .price-period{color:rgba(255,255,255,.4)}
.price-billing{font-size:12.5px;color:var(--muted);margin-bottom:24px}
.price-card.featured .price-billing{color:rgba(255,255,255,.35)}
.price-list{list-style:none;margin-bottom:28px;display:flex;flex-direction:column;gap:10px}
.price-list li{display:flex;align-items:flex-start;gap:9px;font-size:13.5px;color:var(--text)}
.price-card.featured .price-list li{color:rgba(255,255,255,.8)}
.price-check{color:var(--accent);font-weight:700;font-size:15px;line-height:1.35;flex-shrink:0}
.price-btn{width:100%;height:46px;border:1.5px solid var(--border);background:transparent;border-radius:7px;font-size:14px;font-weight:600;color:var(--text);cursor:pointer;font-family:'Outfit',sans-serif;transition:all .15s}
.price-btn:hover{background:var(--text);border-color:var(--text);color:#fff}
.price-btn.primary{background:var(--accent);border-color:var(--accent);color:#fff}
.price-btn.primary:hover{background:var(--accent-h);border-color:var(--accent-h)}
.price-compare{text-align:center;margin-top:20px;font-size:13px;color:var(--muted)}
.price-compare a{color:var(--accent)}

/* ══ CTA SECTION ══ */
.cta-sec{background:var(--accent);padding:90px 24px;text-align:center;position:relative;overflow:hidden}
.cta-watermark{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:clamp(100px,18vw,200px);font-weight:900;letter-spacing:-8px;color:rgba(255,255,255,.07);white-space:nowrap;pointer-events:none;user-select:none}
.cta-inner{position:relative;z-index:1;max-width:560px;margin:0 auto}
.cta-inner h2{font-size:clamp(30px,4.5vw,52px);font-weight:900;color:#fff;letter-spacing:-2px;line-height:1.05;margin-bottom:14px}
.cta-inner p{font-size:15px;color:rgba(255,255,255,.72);margin-bottom:36px;line-height:1.65}
.cta-btns{display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap}
.btn-cta-w{height:50px;padding:0 32px;background:#fff;border:none;border-radius:7px;font-size:15px;font-weight:700;color:var(--accent);cursor:pointer;font-family:'Outfit',sans-serif;transition:all .15s}
.btn-cta-w:hover{background:rgba(255,255,255,.9)}
.btn-cta-o{height:50px;padding:0 32px;background:transparent;border:2px solid rgba(255,255,255,.45);border-radius:7px;font-size:15px;font-weight:700;color:#fff;cursor:pointer;font-family:'Outfit',sans-serif;transition:all .15s}
.btn-cta-o:hover{border-color:#fff;background:rgba(255,255,255,.1)}

/* ══ FOOTER ══ */
.footer{background:var(--dark);color:#fff;padding:64px 24px 0;border-top:3px solid var(--accent)}
.footer-inner{max-width:1320px;margin:0 auto}
.footer-top{display:grid;grid-template-columns:280px repeat(5,1fr);gap:44px;padding-bottom:48px;border-bottom:1px solid rgba(255,255,255,.07)}
.footer-brand .logo{color:#fff;margin-bottom:14px}
.footer-brand p{font-size:13.5px;color:rgba(255,255,255,.4);line-height:1.7;margin-bottom:22px}
.foot-email{display:flex;gap:8px}
.foot-input{flex:1;height:42px;padding:0 14px;border:1px solid rgba(255,255,255,.13);background:rgba(255,255,255,.05);border-radius:6px;color:#fff;font-family:'Outfit',sans-serif;font-size:13.5px;outline:none;min-width:0}
.foot-input::placeholder{color:rgba(255,255,255,.28)}
.foot-sub-btn{height:42px;padding:0 16px;background:var(--accent);border:none;border-radius:6px;color:#fff;font-size:13px;font-weight:600;cursor:pointer;font-family:'Outfit',sans-serif;flex-shrink:0}
.foot-sub-btn:hover{background:var(--accent-h)}
.footer-col h4{font-size:10.5px;font-weight:700;letter-spacing:1.6px;text-transform:uppercase;color:rgba(255,255,255,.65);margin-bottom:18px}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:12px}
.footer-col ul li a{font-size:13.5px;color:rgba(255,255,255,.38);transition:color .15s}
.footer-col ul li a:hover{color:rgba(255,255,255,.82)}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;padding:20px 0;flex-wrap:wrap;gap:14px}
.footer-bottom p{font-size:12.5px;color:rgba(255,255,255,.28)}
.footer-socials{display:flex;gap:7px}
.social-btn{width:34px;height:34px;border:1px solid rgba(255,255,255,.13);background:rgba(255,255,255,.04);border-radius:5px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .15s}
.social-btn:hover{background:rgba(255,255,255,.12)}
.social-btn svg{width:14px;height:14px;fill:rgba(255,255,255,.45)}
.social-btn:hover svg{fill:#fff}

/* ══ MOBILE SHEET ══ */
.mob-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.6);z-index:1900;opacity:0;transition:opacity .3s}
.mob-overlay.open{display:block;opacity:1}
.mob-sheet{position:fixed;bottom:0;left:0;right:0;background:#fff;border-radius:20px 20px 0 0;z-index:1901;transform:translateY(100%);transition:transform .38s cubic-bezier(.25,.46,.45,.94);max-height:90vh;overflow-y:auto}
.mob-sheet.open{transform:translateY(0)}
.mob-handle{display:flex;justify-content:center;padding:12px 0 4px}
.mob-handle div{width:38px;height:4px;background:var(--border);border-radius:2px}
.mob-head{padding:10px 20px 14px;border-bottom:1px solid var(--border);display:flex;justify-content:space-between;align-items:center}
.mob-close{width:32px;height:32px;background:var(--gray);border:none;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer}
.mob-close svg{width:14px;height:14px;fill:none;stroke:var(--text);stroke-width:2.5}
.mob-nav{padding:8px 20px}
.mob-lbl{font-size:10.5px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--light);padding:16px 0 6px;display:block}
.mob-nav a{display:flex;align-items:center;justify-content:space-between;padding:13px 0;font-size:15px;font-weight:500;color:var(--text);border-bottom:1px solid var(--border);text-decoration:none}
.mob-nav a svg{width:13px;height:13px;fill:none;stroke:var(--muted);stroke-width:2.5;opacity:.45}
.mob-nav a:last-child{border-bottom:none}
.mob-actions{padding:12px 20px 36px;display:flex;flex-direction:column;gap:10px}
.mob-btn-login{width:100%;height:46px;font-size:15px;border-radius:6px;background:transparent;border:1.5px solid var(--border);color:var(--text);cursor:pointer;font-family:'Outfit',sans-serif}
.mob-btn-signup{width:100%;height:46px;font-size:15px;border-radius:6px;background:var(--accent);border:none;color:#fff;cursor:pointer;font-family:'Outfit',sans-serif;font-weight:600}

/* ══ RESPONSIVE ══ */
@media(max-width:1200px){
  .services-grid{grid-template-columns:repeat(4,1fr)}
  .multi-grid{grid-template-columns:repeat(3,1fr)}
  .feat-card{flex:0 0 calc(25.33% - 9.4px)}
  .bento-grid{grid-template-rows:360px 250px 290px}
  .footer-top{grid-template-columns:240px repeat(3,1fr)}
}
@media(max-width:900px){
  .header-nav{display:none}
  .hamburger{display:flex}
  /* .btn-login,.btn-signup{display:none} */
  .feat-card{flex:0 0 calc(50% - 7px)}
  .services-grid{grid-template-columns:repeat(3,1fr)}
  .multi-grid{grid-template-columns:repeat(2,1fr)}
  .coll-card{flex:0 0 calc(50% - 7px)}
  .bento-grid{grid-template-columns:repeat(2,1fr);grid-template-rows:auto}
  .b1{grid-column:1/3;grid-row:auto;height:340px}
  .b2{grid-column:1;grid-row:auto;height:280px}
  .b3{grid-column:2;grid-row:auto;height:280px}
  .b4{grid-column:1;grid-row:auto;height:250px}
  .b5{grid-column:2;grid-row:auto;height:250px}
  .b6{grid-column:1/3;grid-row:auto;height:300px}
  .b7{grid-column:1/3;grid-row:auto;height:250px}
  .pricing-wrap{grid-template-columns:1fr;max-width:460px;margin:0 auto}
  .footer-top{grid-template-columns:1fr 1fr 1fr;gap:24px}
  .footer-brand{grid-column:1/-1}
  .stat-item{padding:14px 22px}
}
@media(max-width:640px){
  .hero{min-height:480px;padding:48px 16px 60px}
  .hero h1{font-size:38px;letter-spacing:-2px}
  .sec{padding:52px 16px}
  .feat-card{flex:0 0 calc(80% - 7px)}
  .services-grid{grid-template-columns:repeat(2,1fr);gap:2px}
  .multi-grid{grid-template-columns:1fr 1fr}
  .coll-card{flex:0 0 calc(72% - 7px)}
  .bento-grid{grid-template-columns:1fr}
  .b1,.b2,.b3,.b4,.b5,.b6,.b7{grid-column:1!important;grid-row:auto!important;height:260px}
  .b1,.b6{height:290px}
  .footer-top{grid-template-columns:1fr 1fr;gap:20px}
  .footer-bottom{flex-direction:column;text-align:center}
  .stats-inner{overflow-x:auto;flex-wrap:nowrap;justify-content:flex-start;padding:0 16px}
  .stat-item{flex-shrink:0}
  .car-prev{left:-12px}.car-next{right:-12px}
}
@media(max-width:420px){
    .hero-search-tag{
        display: none;
    }
    .hero-search-btn{
        padding: 0 18px;
    }
  .fingertips-head{flex-direction:column;align-items:flex-start}
  .services-grid{grid-template-columns:1fr}
  .multi-grid{grid-template-columns:1fr}
  .mega-sub-grid{grid-template-columns:1fr 1fr}
  .coll-head{flex-direction:column;align-items:flex-start;gap:12px  }
}



/* ================================================================
   SKELETON LOADERS — for masonry, tabs, and collections carousel
   ================================================================ */

/* Base shimmer animation */
@keyframes shimmer {
    0%   { background-position: -800px 0; }
    100% { background-position:  800px 0; }
}

.skeleton {
    background: linear-gradient(
        90deg,
        #e8e8e8 25%,
        #f5f5f5 50%,
        #e8e8e8 75%
    );
    background-size: 800px 100%;
    animation: shimmer 1.4s infinite linear;
    border-radius: var(--radius, 8px);
}

/* ── Masonry skeleton cards ── */
.masonry-skeleton-wrap {
    display: flex;
    gap: 8px;
}

.masonry-skeleton-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skeleton-card {
    width: 100%;
    border-radius: 8px;
    background: linear-gradient(
        90deg,
        #e8e8e8 25%,
        #f5f5f5 50%,
        #e8e8e8 75%
    );
    background-size: 800px 100%;
    animation: shimmer 1.4s infinite linear;
}

/* ── Tab skeleton pills ── */
.skeleton-tab {
    display: inline-block;
    height: 34px;
    border-radius: 24px;
    background: linear-gradient(
        90deg,
        #e8e8e8 25%,
        #f5f5f5 50%,
        #e8e8e8 75%
    );
    background-size: 800px 100%;
    animation: shimmer 1.4s infinite linear;
    flex-shrink: 0;
}

/* ── Collection card skeleton ── */
.coll-card-skeleton {
    flex: 0 0 calc(25% - 10.5px);
    border-radius: 12px;
    aspect-ratio: 3/4;
    background: linear-gradient(
        90deg,
        #e8e8e8 25%,
        #f5f5f5 50%,
        #e8e8e8 75%
    );
    background-size: 800px 100%;
    animation: shimmer 1.4s infinite linear;
    flex-shrink: 0;
}

/* Responsive collection skeletons */
@media (max-width: 900px) {
    .coll-card-skeleton { flex: 0 0 calc(50% - 7px); }
}
@media (max-width: 640px) {
    .coll-card-skeleton { flex: 0 0 calc(72% - 7px); }
}

/* ── Masonry image fade-in on load ── */
.m-card img {
    opacity: 0;
    transition: opacity 0.35s ease;
}

.m-card img.img-loaded {
    opacity: 1;
}