/* ========================================
   Brand Landing Pages CSS v1.0
   Pages: /thikes-karl-lagerfeld-guess/
          /guess-collection/
          /karl-lagerfeld-collection/
   ======================================== */

/* Hero with Image */
.brand-hero-container {
    position: relative;
    overflow: hidden;
    max-height: 520px;
}
.brand-hero-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.brand-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 6%;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
}
.brand-hero-overlay h1 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin: 0 0 12px;
    max-width: 520px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
    line-height: 1.2;
}
.brand-hero-overlay .hero-sub {
    color: rgba(255,255,255,0.9);
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    max-width: 450px;
    margin: 0 0 22px;
    line-height: 1.6;
}
.brand-hero-btn {
    display: inline-block;
    padding: 13px 34px;
    background: #fff;
    color: #1a1a2e;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    border: none;
}
.brand-hero-btn:hover {
    background: #1882c0;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24,130,192,0.35);
}

/* Gradient Hero (individual brand pages) */
.brand-gradient-hero {
    padding: 55px 6%;
    display: flex;
    align-items: center;
    gap: 50px;
    min-height: 320px;
}
.brand-gradient-hero.guess-gradient {
    background: linear-gradient(135deg, #faf5ef 0%, #e8d5c0 50%, #d4a574 100%);
}
.brand-gradient-hero.kl-gradient {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 50%, #16213e 100%);
}
.brand-gradient-hero .brand-logo-wrap {
    flex-shrink: 0;
}
.brand-gradient-hero .brand-logo-wrap img {
    max-width: 180px;
    height: auto;
}
.brand-gradient-hero.kl-gradient .brand-logo-wrap img {
    filter: brightness(0) invert(1);
}
.brand-gradient-hero .hero-text h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.2;
}
.brand-gradient-hero.guess-gradient .hero-text h1 { color: #3a2a1a; }
.brand-gradient-hero.kl-gradient .hero-text h1 { color: #fff; }
.brand-gradient-hero .hero-text p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 460px;
    margin: 0 0 18px;
}
.brand-gradient-hero.guess-gradient .hero-text p { color: #6a5a4a; }
.brand-gradient-hero.kl-gradient .hero-text p { color: rgba(255,255,255,0.75); }
.brand-gradient-hero .hero-stat {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 8px;
}
.guess-gradient .hero-stat {
    background: rgba(58,42,26,0.1);
    color: #3a2a1a;
}
.kl-gradient .hero-stat {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
}

/* Style Cards */
.brand-style-card {
    position: relative;
    cursor: pointer;
    border-radius: 14px;
    overflow: hidden;
    min-height: 160px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 28px 18px;
    text-decoration: none !important;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.brand-style-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}
.brand-style-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
    z-index: 1;
}
.brand-style-card:hover::after {
    left: 100%;
}
.style-icon-wrap {
    margin-bottom: 10px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-style-card .style-emoji {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}
.brand-style-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 4px;
    color: #1a1a2e;
}
.brand-style-card .style-count {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

/* Card color themes */
.style-card-gold {
    background: linear-gradient(135deg, #fdf6e3, #f5e6d3);
    border: 1px solid rgba(166,124,82,0.1);
}
.style-card-pink {
    background: linear-gradient(135deg, #fef0f5, #fad0e0);
    border: 1px solid rgba(245,169,199,0.15);
}
.style-card-dark { background: linear-gradient(135deg, #2d2d44, #1a1a2e); }
.style-card-dark h3, .style-card-dark .style-count { color: #fff !important; }
.style-card-dark .style-count { color: rgba(255,255,255,0.6) !important; }
.style-card-blue {
    background: linear-gradient(135deg, #e8f4fd, #cce5f6);
    border: 1px solid rgba(30,136,229,0.1);
}
.style-card-silver {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    border: 1px solid rgba(136,136,136,0.1);
}
.style-card-purple { background: linear-gradient(135deg, #f3e8ff, #e0d0f5); }

/* Trust mini-bar (flex container) */
.brand-trust-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}
.brand-trust-item {
    text-align: center;
    padding: 8px 0;
    flex: 1;
    max-width: 300px;
}
.brand-trust-item .trust-icon {
    margin-bottom: 6px;
}
.brand-trust-item .trust-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a2e;
    margin: 0 0 2px;
}
.brand-trust-item .trust-sub {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}
/* Dark trust bar overrides */
.brand-trust-dark .brand-trust-item .trust-label {
    color: #fff;
}
.brand-trust-dark .brand-trust-item .trust-sub {
    color: rgba(255,255,255,0.55);
}

/* Section titles */
.brand-section-title {
    text-align: center;
    margin-bottom: 30px;
}
.brand-section-title h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.brand-section-title .section-sub {
    font-size: 0.95rem;
    color: #888;
    margin: 0;
}

/* Brand story */
.brand-story-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    color: #555;
    font-size: 1rem;
}

/* SEO text */
.brand-seo-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: #666;
    font-size: 0.92rem;
}
.brand-seo-text h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 12px;
}

/* WOOF section override */
.brand-woof-section .woof_container {
    margin-bottom: 20px;
}

/* Cross-links section styling */
.vc_custom_gcross a:hover,
.vc_custom_bcross a:hover,
.vc_custom_klcross a:hover {
    background: #1882c0 !important;
    color: #fff !important;
    border-color: #1882c0 !important;
    transform: translateY(-1px);
}

/* Ultrawide (2K+) */
@media (min-width: 1920px) {
    .brand-hero-container {
        max-height: 600px;
    }
    .brand-hero-overlay {
        padding: 0 8%;
    }
    .brand-hero-overlay h1 {
        font-size: 3.2rem;
        max-width: 600px;
    }
    .brand-hero-overlay .hero-sub {
        font-size: 1.2rem;
        max-width: 520px;
    }
    .brand-hero-btn {
        padding: 16px 42px;
        font-size: 1.05rem;
    }
    .brand-style-card {
        min-height: 180px;
        padding: 32px 22px;
    }
    .brand-style-card h3 {
        font-size: 1.1rem;
    }
    .brand-section-title h2 {
        font-size: 1.6rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .brand-hero-container { max-height: 280px; }
    .brand-hero-overlay { padding: 0 4%; }
    .brand-hero-overlay h1 { font-size: 1.4rem; max-width: 260px; }
    .brand-hero-overlay .hero-sub { display: none; }
    .brand-hero-btn { padding: 10px 24px; font-size: 0.85rem; }
    .brand-gradient-hero {
        flex-direction: column;
        text-align: center;
        padding: 35px 5%;
        min-height: auto;
        gap: 20px;
    }
    .brand-gradient-hero .brand-logo-wrap img { max-width: 130px; }
    .brand-gradient-hero .hero-text p { max-width: 100%; }
    .brand-style-card { min-height: 130px; padding: 20px 12px; }
    .brand-style-card .style-emoji { font-size: 1.6rem; }
    .brand-section-title h2 { font-size: 1.3rem; }
    .brand-trust-flex {
        gap: 8px;
        padding: 0 8px;
    }
    .brand-trust-item .trust-label {
        font-size: 0.8rem;
    }
    .brand-trust-item .trust-sub {
        font-size: 0.7rem;
    }
    .style-icon-wrap {
        height: 40px;
    }
}
@media (max-width: 480px) {
    .brand-hero-container { max-height: 200px; }
    .brand-hero-overlay h1 { font-size: 1.2rem; }
}
