/* Shared Brand Pages Styles (Una + Clorofast) */

/* ── Brand Hero ── */
.brand-hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 72vh;
    display: flex;
    align-items: center;
}

.brand-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 450px;
    height: 450px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    pointer-events: none;
}

.brand-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}

.una-hero   { background: linear-gradient(135deg, #1a2760 0%, #283b87 55%, #3d52a8 100%); }
.cloro-hero { background: linear-gradient(135deg, #075985 0%, #0ea5e9 55%, #7dd3fc 100%); }

.brand-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.brand-hero-text { color: white; }

.brand-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    color: white;
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
}

.brand-hero-text h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.15;
}

.brand-sub {
    font-size: 1.3rem;
    font-weight: 600;
    opacity: 0.92;
    margin-bottom: 12px;
}

.brand-desc {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 480px;
}

.brand-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-brand-white {
    background: white;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.una-hero   .btn-brand-white { color: #283b87; }
.cloro-hero .btn-brand-white { color: #0284c7; }

.btn-brand-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}

.btn-brand-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.7);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-brand-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

.brand-hero-image {
    text-align: center;
    position: relative;
    z-index: 2;
}

.brand-hero-image img {
    max-height: 440px;
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.25));
    animation: float 4s ease-in-out infinite;
}

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

/* ── Why Section ── */
.why-section {
    padding: 90px 0;
    background: var(--gray-50);
}

.why-intro {
    max-width: 750px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.9;
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.feature-card-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.93rem;
    line-height: 1.7;
}

.una-features .feature-card   { border-bottom-color: #283b87; }
.una-features .feature-card h3 { color: #283b87; }
.cloro-features .feature-card  { border-bottom-color: #0ea5e9; }
.cloro-features .feature-card h3 { color: #0369a1; }

/* ── Sizes / Variants Section ── */
.sizes-section {
    padding: 90px 0;
    background: white;
}

.sizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.size-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.35s ease;
    background: white;
    position: relative;
}

.size-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.size-card-top {
    padding: 0;
    text-align: center;
    color: white;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 20px;
}

/* Image slider inside size card */
.card-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
}

.card-slides {
    display: flex;
    width: 200%;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.card-slides img {
    width: 50%;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

/* Text + dots overlay at the bottom of the card image */
.card-text-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.12) 55%, transparent 100%);
    padding: 36px 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.card-dots {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.card-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    border: 1.5px solid rgba(255,255,255,0.75);
}

.card-dot.active {
    background: #fff;
    transform: scale(1.35);
}

.size-label {
    display: inline-block;
    background: rgba(255,255,255,0.22);
    border: 1px solid rgba(255,255,255,0.45);
    padding: 5px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 10px;
    backdrop-filter: blur(4px);
    position: relative;
    z-index: 1;
}

.size-card-top h3 {
    font-size: 1.35rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.bestseller-tag {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    background: var(--primary-orange);
    color: white;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(234,88,12,0.4);
}

.size-card-body {
    padding: 28px;
}

.size-features-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 24px;
}

.size-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    font-size: 0.94rem;
}

.size-features-list li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 800;
    color: white;
}

/* Una gradient tops */
.una-750 .size-card-top,
.una-2l  .size-card-top,
.una-4l  .size-card-top  { background: #ffffff; color: #1e293b; }

.una-750 .size-label,
.una-2l  .size-label,
.una-4l  .size-label     { background: rgba(0,0,0,0.08); border-color: rgba(0,0,0,0.15); color: #1e293b; }

.una-750 .size-card-top h3,
.una-2l  .size-card-top h3,
.una-4l  .size-card-top h3 { text-shadow: none; color: #1e293b; }

/* Una cards use light overlay (white bg shows through) */
.una-750 .card-text-overlay,
.una-2l  .card-text-overlay,
.una-4l  .card-text-overlay {
    background: linear-gradient(to top, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.55) 55%, transparent 100%);
}

.una-750 .card-dot,
.una-2l  .card-dot,
.una-4l  .card-dot {
    background: rgba(30,41,59,0.18);
    border-color: rgba(30,41,59,0.35);
}

.una-750 .card-dot.active,
.una-2l  .card-dot.active,
.una-4l  .card-dot.active {
    background: #1e293b;
    border-color: #1e293b;
    transform: scale(1.35);
}

.una-sizes .size-features-list li::before { background: #283b87; }

/* Clorofast gradient tops */
.cloro-white .size-card-top { background: linear-gradient(135deg, #0369a1, #0ea5e9); }
.cloro-color .size-card-top { background: linear-gradient(135deg, #be185d, #ec4899); }
.cloro-multi .size-card-top { background: linear-gradient(135deg, #0f766e, #14b8a6); }

.cloro-white .size-features-list li::before { background: #0ea5e9; }
.cloro-color .size-features-list li::before { background: #ec4899; }
.cloro-multi .size-features-list li::before { background: #14b8a6; }

/* ── Scents (Una only) ── */
.scents-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f0f3ff, #dce4f9);
}

.scents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 680px;
    margin: 40px auto 0;
}

.scent-card {
    background: white;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.scent-card:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}

.scent-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 14px;
}

.scent-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.scent-card p {
    color: var(--gray-500);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ── Una Breeze Section ── */
.breeze-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
}
.breeze-section .section-tag { background: rgba(124,58,237,0.12); color: #7c3aed; }

.breeze-intro {
    text-align: center;
    color: var(--gray-500);
    max-width: 580px;
    margin: 0 auto 40px;
    font-size: 1rem;
    line-height: 1.7;
}

.breeze-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.breeze-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.breeze-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.breeze-card-top {
    padding: 28px 20px 18px;
    text-align: center;
}
.breeze-emoji {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 10px;
}
.breeze-size-badge {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.4);
}
.breeze-card-body {
    padding: 18px 20px 22px;
    text-align: center;
}
.breeze-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}
.breeze-tagline {
    font-size: 0.82rem;
    color: var(--gray-400);
    margin-bottom: 16px;
}

/* Scent gradient tops */
.breeze-musk       { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.breeze-dream      { background: linear-gradient(135deg, #4f46e5, #818cf8); }
.breeze-peach      { background: linear-gradient(135deg, #ea580c, #fb923c); }
.breeze-oud        { background: linear-gradient(135deg, #92400e, #d97706); }
.breeze-watermelon { background: linear-gradient(135deg, #be123c, #fb7185); }
.breeze-radiance   { background: linear-gradient(135deg, #0f766e, #34d399); }

/* Breeze sub-section inside products page */
.breeze-sub-section {
    margin-top: 40px;
    padding-top: 36px;
    border-top: 2px dashed #ede9fe;
}
.breeze-sub-header {
    margin-bottom: 24px;
}
.breeze-sub-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 4px;
}
.breeze-sub-header p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .brand-hero-layout { grid-template-columns: 1fr; text-align: center; }
    .brand-hero-image  { display: none; }
    .brand-hero        { min-height: auto; padding: 140px 0 80px; }
    .brand-desc        { max-width: 100%; }
    .brand-hero-btns   { justify-content: center; }
}

@media (max-width: 640px) {
    .sizes-grid   { grid-template-columns: 1fr; }
    .scents-grid  { grid-template-columns: 1fr 1fr; }
    .features-cards { grid-template-columns: 1fr; }
    .breeze-grid  { grid-template-columns: 1fr 1fr; }

    .size-card-top {
        min-height: 260px;
    }

    .card-text-overlay {
        padding: 24px 16px 12px;
    }

    .size-label {
        font-size: 0.9rem;
        padding: 4px 14px;
    }

    .size-card-top h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .size-card-top {
        min-height: 220px;
    }
}
@media (max-width: 480px) {
    .breeze-grid  { grid-template-columns: 1fr; }
}
