/* =========================================================
   VELORA FASHION BOUTIQUE
   GLOBAL STYLE.CSS
   Home 1 | Home 2 | Shop | New Arrivals | Sale
   Style Guide | Contact | Login | Register
========================================================= */

/* =========================================================
   GOOGLE FONT
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --primary: #b07a5a;
    --primary-dark: #8d5d43;
    --secondary: #e8d8ca;

    --bg-color: #faf8f5;
    --bg-secondary: #f1ece6;
    --card-bg: #ffffff;

    --text-color: #333333;
    --text-light: #777777;
    --heading-color: #202020;

    --border-color: #ded8d1;

    --white: #ffffff;
    --black: #111111;

    --success: #3d8b61;
    --danger: #c84c4c;

    --container-width: 1200px;

    --font-heading: "Cormorant Garamond", serif;
    --font-body: "Montserrat", sans-serif;

    --transition: all 0.3s ease;

    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 12px 35px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    transition: var(--transition);
}

/* FIXED NAVBAR SPACE */
body:has(.site-header) {
    padding-top: 82px;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
}

/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(92%, var(--container-width));
    margin: 0 auto;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    line-height: 1.15;
    font-weight: 600;
}

h1 {
    font-size: 70px
}

h2 {
    font-size: clamp(2.3rem, 4vw, 4rem);
}

h3 {
    font-size: 1.8rem;
}

p {
    color: var(--text-light);
    text-align: justify;
    padding-left: 5px;
    
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}


/* =========================================================
   SECTION
========================================================= */

.section {
    padding: 50px 0;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 15px;
    padding-left: 60px;
}

.section-heading p {
    max-width: 580px;
    margin: 0 auto;
    padding-left: 90px;
}
/* =========================================================
   ANNOUNCEMENT BAR
   Warm boutique tone + running text
========================================================= */

.announcement-bar {
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;

    background: #8f6f5a;
    color: var(--white);

    text-align: center;
}

.announcement-bar .container {
    overflow: hidden;
}

.announcement-bar p {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin: 0;
    white-space: nowrap;

    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;

    animation: announcementRunning 5s linear infinite;
}

.announcement-bar i {
    margin-right: 7px;
    color: var(--white);
}

@keyframes announcementRunning {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}
/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 48px;
    padding: 12px 25px;

    border: 1px solid transparent;

    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;

    text-transform: uppercase;

    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--heading-color);
    color: var(--bg-color);
    border: none;
}

.btn-light {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-light:hover {
    background: transparent;
    color: var(--white);
}
/* =========================================================
   NAVBAR LOGIN BUTTON
========================================================= */

.nav-auth button {
    border: 1px solid var(--primary);
    background: var(--primary);
    color: var(--white);

    padding: 11px 24px;
    min-width: 90px;

    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;

    cursor: pointer;
    border-radius: 2px;

    transition: var(--transition);
}

.nav-auth button:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    
}


/* =========================================================
   TEXT LINK
========================================================= */

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 18px;

    color: var(--primary);

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition: var(--transition);
}

.text-link i {
    transition: var(--transition);
}

.text-link:hover i {
    transform: translateX(5px);
}



/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);

    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.site-logo {
    flex-shrink: 0;

    color: var(--heading-color);

    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;

    letter-spacing: 5px;

    transition: var(--transition);
}

.site-logo:hover {
    color: var(--primary);
}


/* =========================================================
   NAV MENU
========================================================= */

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 28px;

    flex: 1;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-item {
    position: relative;
}

.nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 29px 0;

    background: transparent;
    border: 0;

    color: var(--text-color);

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    transition: var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 22px;

    width: 0;
    height: 1px;

    background: var(--primary);

    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}


/* =========================================================
   HOME DROPDOWN
   ONLY HOME HAS DROPDOWN
========================================================= */

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    appearance: none;
    -webkit-appearance: none;
}

.nav-dropdown-toggle i {
    font-size: 9px;
    transition: transform 0.3s ease;
}

.nav-dropdown-menu {
    position: absolute;

    top: calc(100% - 8px);
    left: 50%;

    min-width: 180px;

    padding: 8px 0;

    background: var(--card-bg);

    border: 1px solid var(--border-color);

    box-shadow: var(--shadow-md);

    opacity: 0;
    visibility: hidden;

    transform: translate(-50%, 10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown.is-open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-link {
    display: block;

    padding: 11px 18px;

    color: var(--text-color);

    font-size: 0.72rem;
    font-weight: 500;

    letter-spacing: 0.7px;
    text-transform: uppercase;

    transition: var(--transition);
}

.nav-dropdown-link:hover {
    background: var(--bg-secondary);
    color: var(--primary);
    padding-left: 23px;
}


/* =========================================================
   NAV ACTIONS
========================================================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-action-btn {
    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border-color);
    background: transparent;

    color: var(--text-color);

    transition: var(--transition);
}

.nav-action-btn:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}

.nav-auth {
    color: var(--text-color);

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    transition: var(--transition);
}

.nav-auth:hover {
    color: var(--primary);
}

.nav-register {
    min-height: 40px;
    padding: 9px 16px;

    font-size: 0.68rem;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.nav-menu-toggle,
.mobile-menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--border-color);
    background: transparent;

    color: var(--heading-color);

    font-size: 1rem;
}


/* =========================================================
   HERO HOME 1
========================================================= */

.hero {
    position: relative;
    min-height: calc(100vh - 120px);

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 700px;
    color: var(--white);
    justify-content: center;

}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 20px;
    justify-content: center;

}

.hero-content p {
    max-width: 560px;
    margin-bottom: 30px;

    color: rgba(255, 255, 255, 0.88);
    justify-content: center;

}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;

}



/* =========================================================
   INTRO SECTION
========================================================= */

.intro-section {
    padding: 50px 0;
    background: var(--bg-color);
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.intro-heading {
    position: relative;
}

.intro-heading .section-subtitle {
    display: block;
    margin-bottom: 25px;
    letter-spacing: 3px;
    font-size: 15px;
}

.intro-heading h2 {
    font-family: var(--font-heading);
    font-size: clamp(70px, 8vw, 120px);
    font-weight: 400;
    line-height: 0.85;
    letter-spacing: -3px;
    margin: 0 0 45px;
}

.intro-heading h2 em {
    font-style: italic;
    font-weight: 400;
}

.intro-heading .text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;

    border-bottom: 1px solid var(--primary);
    padding-bottom: 8px;
}

.intro-heading .text-link i {
    transition: transform 0.3s ease;
}

.intro-heading .text-link:hover i {
    transform: translateX(6px);
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.intro-details {
    border-top: 1px solid var(--border-color);
}

.intro-detail {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 25px;

    padding: 28px 0;

    border-bottom: 1px solid var(--border-color);

    transition: padding-left 0.3s ease;
}

.intro-detail:hover {
    padding-left: 12px;
}

.intro-detail > span {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary);
}

.intro-detail h3 {
    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 500;
    margin-bottom: 8px;
}

.intro-detail p {
    margin: 0;
    max-width: 360px;

    font-size: 13px;
    line-height: 1.8;
    color: var(--text-light);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .intro-section {
        padding: 50px 0;
    }

    .intro-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .intro-heading h2 {
        font-size: 72px;
        letter-spacing: -2px;
    }

    .intro-details {
        width: 100%;
    }

}

/* =========================================================
   PRODUCT GRID
========================================================= */

.product-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.product-card {
    position: relative;

    background: var(--card-bg);

    overflow: hidden;

    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-image {
    position: relative;
    overflow: hidden;

    aspect-ratio: 0.8;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 6px 10px;

    background: var(--primary);
    color: var(--white);

    font-size: 0.65rem;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    z-index: 2;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 6px;

    font-size: 1.5rem;
}

.product-category {
    display: block;
    margin-bottom: 8px;

    color: var(--text-light);

    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price {
    color: var(--primary);
    font-weight: 600;
}


/* =========================================================
   CATEGORY GRID
========================================================= */

.category-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.category-card {
    position: relative;

    min-height: 400px;

    overflow: hidden;
}

.category-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.category-card:hover img {
    transform: scale(1.07);
}

.category-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 25px;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.7),
            transparent 60%
        );
}

.category-overlay h3 {
    color: var(--white);
}


/* =========================================================
   LOOKBOOK
========================================================= */

.lookbook-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.lookbook-item {
    position: relative;
    overflow: hidden;
}

.lookbook-item img {
    aspect-ratio: 0.78;
    object-fit: cover;

    transition: transform 0.7s ease;
}

.lookbook-item:hover img {
    transform: scale(1.05);
}

.lookbook-content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
}

.lookbook-content span {
    color: var(--white);

    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lookbook-content h3 {
    margin-top: 5px;
    color: var(--white);
}


/* =========================================================
   FEATURE BANNER
========================================================= */

.feature-banner {
    position: relative;
    min-height: 480px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.feature-banner img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.feature-banner::after {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.42);
}

.feature-banner-content {
    position: relative;
    z-index: 2;

    max-width: 600px;
}

.feature-banner-content h2,
.feature-banner-content p {
    color: var(--white);
}

.feature-banner-content p {
    margin: 20px 0 25px;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.newsletter-box {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 60px;
}

.newsletter-content h2 {
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    
}

.newsletter-form .form-group {
    flex: 1;
}

.newsletter-form .btn {
    min-height: 58px;
    
}
.newsletter-form input[type="email"] {
    width: 100%;
    min-height: 58px;
    padding: 0 20px;

    border: none;
    outline: none;

    background: var(--white);
    color: var(--text-color);

    font-family: var(--font-body);
    font-size: 15px;

    border-radius: 0;
    box-shadow: none;
}



/* =========================================================
   FORMS
========================================================= */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--heading-color);

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding: 13px 15px;

    border: 1px solid var(--border-color);

    outline: none;

    background: var(--card-bg);
    color: var(--text-color);

    font-size: 0.82rem;

    transition: var(--transition);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
}


/* =========================================================
   HOME 2 HERO
========================================================= */

.home2-hero {
    min-height: calc(100vh - 120px);

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    background: var(--bg-secondary);
}

.home2-hero-image {
    min-height: 650px;
    overflow: hidden;
}

.home2-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 1s ease;
}

.home2-hero:hover .home2-hero-image img {
    transform: scale(1.025);
}

.home2-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px clamp(30px, 6vw, 100px);
}

.home2-hero-content h1 {
    margin-bottom: 22px;
}

.home2-hero-content h1 span,
.home2-intro-heading h2 span,
.home2-split-content h2 span {
    color: var(--primary);
}

.home2-hero-content p {
    max-width: 500px;
    margin-bottom: 28px;
}

.home2-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   HOME 2 INTRO
========================================================= */

.home2-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.home2-intro-heading h2 {
    max-width: 600px;
}

.home2-intro-text {
    max-width: 560px;
}

.home2-intro-text p {
    font-size: 1rem;
}


/* =========================================================
   HOME 2 CATEGORIES
========================================================= */

.home2-category-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.home2-category-card {
    background: var(--card-bg);

    border: 1px solid var(--border-color);

    overflow: hidden;

    transition: var(--transition);
}

.home2-category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.home2-category-image {
    overflow: hidden;
    aspect-ratio: 0.82;
}

.home2-category-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.home2-category-card:hover .home2-category-image img {
    transform: scale(1.06);
}

.home2-category-content {
    position: relative;
    padding: 22px;
}

.home2-category-content > span {
    color: var(--primary);

    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.home2-category-content h3 {
    margin: 4px 0;
}

.home2-category-content p {
    font-size: 15px;
}

.home2-category-content > i {
    position: absolute;

    right: 20px;
    bottom: 25px;

    color: var(--primary);

    transition: var(--transition);
}

.home2-category-card:hover .home2-category-content > i {
    transform: translateX(5px);
}


/* =========================================================
   HOME 2 SPLIT
========================================================= */

.home2-new-section {
    background: var(--bg-secondary);
}

.home2-split {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 600px;

    align-items: center;
}

.home2-split-image {
    position: relative;

    height: 600px;

    overflow: hidden;
}

.home2-split-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.home2-image-label {
    position: absolute;

    top: 20px;
    left: 20px;

    padding: 8px 13px;

    background: var(--primary);
    color: var(--white);

    font-size: 0.65rem;
    font-weight: 600;

    letter-spacing: 2px;
}

.home2-split-content {
    padding: 60px 8%;
}

.home2-split-content h2 {
    margin-bottom: 20px;
}

.home2-split-content > p {
    max-width: 520px;
    margin-bottom: 25px;
}

.home2-feature-list {
    margin-bottom: 30px;
}

.home2-feature-list li {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 12px;

    color: var(--text-color);

    font-size: 0.8rem;
}

.home2-feature-list i {
    color: var(--primary);
}


/* =========================================================
   HOME 2 LOOKBOOK
========================================================= */



.home2-lookbook-item {
    position: relative;

    min-height: 300px;

    overflow: hidden;
}



.home2-lookbook-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.home2-lookbook-item:hover img {
    transform: scale(1.06);
}

.home2-lookbook-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 30px;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.72),
            transparent
        );
}

.home2-lookbook-overlay span {
    color: var(--white);

    font-size: 0.65rem;
    letter-spacing: 2px;
}

.home2-lookbook-overlay h3 {
    color: var(--white);
    margin-top: 5px;
}


/* =========================================================
   HOME 2 SALE
========================================================= */

.home2-sale {
    padding: 110px 0;

    background:
        linear-gradient(
            rgba(40, 30, 25, 0.78),
            rgba(40, 30, 25, 0.78)
        ),
        url("../images/lookbook/lookbook-1.jpg") center / cover no-repeat;

    text-align: center;
}

.home2-sale-content {
    max-width: 650px;
    margin: 0 auto;
    color: var(--white);
}

.home2-sale-content .eyebrow {
    color: var(--secondary);
}

.home2-sale-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.home2-sale-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    padding-left: 90px;
}


/* =========================================================
   HOME 2 JOURNAL
========================================================= */

.home2-journal-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.home2-journal-card {
    background: var(--card-bg);

    border: 1px solid var(--border-color);

    transition: var(--transition);
}

.home2-journal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.home2-journal-image {
    overflow: hidden;
    aspect-ratio: 1.2;
}

.home2-journal-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.home2-journal-card:hover .home2-journal-image img {
    transform: scale(1.05);
}

.home2-journal-content {
    padding: 25px;
}

.home2-journal-content > span {
    color: var(--primary);

    font-size: 0.65rem;
    font-weight: 600;

    letter-spacing: 2px;
}

.home2-journal-content h3 {
    margin: 10px 0;
    font-size: 1.65rem;
}

.home2-journal-content p {
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.home2-journal-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--primary);

    font-size: 0.7rem;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.home2-journal-content a i {
    transition: var(--transition);
}

.home2-journal-content a:hover i {
    transform: translateX(5px);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 75px 0 0;

    background: var(--black);
    color: var(--white);
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;

    gap: 50px;

    padding-bottom: 55px;
}

.footer-logo {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--white);

    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;

    letter-spacing: 5px;
}

.footer-column > p {
    max-width: 320px;

    color: #aaa;

    font-size: 15px;
}

.footer-column h3 {
    margin-bottom: 20px;

    color: var(--white);

    font-size: 1.4rem;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;

    font-size: 15px;

    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 10px;

    margin-top: 22px;
}

.footer-social a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #444;

    color: #aaa;

    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;

    gap: 10px;
}

.footer-contact i {
    margin-top: 5px;
    color: var(--primary);
}

.footer-bottom {
    padding: 20px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #777;
    font-size: 0.68rem;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    background: var(--primary);
    color: var(--white);

    box-shadow: var(--shadow-md);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: var(--transition);

    z-index: 900;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.active,
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1100px) {

    .nav-menu {
        gap: 15px;
    }

    .nav-list {
        gap: 15px;
    }

    .product-grid,
    .category-grid,
    .home2-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home2-hero {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE NAV
========================================================= */

@media (max-width: 991px) {

    body:has(.site-header) {
        padding-top: 72px;
    }

    .navbar {
        min-height: 72px;
    }

    .site-logo {
        font-size: 1.8rem;
    }

    .nav-menu-toggle,
    .mobile-menu-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;
        align-items: stretch;

        width: 100%;

        max-height: calc(100vh - 72px);
        overflow-y: auto;

        padding: 15px 5%;

        background: var(--card-bg);

        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);

        box-shadow: var(--shadow-md);

        gap: 10px;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;

        justify-content: space-between;

        padding: 15px 0;

        border-bottom: 1px solid var(--border-color);
    }

    .nav-link::after {
        display: none;
    }

    /* MOBILE HOME DROPDOWN */

    .nav-dropdown-menu {
        position: static;

        width: 100%;
        min-width: 0;

        display: none;

        padding: 0;

        border: 0;
        border-bottom: 1px solid var(--border-color);

        box-shadow: none;

        opacity: 1;
        visibility: visible;

        transform: none;

        transition: none;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: block;

        transform: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown-link {
        padding: 13px 20px;

        background: var(--bg-secondary);

        border-bottom: 1px solid var(--border-color);
    }

    .nav-dropdown-link:last-child {
        border-bottom: 0;
    }

    .nav-dropdown-link:hover {
        padding-left: 25px;
    }

    .nav-actions {
        width: 100%;

        justify-content: flex-start;

        flex-wrap: wrap;

        padding: 15px 0 5px;
    }

    .nav-auth {
        margin-left: 5px;
    }

    .home2-hero {
        min-height: auto;

        grid-template-columns: 1fr;
    }

    .home2-hero-image {
        min-height: 500px;
    }

    .home2-hero-content {
        padding: 70px 6%;
    }

    .home2-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .home2-split {
        grid-template-columns: 1fr;
    }

    .home2-split-image {
        height: 500px;
    }

    .home2-split-content {
        padding: 60px 6%;
    }
}


/* =========================================================
   RESPONSIVE - SMALL MOBILE
========================================================= */

@media (max-width: 767px) {

    .section {
        padding: 70px 0;
    }

    .newsletter-section {
        padding: 70px 0;
    }

    .container {
        width: min(92%, 600px);
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .product-grid,
    .category-grid,
    .home2-category-grid,
    .home2-journal-grid {
        grid-template-columns: 1fr;
    }

    .lookbook-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 350px;
    }

    .newsletter-box {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-form .btn {
        width: 100%;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        padding: 40px 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .home2-hero-image {
        min-height: 420px;
    }

    .home2-hero-content {
        padding: 55px 5%;
    }

    .home2-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .home2-hero-buttons .btn {
        width: 100%;
    }

    .home2-lookbook-grid {
        display: grid;

        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .home2-lookbook-item.large {
        grid-row: auto;
    }

    .home2-lookbook-item {
        min-height: 400px;
    }

    .home2-split-image {
        height: 420px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;
    }
}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 480px) {

    .site-logo {
        font-size: 1.55rem;
        letter-spacing: 3px;
    }

    .nav-action-btn {
        width: 35px;
        height: 35px;
    }

    .nav-register {
        padding: 8px 13px;
    }

    .home2-lookbook-item {
        min-height: 330px;
    }

    .home2-sale {
        padding: 80px 0;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-color);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}


/* =====================================================
   MOBILE NAVIGATION
===================================================== */

@media (max-width: 991px) {

    .mobile-menu-toggle {
        display: flex;
    }

}


@media (max-width: 767px) {

    .mobile-menu-toggle {
        display: flex;
    }

}
/* =====================================================
   AUTH / LOGIN PAGE
===================================================== */

.auth-wrapper {
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 520px;
    padding: 50px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.auth-header {
    text-align: center;
    margin-bottom: 35px;
}

.auth-header h1 {
    margin: 8px 0 10px;
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--heading-color);
}

.auth-header p {
    color: var(--text-light);
    font-size: 14px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-form .form-group {
    margin-bottom: 0;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.input-icon input {
    padding-left: 46px;
}

.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 13px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
}

.forgot-link {
    color: var(--primary);
}

.auth-submit {
    width: 100%;
    margin-top: 5px;
}

.auth-switch {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    padding-top: 10px;
}

.auth-switch a {
    color: var(--primary);
    font-weight: 600;
    margin-left: 5px;
}

.auth-switch a:hover {
    color: var(--primary-dark);
}


/* MOBILE LOGIN */

@media (max-width: 767px) {

    .auth-wrapper {
        min-height: auto;
        padding: 30px 0;
    }

    .auth-card {
        padding: 30px 22px;
    }

    .auth-header h1 {
        font-size: 40px;
    }

    .auth-options {
        flex-direction: column;
        align-items: flex-start;
    }

}

/* =====================================================
   SALE BENEFIT CARDS
===================================================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    padding: 38px 30px;
    text-align: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.55rem;
}

.feature-card p {
    max-width: 330px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 30px 24px;
    }
}

/* =====================================================
   SHOP PAGE
===================================================== */

.page-hero {
    padding: 100px 0;
    text-align: center;
    background: var(--bg-secondary);
}

.page-hero h1 {
    margin: 10px 0 15px;
    font-family: var(--font-heading);
    font-size: clamp(52px, 7vw, 88px);
    line-height: 1;
    color: var(--heading-color);
}

.page-hero p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-light);
    line-height: 1.8;
}


/* SHOP FILTERS */

.shop-filters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0;
    padding: 30px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.shop-filter-group h3 {
    margin-bottom: 18px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--heading-color);
}

.shop-filter-group h3 i {
    margin-right: 8px;
    color: var(--primary);
}

.shop-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.shop-filter-btn {
    padding: 9px 15px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 15px;
    letter-spacing: .5px;
    cursor: pointer;
    transition: var(--transition);
}

.shop-filter-btn:hover,
.shop-filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}


/* PRODUCT GRID */

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 18px;
}

.shop-product-card {
    min-width: 0;
    transition: transform .35s ease, box-shadow .35s ease, opacity .3s ease;
}

.shop-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.shop-product-card.is-hidden {
    display: none;
}

.shop-product-card .product-image {
    aspect-ratio: 0.82;
}

.shop-product-card .product-badge {
    top: 10px;
    left: 10px;
    padding: 5px 8px;
    font-size: 0.58rem;
}

.shop-product-card .product-action {
    width: 34px;
    height: 34px;
    right: 10px;
    bottom: 10px;
}

.shop-product-card .product-info {
    padding: 14px 13px 16px;
}

.shop-product-card .product-category {
    margin-bottom: 6px;
    font-size: 0.58rem;
    letter-spacing: .9px;
}

.shop-product-card .product-info h3 {
    margin-bottom: 5px;
    font-size: 1.05rem;
    line-height: 1.15;
}

.shop-product-card .product-info > p:not(.product-price) {
    margin: 6px 0 10px;
    font-size: 13px;
    line-height: 1.55;
}

.shop-product-card .product-price {
    font-size: 13px;
}

.shop-product-card.filter-visible {
    animation: shopFilterIn .35s ease both;
}

@keyframes shopFilterIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* EMPTY RESULT */

.shop-empty {
    display: none;
    padding: 70px 20px;
    text-align: center;
}

.shop-empty.show {
    display: block;
}

.shop-empty i {
    margin-bottom: 15px;
    font-size: 38px;
    color: var(--text-light);
}

.shop-empty h3 {
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--heading-color);
}

.shop-empty p {
    color: var(--text-light);
}


/* SHOP RESPONSIVE */

@media (max-width: 991px) {

    .shop-filters {
        grid-template-columns: 1fr;
    }

    .shop-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 767px) {

    .page-hero {
        padding: 70px 0;
    }

    .shop-filters {
        padding: 20px;
        margin: 35px 0;
    }

    .shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 14px;
    }

}

@media (max-width: 480px) {
    .shop-product-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }


    .shop-filter-buttons {
        gap: 6px;
    }

    .shop-filter-btn {
        padding: 8px 12px;
        font-size: 11px;
    }

}
/* =====================================================
   NEW ARRIVALS - EDITORIAL DESIGN
===================================================== */

.new-editorial-hero {
    min-height: 720px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    background: var(--bg-secondary);
}

.new-editorial-image {
    min-height: 720px;
    overflow: hidden;
}

.new-editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.new-editorial-image:hover img {
    transform: scale(1.04);
}

.new-editorial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
}

.new-editorial-content h1 {
    margin: 18px 0 25px;
    font-family: var(--font-heading);
    font-size: clamp(58px, 7vw, 105px);
    line-height: .88;
    color: var(--heading-color);
}

.new-editorial-content h1 span {
    display: block;
    margin-left: 60px;
    font-style: italic;
    font-weight: 400;
}

.new-editorial-content p {
    max-width: 480px;
    margin-bottom: 32px;
    color: var(--text-light);
    line-height: 1.9;
}


/* INTRO */

.new-intro {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.new-intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr .4fr;
    align-items: center;
    gap: 60px;
}

.new-intro-grid h2 {
    margin-top: 15px;
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 68px);
    line-height: .95;
    color: var(--heading-color);
}

.new-intro-grid p {
    color: var(--text-light);
    line-height: 1.9;
}

.new-intro-number {
    text-align: right;
}

.new-intro-number span {
    display: block;
    font-family: var(--font-heading);
    font-size: 70px;
    line-height: 1;
    color: var(--primary);
}

.new-intro-number small {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-light);
}


/* IMAGE STORY */

.new-image-story {
    padding: 50px 0;
}

.new-story-grid {
    display: grid;
    grid-template-columns: 1.2fr .75fr .7fr;
    gap: 25px;
    align-items: end;
}

.new-story-large,
.new-story-small {
    position: relative;
    overflow: hidden;
}

.new-story-large {
    height: 650px;
}

.new-story-small {
    height: 470px;
}

.new-story-large img,
.new-story-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.new-story-large:hover img,
.new-story-small:hover img {
    transform: scale(1.04);
}

.new-story-label {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,.7);
    color: var(--white);
}

.new-story-label span {
    font-size: 11px;
    letter-spacing: 2px;
}

.new-story-label p {
    margin: 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.new-story-text {
    padding: 30px 0 15px;
}

.new-story-text h3 {
    margin: 15px 0 20px;
    font-family: var(--font-heading);
    font-size: 45px;
    line-height: 1;
    color: var(--heading-color);
}

.new-story-text p {
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.9;
}


/* PRODUCT SECTION */

.new-arrivals-grid {
    margin-top: 55px;
}

.new-arrivals-grid .product-card {
    transition: transform .4s ease;
}

.new-arrivals-grid .product-card:hover {
    transform: translateY(-8px);
}


/* FULL EDITORIAL */

.new-full-editorial {
    position: relative;
    min-height: 650px;
    overflow: hidden;
}

.new-full-editorial > img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.new-full-editorial-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;
    text-align: center;

    background: rgba(0, 0, 0, 0.18);

    z-index: 2;
}

.new-full-editorial-overlay h2 {
    margin: 0;
    color: var(--black);
}

.new-full-editorial-overlay h2 em {
    display: block;
}


/* TRENDING */

.new-trending .section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
}

.new-trending-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 45px;
}

.new-trending-card {
    position: relative;
    height: 470px;
    overflow: hidden;
}

.new-trending-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.new-trending-card:hover img {
    transform: scale(1.05);
}

.new-trending-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.65),
        transparent 55%
    );
}

.new-trending-card > div {
    position: absolute;
    z-index: 2;
    left: 25px;
    right: 25px;
    bottom: 25px;
    color: var(--white);
}

.new-trending-card span {
    font-size: 10px;
    letter-spacing: 2px;
}

.new-trending-card h3 {
    margin-top: 7px;
    font-family: var(--font-heading);
    font-size: 32px;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .new-editorial-hero {
        grid-template-columns: 1fr;
    }

    .new-editorial-image {
        min-height: 550px;
    }

    .new-editorial-content {
        padding: 60px 30px;
    }

    .new-intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .new-intro-number {
        text-align: left;
    }

    .new-story-grid {
        grid-template-columns: 1fr 1fr;
    }

    .new-story-large {
        height: 550px;
    }

    .new-story-small {
        height: 550px;
    }

    .new-story-text {
        grid-column: 1 / -1;
    }

    .new-trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .new-editorial-image {
        min-height: 450px;
    }

    .new-editorial-content {
        padding: 50px 20px;
    }

    .new-editorial-content h1 {
        font-size: 65px;
    }

    .new-editorial-content h1 span {
        margin-left: 30px;
    }

    .new-intro {
        padding: 60px 0;
    }

    .new-image-story {
        padding: 65px 0;
    }

    .new-story-grid {
        grid-template-columns: 1fr;
    }

    .new-story-large,
    .new-story-small {
        height: 500px;
    }

    .new-full-editorial,
    .new-full-editorial > img {
        min-height: 500px;
        height: 500px;
    }

    .new-trending .section-heading {
        display: block;
    }

    .new-trending .text-link {
        display: inline-flex;
        margin-top: 20px;
    }

    .new-trending-grid {
        grid-template-columns: 1fr;
    }

    .new-trending-card {
        height: 500px;
    }

}


@media (max-width: 480px) {

    .new-editorial-image {
        min-height: 380px;
    }

    .new-editorial-content h1 {
        font-size: 55px;
    }

    .new-editorial-content h1 span {
        margin-left: 15px;
    }

    .new-story-large,
    .new-story-small {
        height: 420px;
    }

    .new-story-text h3 {
        font-size: 38px;
    }

}
/* =====================================================
   STYLE GUIDE PAGE
===================================================== */

.style-guide-hero {
    min-height: 680px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    background: var(--bg-secondary);
}

.style-guide-hero-image {
    min-height: 680px;
    overflow: hidden;
}

.style-guide-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.style-guide-hero-image:hover img {
    transform: scale(1.04);
}

.style-guide-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
}

.style-guide-hero-content h1 {
    margin: 18px 0 25px;
    font-family: var(--font-heading);
    font-size: clamp(58px, 7vw, 100px);
    line-height: .88;
    color: var(--heading-color);
}

.style-guide-hero-content h1 span {
    display: block;
    margin-left: 55px;
    font-style: italic;
    font-weight: 400;
}

.style-guide-hero-content p {
    max-width: 470px;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.9;
}


/* PRINCIPLES */

.style-principles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.style-principle {
    position: relative;
    padding: 35px 25px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    transition: transform .35s ease,
                box-shadow .35s ease;
}

.style-principle:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.style-principle > span {
    display: block;
    margin-bottom: 25px;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-light);
}

.style-principle i {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 25px;
}

.style-principle h3 {
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: 27px;
    color: var(--heading-color);
}

.style-principle p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.8;
}


/* STORIES */

.style-story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 25px;
    margin-top: 45px;
}

.style-story-card {
    overflow: hidden;
}

.style-story-card.large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
}

.style-story-image {
    height: 430px;
    overflow: hidden;
}

.style-story-card.large .style-story-image {
    height: 550px;
}

.style-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.style-story-card:hover .style-story-image img {
    transform: scale(1.04);
}

.style-story-content {
    padding: 30px 0;
}

.style-story-card.large .style-story-content {
    padding: 60px 45px;
    background: var(--bg-secondary);
}

.style-story-content > span {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-light);
}

.style-story-content h3 {
    margin: 12px 0 15px;
    font-family: var(--font-heading);
    font-size: 36px;
    line-height: 1;
    color: var(--heading-color);
}

.style-story-content p {
    max-width: 500px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.9;
}


/* LOOKBOOK */

.style-lookbook {
    position: relative;
    min-height: 620px;
    overflow: hidden;
}

.style-lookbook-image {
    width: 100%;
    height: 620px;
}

.style-lookbook-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-lookbook-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    background: rgba(0,0,0,.38);
}

.style-lookbook-content h2 {
    margin: 15px 0 25px;
    font-family: var(--font-heading);
    font-size: clamp(55px, 8vw, 105px);
    line-height: .85;
    color: var(--white);
}

.style-lookbook-content h2 em {
    display: block;
    font-weight: 400;
}

.style-lookbook-content p {
    max-width: 500px;
    margin-bottom: 30px;
    color: var(--white);
    line-height: 1.8;
}


/* STYLE TIPS */

.style-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.style-tip {
    padding: 35px;
    border-top: 1px solid var(--border-color);
}

.style-tip-number {
    margin-bottom: 25px;
    font-family: var(--font-heading);
    font-size: 45px;
    color: var(--primary);
}

.style-tip h3 {
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--heading-color);
}

.style-tip p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .style-guide-hero {
        grid-template-columns: 1fr;
    }

    .style-guide-hero-image {
        min-height: 520px;
    }

    .style-guide-hero-content {
        padding: 60px 30px;
    }

    .style-principles {
        grid-template-columns: repeat(2, 1fr);
    }

    .style-story-card.large {
        grid-template-columns: 1fr;
    }

    .style-story-card.large .style-story-image {
        height: 500px;
    }

}


@media (max-width: 767px) {

    .style-guide-hero-image {
        min-height: 430px;
    }

    .style-guide-hero-content {
        padding: 50px 20px;
    }

    .style-guide-hero-content h1 {
        font-size: 65px;
    }

    .style-guide-hero-content h1 span {
        margin-left: 30px;
    }

    .style-principles {
        grid-template-columns: 1fr;
    }

    .style-story-grid {
        grid-template-columns: 1fr;
    }

    .style-story-card.large {
        grid-column: auto;
    }

    .style-story-card.large .style-story-content {
        padding: 35px 25px;
    }

    .style-lookbook,
    .style-lookbook-image {
        min-height: 500px;
        height: 500px;
    }

    .style-tips-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .style-guide-hero-content h1 {
        font-size: 55px;
    }

    .style-guide-hero-content h1 span {
        margin-left: 15px;
    }

    .style-story-image,
    .style-story-card.large .style-story-image {
        height: 420px;
    }

}
/* =========================================================
   NEW ARRIVALS PAGE
========================================================= */

.new-arrivals-hero {
    min-height: 78vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
}

.new-arrivals-hero-image {
    position: absolute;
    inset: 0;
}

.new-arrivals-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-arrivals-hero-content {
    position: relative;
    z-index: 2;
    width: min(650px, 90%);
    margin-left: 8%;
    padding: 70px;
    background: rgba(255, 255, 255, 0.9);
}

.new-arrivals-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(60px, 8vw, 110px);
    line-height: .85;
    margin: 18px 0 25px;
    color: var(--heading-color);
}

.new-arrivals-hero-content p {
    max-width: 500px;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.8;
}


/* INTRO */

.new-arrivals-intro {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.new-arrivals-intro-grid {
    display: grid;
    grid-template-columns: .6fr 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 80px;
    line-height: .8;
    color: var(--primary);
}

.section-label {
    display: block;
    margin-top: 15px;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
}

.new-arrivals-intro h2 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1;
    font-weight: 500;
}

.new-arrivals-intro p {
    line-height: 1.9;
    color: var(--text-light);
}


/* STORY */

.new-arrivals-story {
    padding: 110px 0;
}

.new-arrivals-story-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 30px;
    align-items: center;
}

.story-image {
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-image-large {
    height: 680px;
}

.story-image-small {
    height: 390px;
}

.story-image-medium {
    height: 520px;
}

.story-caption {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    z-index: 2;
}

.story-caption span {
    font-size: 12px;
    letter-spacing: 2px;
}

.story-caption p {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.story-content {
    padding: 50px;
}

.story-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 70px);
    line-height: .95;
    margin: 20px 0;
}

.story-content p {
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 30px;
}


/* PRODUCT GRID */

.new-arrivals-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.new-arrivals-product-grid .product-card {
    min-width: 0;
}

.new-arrivals-product-grid .product-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
}

.new-arrivals-product-grid .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.new-arrivals-product-grid .product-card:hover img {
    transform: scale(1.05);
}

.new-arrivals-product-grid .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 7px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    letter-spacing: 1.5px;
}

.product-wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-wishlist:hover {
    transform: scale(1.08);
}

.product-info {
    padding: 18px 0 25px;
}

.product-category {
    display: block;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 10px;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
    padding-left: 5px;
}

.product-price {
    font-size: 14px;
    font-weight: 600;
    padding-left: 10px;
}


/* CURATED EDIT */

.curated-edit-section {
    padding: 110px 0;
    background: var(--bg-secondary);
}

.curated-edit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.curated-edit-card {
    display: block;
    background: var(--card-bg);
    overflow: hidden;
    color: var(--text-color);
}

.curated-edit-image {
    height: 480px;
    overflow: hidden;
}

.curated-edit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.curated-edit-card:hover img {
    transform: scale(1.06);
}

.curated-edit-content {
    padding: 25px;
    position: relative;
}

.curated-edit-content > span {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--primary);
}

.curated-edit-content h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin: 8px 0;
}

.curated-edit-content p {
    color: var(--text-light);
    line-height: 1.7;
    max-width: 280px;
}

.curated-edit-content i {
    position: absolute;
    right: 25px;
    bottom: 30px;
    transition: transform .3s ease;
}

.curated-edit-card:hover .curated-edit-content i {
    transform: translateX(5px);
}


/* EDITORIAL BANNER */

.new-editorial-banner {
    min-height: 650px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.new-editorial-image {
    position: absolute;
    inset: 0;
}

.new-editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-editorial-content {
    position: relative;
    z-index: 2;
    width: min(600px, 90%);
    margin-left: 8%;
    padding: 55px;
    background: rgba(0,0,0,.52);
    color: white;
}

.new-editorial-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(50px, 7vw, 90px);
    line-height: .9;
    margin: 18px 0;
}

.new-editorial-content p {
    max-width: 460px;
    line-height: 1.8;
    margin-bottom: 30px;
}


/* DROP NOTE */

.drop-note-section {
    padding: 100px 0;
}

.drop-note {
    display: grid;
    grid-template-columns: 100px 1fr 80px;
    gap: 50px;
    align-items: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 0;
}

.drop-note-number {
    font-family: var(--font-heading);
    font-size: 70px;
    color: var(--primary);
}

.drop-note-main h2 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 65px);
    line-height: .95;
    margin: 15px 0;
}

.drop-note-main p {
    max-width: 600px;
    color: var(--text-light);
    line-height: 1.8;
}

.circle-link {
    width: 70px;
    height: 70px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition);
}

.circle-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}


/* TRENDING */

.trending-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trending-card {
    overflow: hidden;
}

.trending-image {
    height: 500px;
    overflow: hidden;
}

.trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.trending-card:hover img {
    transform: scale(1.05);
}

.trending-info {
    padding: 20px 0;
    display: grid;
    grid-template-columns: 35px 1fr auto;
    align-items: center;
    gap: 10px;
}

.trending-info span {
    font-size: 11px;
    color: var(--primary);
}

.trending-info h3 {
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 500;
}

.trending-info p {
    font-size: 13px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .new-arrivals-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .new-arrivals-intro-grid {
        grid-template-columns: 1fr 1.5fr;
    }

    .new-arrivals-intro-grid > div:last-child {
        grid-column: 2;
    }

}


@media (max-width: 991px) {

    .new-arrivals-hero {
        min-height: 650px;
    }

    .new-arrivals-hero-content {
        margin-left: 5%;
        padding: 45px;
    }

    .new-arrivals-story-grid {
        grid-template-columns: 1fr;
    }

    .story-image-large,
    .story-image-small,
    .story-image-medium {
        height: 550px;
    }

    .story-content {
        padding: 30px 0;
    }

    .new-arrivals-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .curated-edit-grid {
        grid-template-columns: 1fr;
    }

    .curated-edit-image {
        height: 550px;
    }

    .drop-note {
        grid-template-columns: 70px 1fr 60px;
        gap: 25px;
    }

    .trending-grid {
        grid-template-columns: 1fr;
    }

    .trending-image {
        height: 600px;
    }

}


@media (max-width: 767px) {

    .new-arrivals-hero {
        min-height: 600px;
    }

    .new-arrivals-hero-content {
        width: 88%;
        margin: 0 auto;
        padding: 35px 25px;
    }

    .new-arrivals-hero-content h1 {
        font-size: 65px;
    }

    .new-arrivals-intro {
        padding: 60px 0;
    }

    .new-arrivals-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .new-arrivals-intro-grid > div:last-child {
        grid-column: auto;
    }

    .section-number {
        font-size: 65px;
    }

    .new-arrivals-story {
        padding: 70px 0;
    }

    .story-image-large,
    .story-image-small,
    .story-image-medium {
        height: 450px;
    }

    .new-arrivals-product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .product-info h3 {
        font-size: 20px;
    }

    .curated-edit-section {
        padding: 70px 0;
    }

    .curated-edit-image {
        height: 430px;
    }

    .new-editorial-banner {
        min-height: 600px;
    }

    .new-editorial-content {
        margin: 0 auto;
        padding: 35px 25px;
    }

    .drop-note {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .circle-link {
        width: 55px;
        height: 55px;
    }

    .trending-image {
        height: 450px;
    }

}


@media (max-width: 480px) {

    .new-arrivals-product-grid {
        grid-template-columns: 1fr;
    }

    .new-arrivals-product-grid .product-image {
        aspect-ratio: 4 / 5;
    }

    .story-image-large,
    .story-image-small,
    .story-image-medium {
        height: 400px;
    }

    .new-editorial-content h2 {
        font-size: 55px;
    }

}

@media (max-width: 767px) {

}
.hero-image video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
/* =========================================================
   PREMIUM LATEST ARRIVALS
========================================================= */

.latest-arrivals-section {
    background: var(--bg-color);
}


/* SECTION HEADER */

.latest-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 55px;
}

.latest-heading {
    flex: 1;
}

.latest-heading .section-subtitle {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
}

.latest-heading .section-title {
    margin: 0;
}


.latest-header-side {
    width: 360px;
    padding-bottom: 5px;
}

.latest-header-side p {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}


/* VIEW ALL */

.latest-view-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--heading-color);

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    border-bottom: 1px solid var(--primary);
    padding-bottom: 7px;

    transition: var(--transition);
}

.latest-view-link i {
    color: var(--primary);
    font-size: 10px;
    transition: var(--transition);
}

.latest-view-link:hover {
    color: var(--primary);
}

.latest-view-link:hover i {
    transform: translate(4px, -4px);
}


/* PRODUCT GRID */

.premium-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}


/* PRODUCT CARD */

.premium-product-card {
    position: relative;
    background: transparent;
    overflow: hidden;
}


/* IMAGE */

.premium-product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 0.76;
    background: var(--bg-secondary);
}

.premium-product-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transition:
        transform 0.8s ease,
        filter 0.5s ease;
}

.premium-product-card:hover
.premium-product-image img {
    transform: scale(1.055);
}


/* PRODUCT NUMBER */

.premium-product-number {
    position: absolute;
    top: 16px;
    left: 16px;

    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--white);

    z-index: 2;
}


/* BADGE */

.premium-product-badge {
    position: absolute;
    top: 16px;
    right: 16px;

    padding: 6px 10px;

    background: var(--white);
    color: var(--heading-color);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;

    z-index: 2;
}


/* IMAGE OVERLAY */

.premium-product-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.18),
            transparent 35%,
            rgba(0, 0, 0, 0.12)
        );

    pointer-events: none;
}


/* ARROW BUTTON */

.premium-product-arrow {
    position: absolute;

    right: 18px;
    bottom: 18px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);
    color: var(--heading-color);

    font-size: 12px;

    opacity: 0;
    transform: translateY(12px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;

    z-index: 3;
}

.premium-product-card:hover
.premium-product-arrow {
    opacity: 1;
    transform: translateY(0);
}

.premium-product-arrow:hover {
    background: var(--primary);
    color: var(--white);
}


/* PRODUCT INFO */

.premium-product-info {
    padding: 18px 2px 0;
}


/* META */

.premium-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    margin-bottom: 7px;
}

.premium-product-meta span {
    color: var(--text-light);

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.premium-product-meta span:last-child {
    color: var(--primary);
}


/* PRODUCT TITLE */

.premium-product-info h3 {
    margin: 0 0 13px;

    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 500;
    line-height: 1.1;

    color: var(--heading-color);

    transition: var(--transition);
}

.premium-product-card:hover
.premium-product-info h3 {
    color: var(--primary);
}


/* BOTTOM */

.premium-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding-top: 11px;

    border-top: 1px solid var(--border-color);
}


/* RATING */

.premium-rating {
    display: flex;
    align-items: center;
    gap: 7px;
}

.premium-rating .stars {
    color: var(--primary);

    font-size: 10px;
    letter-spacing: 1px;
}

.premium-rating .reviews {
    color: var(--text-light);

    font-size: 12px;
}


/* PRICE */

.premium-price {
    color: var(--heading-color);

    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   PREMIUM LATEST ARRIVALS - TABLET
========================================================= */

@media (max-width: 1100px) {

    .premium-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 22px;
    }

    .latest-header {
        align-items: flex-start;
    }

    .latest-header-side {
        width: 300px;
    }

}


/* =========================================================
   PREMIUM LATEST ARRIVALS - MOBILE
========================================================= */

@media (max-width: 767px) {

    .latest-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        margin-bottom: 40px;
    }

    .latest-header-side {
        width: 100%;
    }

    .premium-product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 14px;
    }

    .premium-product-number {
        top: 10px;
        left: 10px;
        font-size: 14px;
    }

    .premium-product-badge {
        top: 10px;
        right: 10px;
        padding: 5px 7px;
        font-size: 8px;
    }

    .premium-product-info {
        padding-top: 13px;
    }

    .premium-product-meta {
        margin-bottom: 6px;
    }

    .premium-product-meta span {
        font-size: 7px;
        letter-spacing: 0.8px;
    }

    .premium-product-info h3 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .premium-product-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .premium-rating .reviews {
        font-size: 8px;
    }

    .premium-price {
        font-size: 12px;
    }

    .premium-product-arrow {
        width: 38px;
        height: 38px;
        right: 10px;
        bottom: 10px;
    }

}
/* =========================================================
   LOOKBOOK SCROLL REVEAL
========================================================= */

.lookbook-item {
    position: relative;
    overflow: hidden;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    opacity: 0;
    transform: scale(1.15);

    clip-path: inset(12% 12% 12% 12%);

    transition:
        opacity 1.4s ease,
        transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
        clip-path 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}


/* When section enters viewport */

.lookbook-item.lookbook-visible img {
    opacity: 1;
    transform: scale(1);
    clip-path: inset(0 0 0 0);
}


/* One by one delay */

.lookbook-item:nth-child(1).lookbook-visible img {
    transition-delay: 0s;
}

.lookbook-item:nth-child(2).lookbook-visible img {
    transition-delay: 0.25s;
}

.lookbook-item:nth-child(3).lookbook-visible img {
    transition-delay: 0.5s;
}


/* Hover after reveal */

.lookbook-item.lookbook-visible:hover img {
    transform: scale(1.05);
    transition:
        transform 0.8s ease;
}
/* =========================================================
   SHOP BY CATEGORY - LEFT TO RIGHT SCROLL REVEAL
========================================================= */

.category-card {
    position: relative;
    overflow: hidden;

    opacity: 0;
    transform: translateX(-80px);

    transition:
        opacity 1.2s ease,
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}


/* When category enters viewport */

.category-card.category-visible {
    opacity: 1;
    transform: translateX(0);
}


/* One by one */

.category-card:nth-child(1).category-visible {
    transition-delay: 0s;
}

.category-card:nth-child(2).category-visible {
    transition-delay: 0.2s;
}

.category-card:nth-child(3).category-visible {
    transition-delay: 0.4s;
}

.category-card:nth-child(4).category-visible {
    transition-delay: 0.6s;
}


/* Image slight zoom while coming */

.category-card img {
    transform: scale(1.08);
    transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-card.category-visible img {
    transform: scale(1);
}


/* Normal hover after animation */

.category-card.category-visible:hover img {
    transform: scale(1.06);
}
/* =========================================================
   FEATURE CARD HOVER COLOUR
========================================================= */

.feature-card {
    transition:
        background-color 0.4s ease,
        color 0.4s ease,
        transform 0.4s ease;
}

.feature-card:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-6px);
}

.feature-card:hover .feature-icon {
    color: var(--white);
}

.feature-card:hover h3 {
    color: var(--white);
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.85);
}
/* =====================================================
   VELORA SIGNATURE EDIT
===================================================== */

.signature-edit {
    padding: 100px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.signature-edit-inner {
    width: min(92%, var(--container-width));
    min-height: 620px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    position: relative;
}


/* LEFT CONTENT */

.signature-edit-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px 90px 70px 0;

    position: relative;
    z-index: 2;
}

.signature-edit-eyebrow {
    display: block;

    margin-bottom: 24px;

    color: var(--primary);

    font-size: 17px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.signature-edit-content h2 {
    max-width: 520px;

    margin: 0 0 28px;

    font-family: var(--font-heading);
    font-size: clamp(58px, 6vw, 90px);

    font-weight: 400;
    line-height: 0.9;

    letter-spacing: -2px;

    color: var(--heading-color);
}

.signature-edit-content h2 em {
    display: block;

    color: var(--primary);

    font-style: italic;
    font-weight: 400;
}

.signature-edit-content p {
    max-width: 420px;

    margin: 0 0 38px;

    color: var(--text-light);

    font-size: 14px;
    line-height: 1.9;
}


/* LINK */

.signature-edit-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    width: fit-content;

    padding-bottom: 9px;

    border-bottom: 1px solid var(--primary);

    color: var(--heading-color);

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition: var(--transition);
}

.signature-edit-link i {
    color: var(--primary);

    transition: transform 0.3s ease;
}

.signature-edit-link:hover {
    color: var(--primary);
}

.signature-edit-link:hover i {
    transform: translateX(6px);
}


/* RIGHT IMAGE */

.signature-edit-image {
    position: relative;

    min-height: 620px;

    overflow: hidden;
}

.signature-edit-image img {
    width: 70%;
    height: 70%;

    display: block;

    object-fit: cover;

    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.signature-edit-image:hover img {
    transform: scale(1.04);
}


/* DARK SOFT OVERLAY */

.signature-edit-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.08),
            transparent 45%,
            rgba(0, 0, 0, 0.25)
        );

    pointer-events: none;
}


/* IMAGE NUMBER */

.signature-edit-number {
    position: absolute;

    top: 25px;
    left: 25px;

    z-index: 3;

    color: var(--white);

    font-family: var(--font-heading);
    font-size: 22px;
}


/* IMAGE LABEL */

.signature-edit-label {
    position: absolute;

    right: 25px;
    bottom: 25px;

    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 4px;

    padding: 14px 18px;

    background: rgba(255, 255, 255, 0.94);
}

.signature-edit-label span {
    color: var(--primary);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 2px;
}

.signature-edit-label strong {
    color: var(--heading-color);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1.5px;
}


/* CENTER V MARK */

.signature-edit-mark {
    position: absolute;

    left: 42.5%;
    top: 50%;

    width: 74px;
    height: 74px;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5;

    background: var(--primary);

    color: var(--white);

    border: 8px solid var(--bg-secondary);

    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 500;

    transition: transform 0.4s ease;
}

.signature-edit-inner:hover .signature-edit-mark {
    transform: translate(-50%, -50%) rotate(45deg);
}

.signature-edit-inner:hover .signature-edit-mark {
    border-radius: 0;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .signature-edit {
        padding: 50px 0;
    }

    .signature-edit-inner {
        min-height: 540px;

        grid-template-columns: 0.9fr 1.1fr;
    }

    .signature-edit-content {
        padding: 50px 45px 50px 0;
    }

    .signature-edit-content h2 {
        font-size: 60px;
    }

    .signature-edit-image {
        min-height: 540px;
    }

    .signature-edit-mark {
        left: 45%;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .signature-edit {
        padding: 70px 0;
    }

    .signature-edit-inner {
        width: min(92%, 600px);

        display: flex;
        flex-direction: column;

        min-height: auto;
    }

    .signature-edit-content {
        padding: 10px 0 55px;
    }

    .signature-edit-content h2 {
        font-size: 58px;
        letter-spacing: -1px;
    }

    .signature-edit-content p {
        max-width: 100%;
    }

    .signature-edit-image {
        min-height: 500px;
    }

    .signature-edit-mark {
        left: 50%;
        top: 50%;

        width: 62px;
        height: 62px;

        border-width: 6px;

        font-size: 25px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .signature-edit-content h2 {
        font-size: 50px;
    }

    .signature-edit-image {
        min-height: 420px;
    }

    .signature-edit-label {
        right: 15px;
        bottom: 15px;
    }

    .signature-edit-number {
        top: 15px;
        left: 15px;
    }

}
/* =====================================================
   VELORA STYLE GUIDE PREVIEW
===================================================== */

.style-preview-section {
    padding: 120px 0;
    background: var(--bg-color);
    overflow: hidden;
}


/* =====================================================
   HEADER
===================================================== */

.style-preview-header {
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: end;
    gap: 80px;
    margin-bottom: 65px;
}

.style-preview-title .section-subtitle {
    display: block;
    margin-bottom: 18px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.style-preview-title h2 {
    margin: 0;

    font-family: var(--font-heading);
    font-size: clamp(65px, 7vw, 105px);

    font-weight: 400;
    line-height: 0.82;

    letter-spacing: -3px;

    color: var(--heading-color);
}

.style-preview-title h2 em {
    color: var(--primary);
    font-style: italic;
    font-weight: 400;
}


.style-preview-intro {
    padding-bottom: 5px;
}

.style-preview-intro p {
    max-width: 390px;

    margin: 0 0 22px;

    color: var(--text-light);

    font-size: 13px;
    line-height: 1.9;
}


.style-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    

    padding-bottom: 8px;

    border-bottom: 1px solid var(--primary);

    color: var(--heading-color);

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition: var(--transition);
}

.style-preview-link i {
    color: var(--primary);
    transition: transform .3s ease;
}

.style-preview-link:hover {
    color: var(--primary);
}

.style-preview-link:hover i {
    transform: translateX(6px);
}


/* =====================================================
   EDITORIAL GRID
===================================================== */

.style-editorial-grid {
    display: grid;

    grid-template-columns:
        1.25fr
        .875fr
        .875fr;

    gap: 25px;

    align-items: start;
}


/* =====================================================
   CARD
===================================================== */

.style-editorial-card {
    min-width: 0;
}

.style-editorial-main {
    margin-top: 45px;
}


/* =====================================================
   IMAGE
===================================================== */

.style-editorial-image {
    position: relative;

    display: block;

    overflow: hidden;

    aspect-ratio: .78;

    background: var(--bg-secondary);
}

.style-editorial-main .style-editorial-image {
    aspect-ratio: .82;
}

.style-editorial-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1s cubic-bezier(.22,1,.36,1);
}

.style-editorial-card:hover
.style-editorial-image img {
    transform: scale(1.055);
}


/* IMAGE OVERLAY */

.style-editorial-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.16),
            transparent 35%,
            rgba(0,0,0,.12)
        );

    pointer-events: none;
}


/* NUMBER */

.style-editorial-number {
    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 3;

    color: var(--white);

    font-family: var(--font-heading);
    font-size: 21px;
}


/* ARROW */

.style-editorial-arrow {
    position: absolute;

    right: 18px;
    bottom: 18px;

    z-index: 4;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);
    color: var(--heading-color);

    font-size: 11px;

    opacity: 0;

    transform: translateY(12px);

    transition:
        opacity .35s ease,
        transform .35s ease,
        background .35s ease,
        color .35s ease;
}

.style-editorial-card:hover
.style-editorial-arrow {
    opacity: 1;
    transform: translateY(0);
}

.style-editorial-arrow:hover {
    background: var(--primary);
    color: var(--white);
}


/* =====================================================
   CONTENT
===================================================== */

.style-editorial-content {
    padding: 20px 3px 0;
}


.style-editorial-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 10px;
}

.style-editorial-meta span {
    color: var(--text-light);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1.5px;
}

.style-editorial-meta span:first-child {
    color: var(--primary);
}


.style-editorial-content h3 {
    margin: 0 0 12px;

    font-family: var(--font-heading);

    font-size: 27px;

    font-weight: 500;

    line-height: 1.05;

    color: var(--heading-color);
}

.style-editorial-main
.style-editorial-content h3 {
    font-size: 34px;
}

.style-editorial-content h3 em {
    font-style: italic;
    font-weight: 400;
}


.style-editorial-content p {
    max-width: 390px;

    margin: 0;

    color: var(--text-light);

    font-size: 15px;

    line-height: 1.8;
}


/* =====================================================
   READ LINK
===================================================== */

.style-read-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 18px;

    padding-bottom: 6px;

    border-bottom: 1px solid var(--border-color);

    color: var(--heading-color);

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 1.3px;

    text-transform: uppercase;

    transition: var(--transition);
}

.style-read-link i {
    color: var(--primary);

    transition: transform .3s ease;
}

.style-read-link:hover {
    color: var(--primary);

    border-color: var(--primary);
}

.style-read-link:hover i {
    transform: translateX(5px);
}


/* =====================================================
   BOTTOM EDITORIAL LINE
===================================================== */

.style-preview-footer {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 65px;

    color: var(--text-light);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 2px;
}

.style-preview-line {
    flex: 1;

    height: 1px;

    background: var(--border-color);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .style-preview-section {
        padding: 50px 0;
    }

    .style-preview-header {
        grid-template-columns: 1fr 300px;

        gap: 45px;

        margin-bottom: 50px;
    }

    .style-preview-title h2 {
        font-size: 75px;
    }

    .style-editorial-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .style-editorial-main {
        grid-column: 1 / -1;

        margin-top: 0;
    }

    .style-editorial-main
    .style-editorial-image {
        aspect-ratio: 1.5;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .style-preview-section {
        padding: 75px 0;
    }

    .style-preview-header {
        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 30px;

        margin-bottom: 45px;
    }

    .style-preview-title h2 {
        font-size: 65px;

        letter-spacing: -2px;
    }

    .style-preview-intro {
        width: 100%;
    }

    .style-preview-intro p {
        max-width: 100%;
    }

    .style-editorial-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .style-editorial-main {
        grid-column: auto;
    }

    .style-editorial-main
    .style-editorial-image {
        aspect-ratio: .85;
    }

    .style-editorial-image {
        aspect-ratio: .85;
    }

    .style-editorial-main
    .style-editorial-content h3,
    .style-editorial-content h3 {
        font-size: 27px;
    }

    .style-preview-footer {
        margin-top: 50px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .style-preview-title h2 {
        font-size: 55px;
    }

    .style-editorial-content {
        padding-top: 16px;
    }

    .style-editorial-content h3 {
        font-size: 25px;
    }

    .style-editorial-main
    .style-editorial-content h3 {
        font-size: 29px;
    }

}
.section-alt {
    padding-top: 40px;
    padding-bottom: 60px;
}
/* =================================================
   SHOP PAGE HERO - EDITORIAL
   Unique styles - does not affect other page heroes
================================================= */

.shop-page-hero {
    position: relative;
    min-height: 560px;
    padding: 55px 0 45px;
    background: var(--bg-secondary);
    overflow: hidden;
}

.shop-page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.shop-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    pointer-events: none;
}

.shop-page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.shop-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    pointer-events: none;
}

.shop-page-hero-inner {
    position: relative;
    z-index: 2;

    width: min(92%, var(--container-width));
    min-height: 460px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shop-page-hero-top,
.shop-page-hero-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.shop-page-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 100px;

    padding: 70px 0;
}

.shop-page-hero-title .section-subtitle {
    display: block;
    margin-bottom: 18px;

    color: var(--primary);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.shop-page-hero-title h1 {
    margin: 0;

    font-family: var(--font-heading);
    font-size: clamp(90px, 12vw, 175px);
    font-weight: 400;
    line-height: 0.72;
    letter-spacing: -6px;

    color: var(--white);
}

.shop-page-hero-title h1 em {
    display: block;

    margin-left: 85px;

    color: var(--white);
    font-style: italic;
    font-weight: 400;
}

.shop-page-hero-description {
    max-width: 390px;
    padding-bottom: 5px;
}

.shop-page-hero-description p {
    margin: 0;

    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    line-height: 2;
}

.shop-page-hero-line {
    display: block;

    width: 55px;
    height: 1px;

    margin: 25px 0 18px;

    background: var(--primary);
}

.shop-page-hero-note {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
}

.shop-page-hero-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.shop-page-hero-scroll {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--primary);
}

.shop-page-hero-scroll i {
    font-size: 10px;
}


/* =================================================
   SHOP PAGE HERO - RESPONSIVE
================================================= */

@media (max-width: 991px) {

    .shop-page-hero {
        min-height: 500px;
        padding: 45px 0 35px;
    }

    .shop-page-hero-inner {
        min-height: 420px;
    }

    .shop-page-hero-content {
        grid-template-columns: 1fr 0.7fr;
        gap: 50px;
        padding: 55px 0;
    }

    .shop-page-hero-title h1 {
        font-size: clamp(80px, 12vw, 130px);
    }

    .shop-page-hero-title h1 em {
        margin-left: 55px;
    }
}


@media (max-width: 767px) {

    .shop-page-hero {
        min-height: auto;
        padding: 35px 0 30px;
    }

    .shop-page-hero-inner {
        min-height: auto;
    }

    .shop-page-hero-top {
        font-size: 8px;
    }

    .shop-page-hero-content {
        display: block;
        padding: 70px 0 65px;
    }

    .shop-page-hero-title h1 {
        font-size: 82px;
        letter-spacing: -4px;
    }

    .shop-page-hero-title h1 em {
        margin-left: 35px;
    }

    .shop-page-hero-description {
        max-width: 100%;
        margin-top: 55px;
    }

    .shop-page-hero-bottom {
        font-size: 8px;
    }

    .shop-page-hero-scroll {
        display: none;
    }
}


@media (max-width: 480px) {

    .shop-page-hero-title h1 {
        font-size: 68px;
    }

    .shop-page-hero-title h1 em {
        margin-left: 20px;
    }

    .shop-page-hero-description {
        margin-top: 45px;
    }

    .shop-page-hero-top,
    .shop-page-hero-bottom {
        letter-spacing: 1.2px;
    }
}
/* =====================================================
   CONTACT LOCATION - SHOP IMAGE + MAP
===================================================== */

.contact-location-visuals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    width: 100%;
}


/* SHOP IMAGE */

.contact-location-image {
    position: relative;
    height: 360px;
    overflow: hidden;
}

.contact-location-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
    padding-bottom: 20px;
}

.contact-location-image:hover img {
    transform: scale(1.04);
}

.location-image-label {
    position: absolute;
    left: 18px;
    bottom: 18px;

    padding: 8px 12px;

    background: var(--white);
    color: var(--heading-color);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
}


/* MAP */

.contact-location-map {
    height: 360px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.contact-location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}


/* MOBILE */

@media (max-width: 767px) {

    .contact-location-visuals {
        grid-template-columns: 1fr;
        gap: 15px;
        padding-bottom: 20px;
    }

    .contact-location-image,
    .contact-location-map {
        height: 320px;
    }

}

/* =========================================================
   VELORA CONTACT PAGE
   CENTER SPLIT CONTACT EXPERIENCE
   Existing navbar / footer / location image / map preserved
========================================================= */

.contact-main {
    position: relative;
    padding: 50px 0 100px;
    background: var(--bg-color);
}

.contact-split {
    position: relative;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 0;
    min-height: 650px;
    overflow: hidden;
    background: var(--heading-color);
    box-shadow: var(--shadow-md);
}

/* LEFT CONTENT */

.contact-split-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 75px clamp(35px, 6vw, 90px);
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            rgba(32, 32, 32, 0.96),
            rgba(60, 45, 36, 0.92)
        ),
        url("../images/contact.jpg") center / cover no-repeat;
}

.contact-split-copy::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -130px;
    top: -130px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.contact-split-copy::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -85px;
    top: -85px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
}

.contact-split-kicker {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 25px;
    color: var(--secondary);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-split-copy h2 {
    position: relative;
    z-index: 2;
    max-width: 570px;
    margin: 0 0 28px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(58px, 6vw, 92px);
    font-weight: 500;
    line-height: 0.86;
    letter-spacing: -2px;
}

.contact-split-copy h2 em {
    display: block;
    color: var(--secondary);
    font-style: italic;
    font-weight: 400;
}

.contact-split-intro {
    position: relative;
    z-index: 2;
    max-width: 450px;
    margin: 0 0 40px;
    color: rgba(255, 255, 255, 0.76);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.9;
    text-align: left;
    text-align: justify;
}

.contact-split-details {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 570px;
}

.contact-split-detail {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-split-detail > span {
    display: block;
    margin-bottom: 17px;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 17px;
}

.contact-split-detail strong {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.contact-split-detail p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
}

.contact-split-social {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 42px;
}

.contact-split-social > span {
    margin-right: 7px;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.contact-split-social a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--white);
    font-size: 11px;
    transition: var(--transition);
}

.contact-split-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}


/* FORM CARD */

.contact-form-card {
    position: relative;
    z-index: 3;
    align-self: center;
    margin: 35px 35px 35px -35px;
    padding: 48px clamp(28px, 4vw, 55px);
    background: var(--card-bg);
    color: var(--text-color);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.20);
}

.contact-form-card-head {
    margin-bottom: 30px;
}

.contact-form-card-head > span {
    display: block;
    margin-bottom: 9px;
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;

}

.contact-form-card-head h3 {
    margin: 0 0 8px;
    color: var(--heading-color);
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 500;
}

.contact-form-card-head p {
    max-width: 430px;
    margin: 0;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.75;
    text-align: left;
}

.contact-form-card .contact-form {
    margin: 0;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form-card .form-group {
    margin-bottom: 18px;
}

.contact-form-card .form-group label {
    margin-bottom: 7px;
    color: var(--heading-color);
    font-size: 13px;
    letter-spacing: 1px;
}

.contact-form-card .form-group input,
.contact-form-card .form-group textarea,
.contact-form-card .form-group select {
    min-height: 46px;
    padding: 11px 13px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    background: var(--card-bg);
    color: var(--text-color);
    font-size: 13px;
}

.contact-form-card .form-group textarea {
    min-height: 105px;
    resize: vertical;
}

.contact-form-card .form-group input::placeholder,
.contact-form-card .form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.75;
}

.contact-form-card .form-group input:focus,
.contact-form-card .form-group textarea:focus,
.contact-form-card .form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(176, 122, 90, 0.08);
}

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 2px 0 22px;
    cursor: pointer;
}

.contact-consent input {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.contact-consent span {
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.55;
}

.contact-submit {
    width: 100%;
    min-height: 48px;
}


/* LOCATION - EXISTING DESIGN PRESERVED */

.contact-location-block {
    margin-top: 90px;
}

.contact-location-visuals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    width: 100%;
}

.contact-location-image {
    position: relative;
    height: 360px;
    overflow: hidden;
}

.contact-location-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.contact-location-image:hover img {
    transform: scale(1.04);
}

.location-image-label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 12px;
    background: var(--white);
    color: var(--heading-color);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.contact-location-map {
    height: 360px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.contact-location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.contact-location-content {
    padding: 45px 0 0;
}

.contact-location-content h3 {
    margin: 8px 0 12px;
    font-size: 32px;
}

.contact-location-content > p {
    max-width: 560px;
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.8;
    text-align: left;
}

.contact-location-details {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 22px;
}

.contact-location-details > div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text-color);
    font-size: 11px;
}

.contact-location-details i {
    color: var(--primary);
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .contact-main {
        padding: 65px 0 50px;
    }

    .contact-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .contact-split-copy {
        padding: 65px 55px;
    }

    .contact-split-copy h2 {
        font-size: clamp(58px, 10vw, 84px);
    }

    .contact-form-card {
        margin: -35px 35px 35px;
    }

    .contact-location-block {
        margin-top: 65px;
    }

}


@media (max-width: 767px) {

    .contact-main {
        padding: 55px 0 65px;
    }

    .contact-split-copy {
        padding: 55px 28px 70px;
    }

    .contact-split-copy h2 {
        font-size: 60px;
        letter-spacing: -1.5px;
    }

    .contact-split-intro {
        font-size: 11px;
        margin-bottom: 35px;
    }

    .contact-split-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-split-detail {
        display: grid;
        grid-template-columns: 30px 1fr;
        gap: 10px;
    }

    .contact-split-detail > span {
        margin: 0;
    }

    .contact-split-detail strong {
        margin-bottom: 5px;
        font-size: 15px;
    }

    .contact-split-social {
        margin-top: 32px;
    }

    .contact-form-card {
        margin: -30px 15px 25px;
        padding: 35px 22px;
    }

    .contact-form-card-head h3 {
        font-size: 32px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-location-block {
        margin-top: 45px;
    }

    .contact-location-visuals {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-location-image,
    .contact-location-map {
        height: 320px;
    }

    .contact-location-content {
        padding-top: 35px;
    }

}


@media (max-width: 480px) {

    .contact-split-copy {
        padding: 48px 22px 60px;
    }

    .contact-split-copy h2 {
        font-size: 52px;
    }

    .contact-form-card {
        margin-left: 10px;
        margin-right: 10px;
    }

    .contact-form-card-head h3 {
        font-size: 29px;
    }

}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    line-height: 1;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 30px;
    letter-spacing: 7px;
    color: var(--heading-color);
}
/* Initial state */
.hero-subtitle,
.hero-content h1,
.hero-content p,
.hero-buttons {
    opacity: 0;
    transform: translateY(40px);
}

/* Animate */
.hero-subtitle {
    animation: revealUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.hero-content h1 {
    animation: revealUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.hero-content p {
    animation: revealUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.hero-buttons {
    animation: revealUp 0.8s ease-out forwards;
    animation-delay: 0.8s;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   VELORA — FINAL HOME POLISH
   Scoped only to the HOME hero + WHY VELORA section.
   Existing styles remain intact.
========================================================= */

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    width: min(100%, 760px);
    max-width: 760px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content .hero-subtitle {
    display: block;
    width: 100%;
    text-align: center;
}

.hero-content h1 {
    width: 100%;
    margin: 14px auto 18px;
    text-align: center;
}

.hero-content p {
    width: min(100%, 560px);
    margin: 0 auto 28px;
    text-align: center;
}

.hero-buttons {
    width: 100%;
    justify-content: center;
    align-items: center;
}

.hero-subtitle,
.hero-content h1,
.hero-content p,
.hero-buttons {
    opacity: 0;
    transform: translateY(28px);
    animation-name: veloraHeroReveal;
    animation-duration: 0.9s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: forwards;
}

.hero-content .hero-subtitle { animation-delay: 0.15s; }
.hero-content h1 { animation-delay: 0.30s; }
.hero-content p { animation-delay: 0.45s; }
.hero-content .hero-buttons { animation-delay: 0.60s; }

@keyframes veloraHeroReveal {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Reduce the large gap immediately before WHY VELORA */
.style-preview-section:has(+ .section-alt .feature-grid) {
    padding-bottom: 45px;
}

.section-alt:has(.feature-grid) {
    padding-top: 45px;
    padding-bottom: 50px;
}

.section-alt:has(.feature-grid) .section-heading {
    margin-bottom: 38px;
    text-align: center;
}

.section-alt:has(.feature-grid) .section-heading p {
    margin-left: auto;
    margin-right: auto;
    
}

/* Equal padding + centered content for every Why Velora card */
.section-alt:has(.feature-grid) .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.section-alt:has(.feature-grid) .feature-card {
    min-height: 245px;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section-alt:has(.feature-grid) .feature-icon {
    flex: 0 0 auto;
    margin: 0 auto 18px;
}

.section-alt:has(.feature-grid) .feature-card h3 {
    margin: 0 0 9px;
    text-align: center;
}

.section-alt:has(.feature-grid) .feature-card p {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    text-align: center;
}

/* Elegant staggered entrance */
.section-alt:has(.feature-grid) .feature-card {
    opacity: 0;
    transform: translateY(26px);
    animation: veloraFeatureReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.section-alt:has(.feature-grid) .feature-card:nth-child(1) { animation-delay: 0.10s; }
.section-alt:has(.feature-grid) .feature-card:nth-child(2) { animation-delay: 0.22s; }
.section-alt:has(.feature-grid) .feature-card:nth-child(3) { animation-delay: 0.34s; }

@keyframes veloraFeatureReveal {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
    .hero-content {
        width: min(100%, 680px);
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-content h1 {
        margin-top: 12px;
        margin-bottom: 16px;
    }

    .hero-content p { margin-bottom: 24px; }

    .style-preview-section:has(+ .section-alt .feature-grid) {
        padding-bottom: 30px;
    }

    .section-alt:has(.feature-grid) {
        padding-top: 35px;
        padding-bottom: 45px;
    }

    .section-alt:has(.feature-grid) .section-heading {
        margin-bottom: 28px;
    }

    .section-alt:has(.feature-grid) .feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-alt:has(.feature-grid) .feature-card {
        min-height: 220px;
        padding: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-subtitle,
    .hero-content h1,
    .hero-content p,
    .hero-buttons,
    .section-alt:has(.feature-grid) .feature-card {
        opacity: 1;
        transform: none;
        animation: none;
    }
}
/* =========================================================
   VELORA HOME 2
   FEATURED CATEGORIES - SCROLL ANIMATION
   ========================================================= */


/* -----------------------------------------
   DEFAULT - LEFT SIDE
   ----------------------------------------- */

.home2-category-card.reveal {
    opacity: 0;
    transform: translateX(-90px);

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}


/* -----------------------------------------
   EVEN CARDS - RIGHT SIDE
   ----------------------------------------- */

.home2-category-card.reveal:nth-child(even) {
    transform: translateX(90px);
}


/* -----------------------------------------
   WHEN SCROLLED INTO VIEW
   Existing script.js adds .visible
   ----------------------------------------- */

.home2-category-card.reveal.visible {
    opacity: 1;
    transform: translateX(0);
}


/* -----------------------------------------
   STAGGER EFFECT
   ----------------------------------------- */

.home2-category-card.reveal:nth-child(1) {
    transition-delay: 0.05s;
}

.home2-category-card.reveal:nth-child(2) {
    transition-delay: 0.15s;
}

.home2-category-card.reveal:nth-child(3) {
    transition-delay: 0.25s;
}

.home2-category-card.reveal:nth-child(4) {
    transition-delay: 0.35s;
}

.home2-category-card.reveal:nth-child(5) {
    transition-delay: 0.45s;
}

.home2-category-card.reveal:nth-child(6) {
    transition-delay: 0.55s;
}

.home2-category-card.reveal:nth-child(7) {
    transition-delay: 0.65s;
}

.home2-category-card.reveal:nth-child(8) {
    transition-delay: 0.75s;
}


/* -----------------------------------------
   MOBILE
   ----------------------------------------- */

@media (max-width: 768px) {

    .home2-category-card.reveal,
    .home2-category-card.reveal:nth-child(even) {
        opacity: 0;
        transform: translateY(60px);
    }

    .home2-category-card.reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}


/* -----------------------------------------
   REDUCED MOTION
   ----------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .home2-category-card.reveal,
    .home2-category-card.reveal:nth-child(even),
    .home2-category-card.reveal.visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* =========================================================
   VELORA HOME 2
   INSTAGRAM / SOCIAL EDIT
   ========================================================= */

.home2-instagram-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}


/* -----------------------------------------
   HEADING
   ----------------------------------------- */

.home2-instagram-heading {
    max-width: 650px;
    margin: 0 auto 50px;
    text-align: center;
}

.home2-instagram-heading .section-subtitle {
    display: block;
    margin-bottom: 10px;
}

.home2-instagram-heading .section-title {
    margin-bottom: 18px;
}

.home2-instagram-heading p {
    max-width: 520px;
    margin: 0 auto 22px;
    color: var(--text-light);
}


/* -----------------------------------------
   INSTAGRAM USERNAME
   ----------------------------------------- */

.home2-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--heading-color);

    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;

    text-decoration: none;

    transition: var(--transition);
}

.home2-instagram-link i {
    font-size: 1rem;
}

.home2-instagram-link:hover {
    color: var(--primary);
}


/* -----------------------------------------
   IMAGE GRID
   ----------------------------------------- */

.home2-instagram-grid {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 14px;
}


/* -----------------------------------------
   IMAGE ITEM
   ----------------------------------------- */

.home2-instagram-item {
    position: relative;

    display: block;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: var(--card-bg);
}


/* -----------------------------------------
   IMAGE
   ----------------------------------------- */

.home2-instagram-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}


/* -----------------------------------------
   OVERLAY
   ----------------------------------------- */

.home2-instagram-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 8px;

    background: rgba(0, 0, 0, 0.55);

    color: #fff;

    opacity: 0;

    transition:
        opacity 0.4s ease;
}

.home2-instagram-overlay i {
    font-size: 1.5rem;
}

.home2-instagram-overlay span {
    font-size: 0.7rem;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* -----------------------------------------
   HOVER
   ----------------------------------------- */

.home2-instagram-item:hover img {
    transform: scale(1.08);
}

.home2-instagram-item:hover .home2-instagram-overlay {
    opacity: 1;
}


/* -----------------------------------------
   BOTTOM BUTTON
   ----------------------------------------- */

.home2-instagram-bottom {
    display: flex;

    justify-content: center;

    margin-top: 45px;
}

.home2-instagram-bottom .btn-outline {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
    background: transparent;
}

.home2-instagram-bottom .btn-outline:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}


/* =========================================================
   SCROLL REVEAL
   Uses existing .reveal / .visible JavaScript
   ========================================================= */

.home2-instagram-item.reveal {
    opacity: 0;

    transform: translateY(60px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}


/* When visible */

.home2-instagram-item.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* Stagger */

.home2-instagram-item.reveal:nth-child(1) {
    transition-delay: 0.05s;
}

.home2-instagram-item.reveal:nth-child(2) {
    transition-delay: 0.15s;
}

.home2-instagram-item.reveal:nth-child(3) {
    transition-delay: 0.25s;
}

.home2-instagram-item.reveal:nth-child(4) {
    transition-delay: 0.35s;
}

.home2-instagram-item.reveal:nth-child(5) {
    transition-delay: 0.45s;
}

.home2-instagram-item.reveal:nth-child(6) {
    transition-delay: 0.55s;
}


/* -----------------------------------------
   TABLET
   ----------------------------------------- */

@media (max-width: 1000px) {

    .home2-instagram-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* -----------------------------------------
   MOBILE
   ----------------------------------------- */

@media (max-width: 600px) {

    .home2-instagram-section {
        padding: 75px 0;
    }

    .home2-instagram-heading {
        margin-bottom: 35px;
    }

    .home2-instagram-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;
    }

    .home2-instagram-bottom {
        margin-top: 35px;
    }

}


/* -----------------------------------------
   REDUCED MOTION
   ----------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .home2-instagram-item.reveal,
    .home2-instagram-item.reveal.visible {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .home2-instagram-item img {
        transition: none;
    }

}
/* =========================================================
   HOME 2 LOOKBOOK - PREMIUM EDITORIAL
========================================================= */

.home2-lookbook-item {
    min-height: 320px;
    background: var(--black);
}

.home2-lookbook-item.large {
    min-height: 660px;
}

.home2-lookbook-overlay {
    padding: 35px;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.05) 75%
        );
}

.home2-lookbook-overlay h3 {
    font-size: 2rem;
    margin-top: 7px;
}

.home2-lookbook-overlay p {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
    letter-spacing: 0.5px;
}

/* Hover */

.home2-lookbook-item:hover .home2-lookbook-overlay h3 {
    transform: translateY(-3px);
}

.home2-lookbook-overlay h3 {
    transition: transform 0.35s ease;
}


/* Mobile */

@media (max-width: 767px) {

    .home2-lookbook-item.large {
        min-height: 450px;
    }

    .home2-lookbook-overlay {
        padding: 25px;
    }

    .home2-lookbook-overlay h3 {
        font-size: 1.7rem;
    }

}
/* HOME 2 - EXPLORE LOOKS BUTTON */

.home2-hero-buttons .btn-outline {
    color: var(--primary);;
    border-color: var(--primary);
    background: transparent;
}

.home2-hero-buttons .btn-outline:hover {
    color: #ffffff;
    background: var(--primary);
    border-color:var(--primary);
}

/* =========================================================
   VELORA — ABOUT PAGE ONLY
   Scoped CSS — does not disturb other pages
========================================================= */

.about-page {
    overflow: hidden;
}


/* =========================================================
   OUR STORY
========================================================= */

.about-story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.about-story-heading {
    position: sticky;
    top: 120px;
}

.about-story-copy {
    max-width: 650px;
}

.about-story-copy p {
    margin-bottom: 24px;
    line-height: 1.9;
    color: var(--text-light);
    text-align: justify;
}


/* =========================================================
   VELORA EDIT
========================================================= */


    
.about-gender-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 90px;
}

.about-gender-card {
    max-width: 330px;
    margin: 0 auto;
}

.about-gender-card {
    position: relative;
    display: block;
    min-height: 560px;
    overflow: hidden;
    background: var(--black);
}

@media (max-width: 768px) {
    .about-gender-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 20px;
    }

    .about-gender-card {
        max-width: 100%;
    }
}

.about-gender-card img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-gender-card:hover img {
    transform: scale(1.05);
}

.about-gender-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 38px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.78),
        rgba(0,0,0,0.04) 80%
    );
}

.about-gender-overlay span {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-size: 0.65rem;
    letter-spacing: 2px;
}

.about-gender-overlay h3 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
}

.about-gender-overlay p {
    margin-top: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
}


/* =========================================================
   VISION & MISSION
========================================================= */

.about-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-vision-card {
    position: relative;
    padding: 55px 50px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.about-vision-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.07);
}

.about-card-number {
    display: block;
    margin-bottom: 35px;
    color: var(--primary);
    font-size: 0.65rem;
    letter-spacing: 2px;
}

.about-small-title {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 20px;
    letter-spacing: 2px;
}

.about-vision-card h3 {
    max-width: 500px;
    margin-bottom: 22px;
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.2;
}

.about-vision-card p {
    max-width: 600px;
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.85;
    font-size: 15px;
    text-align: justify;
}


/* =========================================================
   PHILOSOPHY
========================================================= */

.about-philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-philosophy-image {
    overflow: hidden;
}

.about-philosophy-image img {
    width: 100%;
    height: 620px;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
    padding-top: 80px;
}

.about-philosophy-image:hover img {
    transform: scale(1.03);
}

.about-philosophy-content {
    max-width: 600px;
}

.about-philosophy-content .section-title {
    margin-bottom: 28px;
}


.about-philosophy-content p {
    
    line-height: 1.9;
    color: var(--text-light);
    text-align: justify;
    
}

.about-values-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 25px;
    margin-top: 20px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.about-values-inline span {
    color: var(--heading-color);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* =========================================================
   VALUES
========================================================= */

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.about-value-card {
    min-height: 240px;
    padding: 32px 25px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.about-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.about-value-card > span {
    display: block;
    margin-bottom: 35px;
    color: var(--primary);
    font-size: 0.65rem;
    letter-spacing: 2px;
}

.about-value-card h3 {
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
}

.about-value-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}


/* =========================================================
   HAPPY CUSTOMER EXPERIENCE
========================================================= */

.about-experience-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 90px;
    align-items: center;
}

.about-experience-content {
    max-width: 650px;
}

.about-experience-content .section-title {
    margin-bottom: 25px;
}

.about-experience-content p {
    margin-bottom: 18px;
    color: var(--text-light);
    line-height: 1.9;
    text-align: justify;
}

.about-experience-points {
    margin-top: 35px;
    border-top: 1px solid var(--border-color);
}

.about-experience-points div {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 17px 0;
    border-bottom: 1px solid var(--border-color);
}

.about-experience-points strong {
    color: var(--primary);
    font-size: 15px;
    letter-spacing: 1.5px;
}

.about-experience-points span {
    color: var(--heading-color);
    font-size: 15px;
    letter-spacing: 0.8px;
}

.about-experience-stats {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--border-color);
}

.about-stat {
    padding: 35px;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
}

.about-stat:last-child {
    border-bottom: 0;
}

.about-stat strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 500;
}

.about-stat span {
    color: var(--text-light);
    font-size: 15px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}


/* =========================================================
   CUSTOMER REVIEWS
========================================================= */

.about-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-review-card {
    padding: 35px 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.about-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.about-stars {
    margin-bottom: 22px;
    color: var(--primary);
    font-size: 0.8rem;
    letter-spacing: 3px;
}

.about-review-card > p {
    min-height: 125px;
    margin-bottom: 28px;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    line-height: 1.6;
    font-style: italic;
}

.about-review-author {
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
}

.about-review-author strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.75rem;
}

.about-review-author span {
    color: var(--text-light);
    font-size: 0.62rem;
    letter-spacing: 1px;
}


/* =========================================================
   MANIFESTO
========================================================= */

.about-manifesto {
    text-align: center;
}

.about-manifesto-inner {
    max-width: 900px;
    margin: 0 auto;
}

.about-manifesto blockquote {
    margin: 30px auto;
    color: var(--heading-color);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    font-weight: 500;
}

.about-manifesto-brand {
    color: var(--primary);
    font-size: 15px;
    letter-spacing: 3px;
}


/* =========================================================
   CTA
========================================================= */

.about-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-cta-inner .section-title {
    margin-bottom: 20px;
}

.about-cta-inner p {
    margin-bottom: 28px;
    color: var(--text-light);
    text-align: justify;
    padding-left: 180px;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.about-page .reveal {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22,0.61,0.36,1);
}

.about-page .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-gender-card:nth-child(2).reveal,
.about-vision-card:nth-child(2).reveal,
.about-review-card:nth-child(2).reveal {
    transition-delay: 0.12s;
}

.about-value-card:nth-child(2).reveal {
    transition-delay: 0.1s;
}

.about-value-card:nth-child(3).reveal {
    transition-delay: 0.2s;
}

.about-value-card:nth-child(4).reveal {
    transition-delay: 0.3s;
}

.about-review-card:nth-child(3).reveal {
    transition-delay: 0.24s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .about-story-grid,
    .about-philosophy-grid,
    .about-experience-grid {
        gap: 50px;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-gender-card,
    .about-gender-card img {
        min-height: 480px;
    }

    .about-philosophy-image img {
        height: 520px;
    }

    .about-review-card > p {
        min-height: 150px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .about-story-grid,
    .about-philosophy-grid,
    .about-experience-grid,
    .about-gender-grid,
    .about-vision-grid,
    .about-reviews-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-story-heading {
        position: static;
    }

    .about-gender-card,
    .about-gender-card img {
        min-height: 430px;
    }

    .about-gender-overlay {
        padding: 25px;
    }

    .about-gender-overlay h3 {
        font-size: 1.7rem;
    }

    .about-vision-card {
        padding: 40px 30px;
    }

    .about-vision-card h3 {
        font-size: 1.8rem;
    }

    .about-philosophy-image img {
        height: 450px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-value-card {
        min-height: auto;
    }

    .about-experience-stats {
        margin-top: 10px;
    }

    .about-review-card > p {
        min-height: auto;
    }

    .about-manifesto blockquote {
        font-size: 2rem;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .about-gender-card,
    .about-gender-card img {
        min-height: 360px;
    }

    .about-philosophy-image img {
        height: 380px;
    }

    .about-values-inline {
        flex-direction: column;
        gap: 12px;
    }

    .about-vision-card {
        padding: 32px 24px;
    }

    .about-stat {
        padding: 28px 24px;
    }

    .about-review-card {
        padding: 30px 24px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-page .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .about-gender-card img,
    .about-philosophy-image img {
        transition: none;
    }
}
/* =========================================================
   VISION & MISSION - LEFT / RIGHT REVEAL
========================================================= */

.about-vision-card {
    opacity: 0;
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Vision - LEFT to RIGHT */
.about-vision-card:first-child {
    transform: translateX(-100px);
}

/* Mission - RIGHT to LEFT */
.about-vision-card:last-child {
    transform: translateX(100px);
}

/* When visible */
.about-vision-card.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slight delay for Mission */
.about-vision-card:last-child {
    transition-delay: 0.15s;
}


/* Mobile */
@media (max-width: 767px) {
    .about-vision-card:first-child,
    .about-vision-card:last-child {
        transform: translateY(60px);
    }

    .about-vision-card.visible {
        transform: translateY(0);
    }
}


/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .about-vision-card,
    .about-vision-card:first-child,
    .about-vision-card:last-child {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* =========================================================
   WHAT WE BELIEVE
   UNIQUE SHAPED CARDS + NEW ANIMATION
   ABOUT PAGE ONLY
========================================================= */

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-value-card {
    position: relative;
    min-height: 270px;
    padding: 35px 28px;
    overflow: hidden;

    background: var(--card-bg);
    border: 1px solid var(--border-color);

    opacity: 0;

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


/* =========================
   DIFFERENT CARD SHAPES
========================= */

.about-value-card:nth-child(1) {
    border-radius: 0 55px 0 55px;
    transform: translateX(-100px) rotate(-3deg);
}

.about-value-card:nth-child(2) {
    border-radius: 55px 0 55px 0;
    transform: translateY(80px) rotate(3deg);
}

.about-value-card:nth-child(3) {
    border-radius: 55px 0 55px 0;
    transform: translateY(80px) rotate(-3deg);
}

.about-value-card:nth-child(4) {
    border-radius: 0 55px 0 55px;
    transform: translateX(100px) rotate(3deg);
}


/* =========================
   DECORATIVE CIRCLE
========================= */

.about-value-card::before {
    content: "";
    position: absolute;

    width: 90px;
    height: 90px;

    top: -42px;
    right: -42px;

    border: 1px solid var(--primary);
    border-radius: 50%;

    opacity: 0.3;

    transition:
        transform 0.5s ease,
        opacity 0.5s ease;
}


/* =========================
   CARD NUMBER
========================= */

.about-value-card > span {
    position: relative;
    z-index: 2;

    display: block;
    margin-bottom: 38px;

    color: var(--primary);

    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;

    transition: transform 0.4s ease;
}


/* =========================
   TITLE
========================= */

.about-value-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 14px;

    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;

    transition:
        transform 0.4s ease,
        letter-spacing 0.4s ease;
}


/* =========================
   DESCRIPTION
========================= */

.about-value-card p {
    position: relative;
    z-index: 2;

    max-width: 250px;

    color: var(--text-light);

    font-size: 15px;
    line-height: 1.85;
}


/* =========================
   SCROLL ANIMATION
========================= */

.about-value-card.visible {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0);
}


/* Stagger animation */

.about-value-card:nth-child(1) {
    transition-delay: 0.05s;
}

.about-value-card:nth-child(2) {
    transition-delay: 0.18s;
}

.about-value-card:nth-child(3) {
    transition-delay: 0.31s;
}

.about-value-card:nth-child(4) {
    transition-delay: 0.44s;
}


/* =========================
   HOVER EFFECT
========================= */

.about-value-card:hover {
    transform: translateY(-10px) rotate(0deg) !important;

    border-color: var(--primary);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.09);
}

.about-value-card:hover::before {
    transform: scale(1.5);
    opacity: 0.7;
}

.about-value-card:hover h3 {
    transform: translateX(6px);
    letter-spacing: 0.5px;
}

.about-value-card:hover > span {
    transform: translateX(5px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-value-card {
        min-height: 250px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-value-card,
    .about-value-card:nth-child(1),
    .about-value-card:nth-child(2),
    .about-value-card:nth-child(3),
    .about-value-card:nth-child(4) {
        min-height: 240px;

        transform: translateY(60px);
    }

    .about-value-card.visible {
        transform: translateY(0);
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .about-value-card {
        padding: 30px 24px;
        min-height: 220px;
    }

    .about-value-card h3 {
        font-size: 1.6rem;
    }

}


/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    .about-value-card,
    .about-value-card:nth-child(1),
    .about-value-card:nth-child(2),
    .about-value-card:nth-child(3),
    .about-value-card:nth-child(4) {
        opacity: 1;
        transform: none;
        transition: none;
    }

}
/* =========================================================
   VELORA CUSTOMER TESTIMONIAL
   PREMIUM CIRCLE IMAGE + ARROWS + SLIDER
   ABOUT PAGE ONLY
========================================================= */

.about-testimonial {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    max-width: 1000px;
    margin: 0 auto;
}


/* =========================
   SLIDER AREA
========================= */

.about-testimonial-track {
    position: relative;

    width: 100%;
    max-width: 720px;

    min-height: 430px;

    overflow: hidden;
}


/* =========================
   EACH REVIEW
========================= */

.about-testimonial-slide {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding: 15px 70px;

    text-align: center;

    opacity: 0;
    visibility: hidden;

    transform: translateX(50px);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease,
        visibility 0.6s ease;
}


/* ACTIVE REVIEW */

.about-testimonial-slide.active {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}


/* =========================
   CIRCLE CUSTOMER IMAGE
========================= */

.testimonial-avatar {
    position: relative;

    width: 105px;
    height: 105px;

    margin-bottom: 25px;

    padding: 5px;

    border: 1px solid var(--primary);

    border-radius: 50%;

    background: var(--card-bg);
}


/* Outer decorative circle */

.testimonial-avatar::before {
    content: "";

    position: absolute;

    inset: -7px;

    border: 1px solid var(--border-color);

    border-radius: 50%;

    transition: transform 0.5s ease;
}


/* Image */

.testimonial-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}


/* Active image animation */

.about-testimonial-slide.active
.testimonial-avatar::before {
    transform: rotate(45deg);
}


/* =========================
   STARS
========================= */

.about-testimonial-slide .about-stars {
    margin-bottom: 22px;

    color: var(--primary);

    font-size: 0.85rem;

    letter-spacing: 4px;
}


/* =========================
   REVIEW TEXT
========================= */

.about-testimonial-slide .testimonial-text {
    max-width: 600px;

    margin: 0 auto 28px;

    color: var(--text-light);

    font-family: var(--font-heading);

    font-size: 1.35rem;

    line-height: 1.8;
}


/* =========================
   AUTHOR
========================= */

.about-testimonial-slide .about-review-author {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 5px;
}


.about-testimonial-slide
.about-review-author strong {
    color: var(--heading-color);

    font-size: 0.78rem;

    letter-spacing: 1px;
}


.about-testimonial-slide
.about-review-author span {
    color: var(--primary);

    font-size: 0.62rem;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================
   ARROWS
========================= */

.testimonial-arrow {
    position: absolute;

    top: 50%;
    z-index: 5;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border-color);

    background: var(--card-bg);

    color: var(--heading-color);

    font-size: 0.75rem;

    transform: translateY(-50%);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


/* LEFT */

.testimonial-prev {
    left: 0;
}


/* RIGHT */

.testimonial-next {
    right: 0;
}


/* Arrow hover */

.testimonial-arrow:hover {
    background: var(--primary);

    border-color: var(--primary);

    color: var(--white);

    transform:
        translateY(-50%)
        scale(1.08);
}


/* =========================
   DOTS
========================= */

.testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 10px;
}


.testimonial-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: var(--border-color);

    transition:
        width 0.3s ease,
        background 0.3s ease;
}


.testimonial-dot.active {
    width: 24px;

    border-radius: 10px;

    background: var(--primary);
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .about-testimonial-track {
        max-width: 650px;
    }

    .about-testimonial-slide {
        padding-left: 60px;
        padding-right: 60px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .about-testimonial-track {
        min-height: 500px;
    }

    .about-testimonial-slide {
        padding: 10px 45px;
    }

    .testimonial-avatar {
        width: 90px;
        height: 90px;

        margin-bottom: 22px;
    }

    .about-testimonial-slide
    .testimonial-text {
        font-size: 1.1rem;
        line-height: 1.75;
    }

    .testimonial-arrow {
        width: 40px;
        height: 40px;
    }

    .testimonial-prev {
        left: 0;
    }

    .testimonial-next {
        right: 0;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .about-testimonial-track {
        min-height: 520px;
    }

    .about-testimonial-slide {
        padding: 10px 40px;
    }

    .about-testimonial-slide
    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.65rem;
    }

}
/* =========================================================
   OUR STORY BANNER
========================================================= */

.about-story-banner {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: var(--black);
}

.about-story-banner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform 1.2s ease;
}

.about-story-banner:hover img {
    transform: scale(1.06);
}

.about-story-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.20),
            rgba(0, 0, 0, 0.60)
        );
}

.about-story-banner-content {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 30px;
    text-align: center;
    color: var(--white);
}

.about-story-banner-content span {
    margin-bottom: 15px;

    color: white;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.about-story-banner-content h1 {
    margin: 0 0 18px;

    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 500;
    line-height: 0.95;
}

.about-story-banner-content p {
    max-width: 520px;
    margin: 0;

    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.5px;
}


/* =========================================================
   BANNER REVEAL
========================================================= */

.about-story-banner-content span,
.about-story-banner-content h1,
.about-story-banner-content p {
    opacity: 0;
    transform: translateY(25px);
    animation: storyBannerReveal 0.9s ease forwards;
}

.about-story-banner-content h1 {
    animation-delay: 0.15s;
}

.about-story-banner-content p {
    animation-delay: 0.3s;
}

@keyframes storyBannerReveal {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .about-story-banner {
        height: 460px;
    }

}


@media (max-width: 767px) {

    .about-story-banner {
        height: 400px;
    }

    .about-story-banner-content {
        padding: 25px;
    }

    .about-story-banner-content span {
        font-size: 0.6rem;
        letter-spacing: 3px;
    }

    .about-story-banner-content h1 {
        font-size: 3.5rem;
    }

    .about-story-banner-content p {
        max-width: 340px;
        font-size: 0.7rem;
    }

}


@media (max-width: 480px) {

    .about-story-banner {
        height: 350px;
    }

    .about-story-banner-content h1 {
        font-size: 3rem;
    }

}
/* =====================================================
   VELORA LOGIN PAGE ONLY
===================================================== */

body.login-page {
    min-height: 100vh;
    background: #171513;
    color: #333;
}

.login-main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;

    background:
        radial-gradient(
            circle at top center,
            #f1e9e1 0%,
            #e8ded3 45%,
            #d8c9bb 100%
        );
}

/* VELORA LOGO */

.login-brand {
    margin-bottom: 22px;
    text-align: center;
}

.login-brand a {
    color: black;
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 7px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-brand a:hover {
    color: #b07a5a;
}

/* LOGIN CARD */

.login-page .auth-wrapper {
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-page .auth-card {
    width: 100%;
    max-width: 520px;
    padding: 50px;
    background: #faf8f5;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 25px 70px rgba(0,0,0,0.45);
}

/* HEADER */

.login-page .auth-header {
    text-align: center;
    margin-bottom: 35px;
}

.login-page .auth-header h1 {
    color: #202020;
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    margin: 8px 0 10px;
}

.login-page .auth-header p {
    color: #777;
    font-size: 13px;
}

/* INPUTS */

.login-page .form-group label {
    color: #202020;
}

.login-page .form-group input {
    background: #ffffff;
    color: #333;
    border: 1px solid #ded8d1;
}

.login-page .form-group input:focus {
    border-color: #b07a5a;
    box-shadow: 0 0 0 2px rgba(176,122,90,0.08);
}

.login-page .input-icon i {
    color: #8b8179;
}

/* BUTTON */

.login-page .auth-submit {
    background: #b07a5a;
    border-color: #b07a5a;
    color: #ffffff;
}

.login-page .auth-submit:hover {
    background: #8d5d43;
    border-color: #8d5d43;
    transform: translateY(-2px);
}

/* LINKS */

.login-page .forgot-link,
.login-page .auth-switch a {
    color: #b07a5a;
}

.login-page .forgot-link:hover,
.login-page .auth-switch a:hover {
    color: #8d5d43;
}

/* MOBILE */

@media (max-width: 767px) {

    .login-main {
        padding: 35px 18px;
    }

    .login-brand a {
        font-size: 32px;
        letter-spacing: 5px;
    }

    .login-page .auth-card {
        padding: 35px 22px;
    }

    .login-page .auth-header h1 {
        font-size: 42px;
    }

}
/* =====================================================
   LOGIN PAGE CONTROLS
===================================================== */

.login-page .login-controls {
    position: fixed;
    top: 22px;
    right: 25px;
    z-index: 9999;
    display: flex;
    gap: 10px;
}

.login-page .login-control-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.08);
    color: black;
    border: 1px solid rgba(255, 255, 255, 0.25);

    cursor: pointer;
    transition: all 0.3s ease;
}

.login-page .login-control-btn:hover {
    background: #b07a5a;
    border-color: #b07a5a;
    transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 767px) {

    .login-page .login-controls {
        top: 15px;
        right: 15px;
    }

    .login-page .login-control-btn {
        width: 38px;
        height: 38px;
    }

}
/* =========================================================
   VELORA LOGIN PAGE
   LOGIN PAGE ONLY
========================================================= */

body.login-page {
    min-height: 100vh;
    background: #e8ded3;
}


/* =========================================================
   LOGIN MAIN BACKGROUND
========================================================= */

.login-page .login-main {

    min-height: 100vh;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 70px 20px;

    background:
        radial-gradient(
            circle at top center,
            #f3ece5 0%,
            #e8ded3 48%,
            #d8c9bb 100%
        );

    transition:
        background 0.4s ease,
        color 0.4s ease;

}


/* =========================================================
   VELORA LOGO
========================================================= */

.login-page .login-brand {

    margin-bottom: 22px;

    text-align: center;

}


.login-page .login-brand a {

    color: #2b211c;

    font-family: var(--font-heading);

    font-size: 38px;

    font-weight: 600;

    letter-spacing: 7px;

    text-decoration: none;

    transition: all 0.3s ease;

}


.login-page .login-brand a:hover {

    color: var(--primary);

}


/* =========================================================
   LOGIN CARD
========================================================= */

.login-page .auth-wrapper {

    width: 100%;

    min-height: auto;

    display: flex;

    align-items: center;

    justify-content: center;

}


.login-page .auth-card {

    width: 100%;

    max-width: 520px;

    padding: 50px;

    background: #faf8f5;

    border: 1px solid #e1d9d1;

    box-shadow:
        0 20px 55px rgba(65, 48, 38, 0.18);

    transition:
        background 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;

}


/* =========================================================
   LOGIN HEADER
========================================================= */

.login-page .auth-header {

    text-align: center;

    margin-bottom: 35px;

}


.login-page .auth-header h1 {

    margin: 8px 0 10px;

    font-family: var(--font-heading);

    font-size: 52px;

    font-weight: 500;

    color: #2b211c;

}


.login-page .auth-header p {

    color: #77706a;

    font-size: 13px;

}


/* =========================================================
   FORM LABELS
========================================================= */

.login-page .form-group label {

    color: #2b211c;

}


/* =========================================================
   INPUTS
========================================================= */

.login-page .input-icon input {

    background: #ffffff;

    color: #2b211c;

    border: 1px solid #ded5cc;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;

}


.login-page .input-icon input:focus {

    border-color: var(--primary);

    outline: none;

    box-shadow:
        0 0 0 2px rgba(176, 122, 90, 0.08);

}


.login-page .input-icon input::placeholder {

    color: #a09891;

}


.login-page .input-icon i {

    color: #8d8177;

}


/* =========================================================
   REMEMBER / FORGOT
========================================================= */

.login-page .auth-options {

    color: #6f6964;

}


.login-page .forgot-link {

    color: var(--primary);

}


.login-page .forgot-link:hover {

    color: var(--primary-dark);

}


/* =========================================================
   LOGIN BUTTON
========================================================= */

.login-page .auth-submit {

    width: 100%;

    background: var(--primary);

    color: #ffffff;

    border-color: var(--primary);

}


.login-page .auth-submit:hover {

    background: var(--primary-dark);

    border-color: var(--primary-dark);

    transform: translateY(-2px);

}


/* =========================================================
   REGISTER
========================================================= */

.login-page .auth-switch {

    color: #77706a;

}


.login-page .auth-switch a {

    color: var(--primary);

}


.login-page .auth-switch a:hover {

    color: var(--primary-dark);

}


/* =========================================================
   LOGIN CONTROLS
   DARK / LIGHT + RTL
========================================================= */

.login-page .login-controls {

    position: fixed;

    top: 22px;

    right: 25px;

    z-index: 9999;

    display: flex;

    align-items: center;

    gap: 10px;

}


.login-page .login-control-btn {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(43, 33, 28, 0.25);

    background: rgba(255, 255, 255, 0.45);

    color: #2b211c;

    backdrop-filter: blur(8px);

    transition: all 0.3s ease;

}


.login-page .login-control-btn:hover {

    background: var(--primary);

    border-color: var(--primary);

    color: #ffffff;

    transform: translateY(-2px);

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .login-page .login-main {

        padding: 55px 18px 35px;

    }


    .login-page .login-brand {

        margin-bottom: 18px;

    }


    .login-page .login-brand a {

        font-size: 32px;

        letter-spacing: 5px;

    }


    .login-page .auth-card {

        max-width: 100%;

        padding: 35px 22px;

    }


    .login-page .auth-header h1 {

        font-size: 42px;

    }


    .login-page .login-controls {

        top: 15px;

        right: 15px;

    }


    .login-page .login-control-btn {

        width: 38px;

        height: 38px;

    }

}
/* =========================================================
   VELORA REGISTER PAGE ONLY
========================================================= */

body.register-page {
    min-height: 100vh;
    background: #e8ded3;
}


/* =========================================================
   REGISTER MAIN
========================================================= */

.register-page .register-main {

    min-height: 100vh;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 70px 20px;

    background:
        radial-gradient(
            circle at top center,
            #f3ece5 0%,
            #e8ded3 48%,
            #d8c9bb 100%
        );

    transition: background 0.4s ease;

}


/* =========================================================
   VELORA LOGO
========================================================= */

.register-page .register-brand {

    margin-bottom: 22px;

    text-align: center;

}


.register-page .register-brand a {

    color: #2b211c;

    font-family: var(--font-heading);

    font-size: 38px;

    font-weight: 600;

    letter-spacing: 7px;

    text-decoration: none;

    transition: all 0.3s ease;

}


.register-page .register-brand a:hover {

    color: var(--primary);

}


/* =========================================================
   REGISTER WRAPPER
========================================================= */

.register-page .auth-wrapper {

    width: 100%;

    min-height: auto;

    padding: 0;

}


/* =========================================================
   REGISTER CARD
========================================================= */

.register-page .register-card {

    width: 100%;

    max-width: 560px;

    padding: 48px 50px;

    background: #faf8f5;

    border: 1px solid #e1d9d1;

    box-shadow:
        0 20px 55px rgba(65, 48, 38, 0.18);

    transition:
        background 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;

}


/* =========================================================
   REGISTER INPUTS
========================================================= */

.register-page .input-wrapper {

    position: relative;

}


.register-page .input-wrapper i {

    position: absolute;

    left: 16px;

    top: 50%;

    transform: translateY(-50%);

    color: #8d8177;

    pointer-events: none;

}


.register-page .input-wrapper input {

    width: 100%;

    padding-left: 46px;

    background: #ffffff;

    color: #2b211c;

    border: 1px solid #ded5cc;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;

}


.register-page .input-wrapper input:focus {

    border-color: var(--primary);

    outline: none;

    box-shadow:
        0 0 0 2px rgba(176, 122, 90, 0.08);

}


.register-page .input-wrapper input::placeholder {

    color: #a09891;

}


/* =========================================================
   PASSWORD HINT
========================================================= */

.register-page .form-hint {

    display: block;

    margin-top: 7px;

    color: #8b827b;

    font-size: 11px;

}


/* =========================================================
   TERMS CHECKBOX
========================================================= */

.register-page .auth-checkbox {

    font-size: 12px;

    color: #6f6964;

}


.register-page .auth-checkbox label {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    cursor: pointer;

}


.register-page .auth-checkbox input {

    width: auto;

    margin-top: 3px;

}


.register-page .auth-checkbox .text-link {

    color: var(--primary);

}


/* =========================================================
   REGISTER FOOTER
========================================================= */

.register-page .auth-footer {

    text-align: center;

    padding-top: 22px;

    color: #77706a;

    font-size: 13px;

}


.register-page .auth-footer .text-link {

    color: var(--primary);

    font-weight: 600;

}


.register-page .auth-footer .text-link:hover {

    color: var(--primary-dark);

}


/* =========================================================
   REGISTER CONTROLS
========================================================= */

.register-page .register-controls {

    position: fixed;

    top: 22px;

    right: 25px;

    z-index: 9999;

    display: flex;

    align-items: center;

    gap: 10px;

}


.register-page .register-control-btn {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(43, 33, 28, 0.25);

    background: rgba(255, 255, 255, 0.45);

    color: #2b211c;

    backdrop-filter: blur(8px);

    cursor: pointer;

    transition: all 0.3s ease;

}


.register-page .register-control-btn:hover {

    background: var(--primary);

    border-color: var(--primary);

    color: #ffffff;

    transform: translateY(-2px);

}


/* =========================================================
   MOBILE REGISTER
========================================================= */

@media (max-width: 767px) {

    .register-page .register-main {

        padding: 55px 18px 35px;

    }


    .register-page .register-brand {

        margin-bottom: 18px;

    }


    .register-page .register-brand a {

        font-size: 32px;

        letter-spacing: 5px;

    }


    .register-page .register-card {

        max-width: 100%;

        padding: 35px 22px;

    }


    .register-page .auth-header h1 {

        font-size: 40px;

    }


    .register-page .register-controls {

        top: 15px;

        right: 15px;

    }


    .register-page .register-control-btn {

        width: 38px;

        height: 38px;

    }

}
/* REGISTER PAGE ONLY */

body.register-page {
    background: #e8ded3;
}

.register-page .auth-section {
    min-height: 100vh;
    padding: 120px 20px 70px;
    background:
        radial-gradient(
            circle at top center,
            #f3ece5 0%,
            #e8ded3 55%,
            #d8c9bb 100%
        );
}

.register-page .auth-card {
    background: #faf8f5;
    border: 1px solid #e1d9d1;
    box-shadow: 0 20px 55px rgba(65,48,38,.18);
}

.register-page .nav-actions {
    position: fixed;
    top: 20px;
    right: 25px;
    z-index: 9999;
}

.register-page .nav-action-btn {
    color: #2b211c;
    background: rgba(255,255,255,.45);
    border: 1px solid rgba(43,33,28,.2);
}

/* MOBILE */

@media (max-width: 767px) {

    .register-page .auth-section {
        padding: 90px 15px 40px;
    }

    .register-page .nav-actions {
        top: 15px;
        right: 15px;
    }

}

/* =========================================================
   VELORA — PREMIUM SHOP SECTIONS
   The Labels We Love | Why Velora
========================================================= */


/* =========================================================
   THE LABELS WE LOVE
========================================================= */

.velora-labels-section {
    position: relative;
    padding: 120px 0 110px;
    background: var(--bg-color);
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}


.velora-labels-top {
    width: min(90%, var(--container-width));
    margin: 0 auto 75px;
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    align-items: end;
    gap: 40px;
}


.velora-labels-kicker {
    align-self: start;
    padding-top: 8px;

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
}


.velora-labels-top h2 {
    margin: 0;

    font-family: var(--font-heading);
    font-size: clamp(54px, 6vw, 92px);
    font-weight: 500;
    line-height: .82;
    letter-spacing: -2px;
    color: var(--heading-color);
}


.velora-labels-top h2 em {
    font-style: italic;
    color: var(--primary);
}


.velora-labels-top p {
    max-width: 310px;
    margin-left: auto;

    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.9;
    color: var(--text-light);
}


/* =========================================================
   MARQUEE
========================================================= */

.velora-labels-marquee {
    width: 100%;
    padding: 28px 0;

    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);

    overflow: hidden;
}


.velora-labels-track {
    display: flex;
    align-items: center;
    gap: 38px;
    width: max-content;

    animation: veloraLabelScroll 24s linear infinite;
}


.velora-labels-track span {
    font-family: var(--font-heading);
    font-size: clamp(30px, 3.5vw, 52px);
    font-weight: 500;
    letter-spacing: 1px;
    white-space: nowrap;

    color: var(--heading-color);
}


.velora-labels-track i {
    font-size: 15px;
    font-style: normal;
    color: var(--primary);
}


@keyframes veloraLabelScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   LABEL CARDS
========================================================= */

.velora-labels-grid {
    width: min(90%, var(--container-width));
    margin: 70px auto 0;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}


.velora-label-card {
    min-height: 300px;
    padding: 28px 25px 25px;

    display: flex;
    flex-direction: column;

    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);

    transition: var(--transition);
}


.velora-label-card > span {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--primary);
}


.velora-label-card > div {
    margin-top: auto;
}


.velora-label-card h3 {
    margin-bottom: 12px;

    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 500;
    color: var(--heading-color);
}


.velora-label-card p {
    max-width: 230px;

    font-family: var(--font-body);
    font-size: 11px;
    line-height: 1.8;
    color: var(--text-light);
}


.velora-label-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;
    margin-top: 28px;

    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: var(--heading-color);
}


.velora-label-card a i {
    font-size: 10px;
    transition: var(--transition);
}


.velora-label-card:hover {
    background: var(--heading-color);
    transform: translateY(-6px);
}


.velora-label-card:hover > span,
.velora-label-card:hover h3,
.velora-label-card:hover p,
.velora-label-card:hover a {
    color: var(--white);
}


.velora-label-card:hover > span {
    color: var(--secondary);
}


.velora-label-card:hover a i {
    transform: translateX(5px);
}


/* =========================================================
   WHY VELORA
========================================================= */

.velora-experience-section {
    padding: 125px 0;

    background: var(--bg-secondary);
    overflow: hidden;
}


.velora-experience-inner {
    width: min(90%, var(--container-width));
    margin: 0 auto;

    display: grid;
    grid-template-columns: .85fr 1.5fr;
    gap: 100px;
}


.velora-experience-heading {
    position: sticky;
    top: 120px;
    height: fit-content;
}


.velora-experience-kicker {
    display: block;
    margin-bottom: 28px;

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
}


.velora-experience-heading h2 {
    margin-bottom: 30px;

    font-family: var(--font-heading);
    font-size: clamp(58px, 6vw, 90px);
    font-weight: 500;
    line-height: .82;
    letter-spacing: -2px;
    color: var(--heading-color);
}


.velora-experience-heading h2 em {
    font-style: italic;
    color: var(--primary);
}


.velora-experience-heading p {
    max-width: 340px;

    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.9;
    color: var(--text-light);
}


/* =========================================================
   EXPERIENCE ITEMS
========================================================= */

.velora-experience-list {
    border-top: 1px solid var(--border-color);
}


.velora-experience-item {
    min-height: 170px;
    padding: 32px 0;

    display: grid;
    grid-template-columns: 70px 1fr 40px;
    align-items: start;
    gap: 25px;

    border-bottom: 1px solid var(--border-color);

    transition: var(--transition);
}


.velora-experience-number {
    padding-top: 5px;

    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--primary);
}


.velora-experience-content h3 {
    margin-bottom: 12px;

    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 500;
    color: var(--heading-color);

    transition: var(--transition);
}


.velora-experience-content p {
    max-width: 500px;

    font-family: var(--font-body);
    font-size: 11px;
    line-height: 1.85;
    color: var(--text-light);
}


.velora-experience-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border-color);
    border-radius: 50%;

    font-size: 9px;
    color: var(--text-light);

    transition: var(--transition);
}


.velora-experience-item:hover {
    padding-left: 18px;
}


.velora-experience-item:hover .velora-experience-content h3 {
    color: var(--primary);
}


.velora-experience-item:hover .velora-experience-icon {
    background: var(--heading-color);
    border-color: var(--heading-color);
    color: var(--white);
    transform: rotate(45deg);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .velora-labels-top {
        grid-template-columns: 1fr 1fr;
    }

    .velora-labels-top p {
        margin-left: 0;
    }

    .velora-labels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .velora-experience-inner {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .velora-experience-heading {
        position: static;
    }

}


@media (max-width: 767px) {

    .velora-labels-section {
        padding: 80px 0;
    }

    .velora-labels-top {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }

    .velora-labels-top h2 {
        font-size: 62px;
    }

    .velora-labels-top p {
        max-width: 400px;
    }

    .velora-labels-grid {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .velora-label-card {
        min-height: 260px;
    }

    .velora-experience-section {
        padding: 85px 0;
    }

    .velora-experience-heading h2 {
        font-size: 65px;
    }

    .velora-experience-item {
        grid-template-columns: 45px 1fr;
        gap: 15px;
    }

    .velora-experience-icon {
        display: none;
    }

}


@media (max-width: 480px) {

    .velora-labels-top h2,
    .velora-experience-heading h2 {
        font-size: 52px;
    }

    .velora-labels-track {
        gap: 25px;
    }

    .velora-labels-track span {
        font-size: 32px;
    }

    .velora-experience-content h3 {
        font-size: 30px;
    }

}
/* =========================================================
   LABELS / EDIT SECTION - COMPACT LAYOUT
========================================================= */

.shop-labels-section {
    padding: 70px 0 0;
}

.shop-labels-header {
    width: min(92%, var(--container-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 150px 1fr 300px;
    align-items: center;
    gap: 40px;
    min-height: 250px;
}

.shop-labels-header .section-number {
    align-self: flex-start;
    padding-top: 12px;
}

.shop-labels-header h2 {
    margin: 0;
    font-size: clamp(3.5rem, 6vw, 5.8rem);
    line-height: .88;
    letter-spacing: -2px;
}

.shop-labels-header p {
    margin: 0;
    max-width: 300px;
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   LABEL MARQUEE
========================================================= */

.shop-labels-marquee {
    margin-top: 45px;
    padding: 28px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.shop-labels-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 45px;
}

.shop-labels-track span {
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    line-height: 1;
}


/* =========================================================
   LABEL CARDS
========================================================= */

.shop-labels-grid {
    width: min(92%, var(--container-width));
    margin: 70px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.shop-label-card {
    min-height: 210px;
    padding: 30px 25px;
    border: 1px solid var(--border-color);
    border-right: none;
}

.shop-label-card:last-child {
    border-right: 1px solid var(--border-color);
}

.shop-label-card .label-number {
    display: block;
    margin-bottom: 55px;
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--primary);
}

.shop-label-card h3 {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
}

.shop-label-card p {
    margin: 0;
    font-size: 11px;
    line-height: 1.7;
    color: var(--text-light);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .shop-labels-header {
        grid-template-columns: 100px 1fr;
    }

    .shop-labels-header p {
        grid-column: 2;
        margin-top: -20px;
    }

    .shop-labels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-label-card:nth-child(2) {
        border-right: 1px solid var(--border-color);
    }

    .shop-label-card:nth-child(3),
    .shop-label-card:nth-child(4) {
        border-top: none;
    }

}

@media (max-width: 767px) {

    .shop-labels-section {
        padding-top: 50px;
    }

    .shop-labels-header {
        display: block;
        min-height: auto;
    }

    .shop-labels-header .section-number {
        margin-bottom: 25px;
    }

    .shop-labels-header h2 {
        font-size: 3.5rem;
    }

    .shop-labels-header p {
        margin-top: 25px;
        max-width: 100%;
    }

    .shop-labels-marquee {
        margin-top: 40px;
        padding: 22px 0;
    }

    .shop-labels-grid {
        margin-top: 45px;
        grid-template-columns: 1fr;
    }

    .shop-label-card {
        border-right: 1px solid var(--border-color);
        min-height: 170px;
    }

    .shop-label-card .label-number {
        margin-bottom: 35px;
    }
}
/* =====================================================
   VELORA CONTACT
   BUSINESS HOURS + FOLLOW US
===================================================== */

.velora-contact-connect {
    position: relative;
    
    background: var(--bg-secondary);
    overflow: hidden;
    
}


/* =====================================================
   MAIN GRID
===================================================== */

.velora-connect-grid {
    width: min(90%, var(--container-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}


/* =====================================================
   SECTION KICKER
===================================================== */

.velora-connect-kicker {
    display: inline-block;
    margin-bottom: 18px;

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--primary);
    padding-top: 30px;
    
}


/* =====================================================
   HEADINGS
===================================================== */

.velora-hours-section h2,
.velora-follow-section h2 {
    margin: 0 0 22px;

    font-family: var(--font-heading);
    font-size: clamp(52px, 5vw, 78px);
    font-weight: 500;
    line-height: .88;
    letter-spacing: -1.5px;

    color: var(--heading-color);
}

.velora-hours-section h2 em,
.velora-follow-section h2 em {
    font-style: italic;
    color: var(--primary);
}


/* =====================================================
   INTRO
===================================================== */

.velora-connect-intro {
    max-width: 500px;
    margin: 0 0 38px;

    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.9;

    color: var(--text-light);
}


/* =====================================================
   BUSINESS HOURS
===================================================== */

.velora-hours-list {
    width: 100%;
    border-top: 1px solid var(--border-color);
}


.velora-hours-row {
    min-height: 64px;
    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: var(--white);

    border-bottom: 1px solid var(--border-color);

    transition: var(--transition);
}


.velora-hours-row span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;

    color: var(--heading-color);
}


.velora-hours-row strong {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;

    color: var(--text-light);
}


.velora-hours-row strong.closed {
    color: var(--primary);
}


.velora-hours-row:hover {
    padding-left: 24px;
    background: var(--heading-color);
}


.velora-hours-row:hover span,
.velora-hours-row:hover strong {
    color: var(--white);
}


.velora-hours-row:hover strong.closed {
    color: var(--secondary);
}


/* =====================================================
   FOLLOW US
===================================================== */

.velora-follow-section {
    position: relative;
    padding-top: 30px;
}


.velora-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}


.velora-social-card {
    min-height: 145px;
    padding: 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;

    text-decoration: none;

    background: var(--heading-color);

    border: 1px solid transparent;

    transition: var(--transition);
}


.velora-social-card i {
    font-size: 26px;
    color: var(--white);

    transition: var(--transition);
}


.velora-social-card span {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: var(--white);
}


/* =====================================================
   SOCIAL COLORS
===================================================== */

.velora-social-card.facebook {
    background: #3b5998;
}

.velora-social-card.instagram {
    background: #c13584;
}

.velora-social-card.pinterest {
    background: #bd081c;
}

.velora-social-card.youtube {
    background: #b00000;
}


/* =====================================================
   SOCIAL HOVER
===================================================== */

.velora-social-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
}


.velora-social-card:hover i {
    transform: scale(1.12);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .velora-connect-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .velora-connect-intro {
        max-width: 650px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .velora-contact-connect {
        padding: 20px 0;
    }

    .velora-connect-grid {
        width: min(92%, var(--container-width));
        gap: 65px;
    }

    .velora-hours-section h2,
    .velora-follow-section h2 {
        font-size: 58px;
    }

    .velora-connect-intro {
        font-size: 12px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .velora-hours-row {
        min-height: 60px;
        padding: 0 14px;
    }

    .velora-hours-row span {
        font-size: 11px;
    }

    .velora-hours-row strong {
        font-size: 10px;
    }

    .velora-social-grid {
        gap: 12px;
    }

    .velora-social-card {
        min-height: 125px;
    }

}
.velora-connect-intro-2 {
    width: 100%;
    max-width: 850px;
    margin: 35px 0 0;
    padding: 0;
    
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
    color: var(--text-light);
    text-align: left;
    text-align: justify;
padding-bottom: 20px;
}





/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .velora-hours-section h2,
    .velora-follow-section h2 {
        font-size: 50px;
    }

    .velora-social-grid {
        grid-template-columns: 1fr;
    }

    .velora-social-card {
        min-height: 110px;
    }

}
/* =========================================================
   VELORA — GLOBAL SCROLL REVEAL
   Existing styles are not changed
========================================================= */

.velora-auto-reveal {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity 0.85s ease,
        transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}

.velora-auto-reveal.velora-reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* LEFT REVEAL */

.velora-auto-reveal.velora-reveal-left {
    transform: translateX(-45px);
}

/* RIGHT REVEAL */

.velora-auto-reveal.velora-reveal-right {
    transform: translateX(45px);
}

.velora-auto-reveal.velora-reveal-left.velora-reveal-visible,
.velora-auto-reveal.velora-reveal-right.velora-reveal-visible {
    transform: translateX(0);
}


/* =========================================================
   CARD STAGGER
========================================================= */

.velora-auto-reveal.velora-reveal-stagger:nth-child(2) {
    transition-delay: 0.08s;
}

.velora-auto-reveal.velora-reveal-stagger:nth-child(3) {
    transition-delay: 0.16s;
}

.velora-auto-reveal.velora-reveal-stagger:nth-child(4) {
    transition-delay: 0.24s;
}

.velora-auto-reveal.velora-reveal-stagger:nth-child(5) {
    transition-delay: 0.32s;
}

.velora-auto-reveal.velora-reveal-stagger:nth-child(6) {
    transition-delay: 0.40s;
}

.velora-auto-reveal.velora-reveal-stagger:nth-child(7) {
    transition-delay: 0.48s;
}

.velora-auto-reveal.velora-reveal-stagger:nth-child(8) {
    transition-delay: 0.56s;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .velora-auto-reveal {
        transform: translateY(32px);
    }

    .velora-auto-reveal.velora-reveal-left {
        transform: translateX(-30px);
    }

    .velora-auto-reveal.velora-reveal-right {
        transform: translateX(30px);
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .velora-auto-reveal,
    .velora-auto-reveal.velora-reveal-visible,
    .velora-auto-reveal.velora-reveal-left,
    .velora-auto-reveal.velora-reveal-right {
        opacity: 1;
        transform: none;
        transition: none;
    }

}

/* =========================================================
   VELORA HOME 2 — COMPLETE RESPONSIVE OVERRIDES
   Desktop | Laptop | Tablet | Mobile | Small Mobile
========================================================= */

@media (min-width: 1401px) {
    .home2-hero { min-height: calc(100vh - 120px); }
    .home2-hero-image { min-height: 720px; }
    .home2-hero-content { padding: 80px clamp(50px, 6vw, 110px); }
    .home2-intro-grid { gap: 100px; }
    .home2-category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
    .home2-split { min-height: 650px; }
    .home2-split-image { height: 650px; }
    .home2-split-content { padding: 70px 9%; }
    .home2-journal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
    .home2-instagram-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
}

@media (min-width: 1201px) and (max-width: 1400px) {
    .home2-hero { min-height: 650px; }
    .home2-hero-image { min-height: 650px; }
    .home2-hero-content { padding: 60px 6vw; }
    .home2-category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
    .home2-split { min-height: 580px; }
    .home2-split-image { height: 580px; }
    .home2-split-content { padding: 55px 7%; }
    .home2-instagram-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .container { width: min(92%, 1120px); }

    .home2-hero {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        min-height: 620px;
    }

    .home2-hero-image { min-height: 620px; }
    .home2-hero-content { padding: 55px 5vw; }
    .home2-hero-content h1 { font-size: clamp(3.2rem, 5.5vw, 5rem); }
    .home2-hero-content p { max-width: 470px; font-size: .92rem; }

    .home2-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .home2-category-content { padding: 18px; }
    .home2-category-content h3 { font-size: 1.45rem; }

    .home2-intro-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 55px;
    }

    .home2-intro-heading h2 { font-size: clamp(55px, 6vw, 82px); }
    .home2-intro-text { max-width: 100%; }

    .home2-split {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        min-height: 540px;
    }

    .home2-split-image { height: 540px; }
    .home2-split-content { padding: 50px 7%; }
    .home2-split-content h2 { font-size: clamp(45px, 5vw, 68px); }
    .home2-split-content > p { max-width: 100%; }

    .home2-journal-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .home2-journal-content { padding: 20px; }
    .home2-journal-content h3 { font-size: 1.45rem; }

    .home2-instagram-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .container { width: min(92%, 900px); }

    .home2-hero {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .home2-hero-image {
        min-height: 560px;
        height: 560px;
    }

    .home2-hero-content {
        padding: 65px 8%;
        min-height: 430px;
    }

    .home2-hero-content h1 {
        font-size: clamp(3.5rem, 8vw, 5.5rem);
        line-height: .98;
    }

    .home2-hero-content p {
        max-width: 680px;
        font-size: .95rem;
    }

    .home2-intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .home2-intro-heading h2 {
        max-width: 750px;
        font-size: clamp(55px, 8vw, 82px);
    }

    .home2-intro-text { max-width: 750px; }

    .home2-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .home2-category-content { padding: 20px; }

    .home2-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .home2-split-image {
        height: 560px;
        min-height: 560px;
    }

    .home2-split-content { padding: 65px 8%; }

    .home2-split-content h2 {
        font-size: clamp(50px, 7vw, 75px);
    }

    .home2-split-content > p { max-width: 700px; }

    .home2-sale {
        padding: 95px 8%;
    }

    .home2-sale-content p {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
    }

    .home2-instagram-section { padding: 85px 0; }

    .home2-instagram-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .home2-journal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .home2-journal-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 10px);
        width: 100%;
        margin: 0 auto;
    }

    .newsletter-box {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    .container { width: min(92%, 650px); }

    .home2-hero {
        grid-template-columns: 1fr;
    }

    .home2-hero-image {
        min-height: 470px;
        height: 470px;
    }

    .home2-hero-content { padding: 60px 7%; }

    .home2-hero-content h1 {
        font-size: clamp(3.2rem, 10vw, 4.8rem);
        line-height: .98;
    }

    .home2-hero-content p {
        max-width: 100%;
        font-size: .88rem;
        line-height: 1.8;
    }

    .home2-hero-buttons {
        flex-direction: row;
        align-items: center;
    }

    .home2-hero-buttons .btn { width: auto; }

    .home2-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .home2-intro-heading h2 {
        font-size: clamp(50px, 11vw, 72px);
        letter-spacing: -2px;
    }

    .home2-intro-text p {
        font-size: .9rem;
        line-height: 1.85;
    }

    .home2-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .home2-category-content { padding: 16px; }
    .home2-category-content h3 { font-size: 1.35rem; }
    .home2-category-content p { font-size: .7rem; padding-right: 20px; }

    .home2-split {
        grid-template-columns: 1fr;
    }

    .home2-split-image {
        height: 450px;
        min-height: 450px;
    }

    .home2-split-content { padding: 55px 7%; }

    .home2-split-content h2 {
        font-size: clamp(46px, 10vw, 68px);
    }

    .home2-split-content > p {
        max-width: 100%;
        font-size: .88rem;
        line-height: 1.8;
    }

    .home2-sale { padding: 80px 6%; }

    .home2-sale-content p {
        padding-left: 0;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .home2-instagram-section { padding: 75px 0; }

    .home2-instagram-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home2-journal-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home2-journal-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .home2-journal-content { padding: 20px; }
    .home2-journal-content h3 { font-size: 1.45rem; }
}

@media (min-width: 481px) and (max-width: 599px) {
    .container { width: min(92%, 540px); }

    .home2-hero {
        grid-template-columns: 1fr;
    }

    .home2-hero-image {
        min-height: 430px;
        height: 430px;
    }

    .home2-hero-content { padding: 50px 6%; }

    .home2-hero-content h1 {
        font-size: clamp(3rem, 11vw, 4.2rem);
        line-height: .98;
    }

    .home2-hero-content p {
        font-size: .82rem;
        line-height: 1.8;
    }

    .home2-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .home2-hero-buttons .btn { width: 100%; }

    .home2-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .home2-intro-heading h2 {
        font-size: clamp(48px, 12vw, 66px);
    }

    .home2-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .home2-category-content { padding: 14px; }
    .home2-category-content h3 { font-size: 1.2rem; }

    .home2-category-content p {
        font-size: .64rem;
        line-height: 1.5;
        padding-right: 15px;
    }

    .home2-split {
        grid-template-columns: 1fr;
    }

    .home2-split-image {
        height: 400px;
        min-height: 400px;
    }

    .home2-split-content { padding: 48px 6%; }

    .home2-split-content h2 {
        font-size: clamp(42px, 11vw, 60px);
    }

    .home2-split-content > p {
        font-size: .8rem;
        line-height: 1.8;
    }

    .home2-sale { padding: 75px 6%; }

    .home2-sale-content p {
        padding-left: 0;
        font-size: .8rem;
    }

    .home2-instagram-section { padding: 65px 0; }

    .home2-instagram-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .home2-journal-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home2-journal-content { padding: 18px; }
    .home2-journal-content h3 { font-size: 1.35rem; }
}

@media (max-width: 480px) {
    .container { width: min(92%, 440px); }
    .section { padding: 58px 0; }

    .home2-hero {
        display: block;
        min-height: auto;
    }

    .home2-hero-image {
        min-height: 360px;
        height: 360px;
    }

    .home2-hero-content { padding: 45px 6%; }

    .home2-hero-content > span {
        font-size: .62rem;
        letter-spacing: 2px;
    }

    .home2-hero-content h1 {
        font-size: clamp(2.65rem, 13vw, 3.6rem);
        line-height: .98;
        letter-spacing: -1px;
        margin-bottom: 18px;
    }

    .home2-hero-content p {
        max-width: 100%;
        margin-bottom: 24px;
        font-size: .75rem;
        line-height: 1.75;
    }

    .home2-hero-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .home2-hero-buttons .btn {
        width: 100%;
        min-height: 46px;
        padding: 11px 18px;
        font-size: .68rem;
    }

    .home2-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home2-intro-heading .section-subtitle {
        font-size: .62rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .home2-intro-heading h2 {
        max-width: 100%;
        font-size: clamp(42px, 13vw, 58px);
        line-height: .92;
        letter-spacing: -1.5px;
    }

    .home2-intro-heading h3 {
        font-size: 1.45rem;
        margin-top: 20px;
    }

    .home2-intro-text { max-width: 100%; }

    .home2-intro-text p {
        font-size: .76rem;
        line-height: 1.8;
    }

    .home2-intro-text .text-link { font-size: .68rem; }

    .home2-category-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home2-category-image { aspect-ratio: .9; }
    .home2-category-content { padding: 17px; }

    .home2-category-content > span { font-size: .6rem; }
    .home2-category-content h3 { font-size: 1.35rem; }
    .home2-category-content p { font-size: .7rem; padding-right: 25px; }

    .home2-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .home2-split-image {
        height: 360px;
        min-height: 360px;
    }

    .home2-image-label {
        top: 15px;
        left: 15px;
        padding: 7px 11px;
        font-size: .58rem;
    }

    .home2-split-content { padding: 45px 6%; }

    .home2-split-content h2 {
        font-size: clamp(40px, 12vw, 55px);
        line-height: .95;
        margin-bottom: 18px;
    }

    .home2-split-content > p {
        max-width: 100%;
        font-size: .75rem;
        line-height: 1.8;
        margin-bottom: 22px;
    }

    .home2-feature-list { margin-bottom: 25px; }

    .home2-feature-list li {
        font-size: .7rem;
        gap: 8px;
        margin-bottom: 10px;
    }

    .home2-split-content .btn { width: 100%; }

    .home2-sale { padding: 65px 6%; }

    .home2-sale-content { width: 100%; }

    .home2-sale-content > span {
        font-size: .62rem;
        letter-spacing: 2px;
    }

    .home2-sale-content h2 {
        font-size: clamp(42px, 12vw, 58px);
    }

    .home2-sale-content p {
        padding-left: 0;
        margin-bottom: 24px;
        font-size: .75rem;
        line-height: 1.75;
    }

    .home2-sale-content .btn { width: 100%; }

    .home2-instagram-section { padding: 60px 0; }

    .home2-instagram-heading { margin-bottom: 30px; }

    .home2-instagram-heading .section-subtitle {
        font-size: .62rem;
        letter-spacing: 2px;
    }

    .home2-instagram-heading .section-title {
        font-size: clamp(40px, 11vw, 54px);
        line-height: .95;
    }

    .home2-instagram-heading p {
        font-size: .72rem;
        line-height: 1.75;
    }

    .home2-instagram-link { font-size: .68rem; }

    .home2-instagram-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .home2-instagram-overlay i { font-size: 1.1rem; }

    .home2-instagram-overlay span {
        font-size: .55rem;
        letter-spacing: 1px;
    }

    .home2-instagram-bottom { margin-top: 25px; }
    .home2-instagram-bottom .btn { width: 100%; }

    .home2-journal-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .home2-journal-card { width: 100%; }
    .home2-journal-image { aspect-ratio: 1.15; }
    .home2-journal-content { padding: 18px; }

    .home2-journal-content > span { font-size: .58rem; }

    .home2-journal-content h3 {
        font-size: 1.3rem;
        line-height: 1.1;
    }

    .newsletter-box {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-form input[type="email"],
    .newsletter-form .btn {
        width: 100%;
        min-height: 50px;
    }
}

@media (max-width: 359px) {
    .container { width: 94%; }

    .home2-hero-image {
        height: 320px;
        min-height: 320px;
    }

    .home2-hero-content { padding: 38px 5%; }
    .home2-hero-content h1 { font-size: 2.5rem; }
    .home2-intro-heading h2 { font-size: 2.55rem; }

    .home2-category-content h3 { font-size: 1.25rem; }

    .home2-split-image {
        height: 320px;
        min-height: 320px;
    }

    .home2-split-content { padding: 38px 5%; }
    .home2-sale { padding: 55px 5%; }
    .home2-instagram-grid { gap: 5px; }
    .home2-journal-content h3 { font-size: 1.2rem; }
}

@media (max-height: 600px) and (max-width: 991px) and (orientation: landscape) {
    .home2-hero {
        grid-template-columns: 1fr 1fr;
        min-height: 430px;
    }

    .home2-hero-image {
        height: 430px;
        min-height: 430px;
    }

    .home2-hero-content { padding: 35px 5%; }

    .home2-hero-content h1 {
        font-size: clamp(2.5rem, 7vw, 4rem);
    }

    .home2-hero-content p {
        font-size: .72rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .home2-hero-buttons .btn {
        min-height: 42px;
        padding: 9px 15px;
    }

    .home2-split { grid-template-columns: 1fr 1fr; }

    .home2-split-image {
        height: 430px;
        min-height: 430px;
    }
}
/* =====================================================
   SPECIAL OFFER - BACKGROUND IMAGE
===================================================== */

.feature-banner {
    min-height: 560px;
}

.feature-banner img {
    z-index: 0;
}

.feature-banner::after {
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.62),
        rgba(0, 0, 0, 0.25)
    );
}

.feature-banner .container {
    position: relative;
    z-index: 2;
    width: min(92%, var(--container-width));
}

.feature-banner-content {
    max-width: 620px;
}

.feature-banner-content .section-subtitle {
    display: block;
    margin-bottom: 18px;
    color: var(--white);
    letter-spacing: 3px;
}

.feature-banner-content h2 {
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 0.95;
    margin-bottom: 20px;
}

.feature-banner-content p {
    max-width: 500px;
    line-height: 1.8;
}

.feature-banner-content .btn {
    margin-top: 5px;
}
.about-manifesto-inner > p {
    text-align: center;
    color: #111111;
}
/* =========================================================
   SHOP BY CATEGORY - CENTER ALIGN
========================================================= */

.section-heading.centered {
    text-align: center;
}

.section-heading.centered .section-subtitle,
.section-heading.centered .section-title,
.section-heading.centered > p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.contact-location-visuals {
    margin-bottom: 30px;
}
/* =========================================================
   COMMUNITY HIGHLIGHTS
========================================================= */

.community-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--border-color);
}

.community-highlight {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-height: 150px;
    padding: 35px 30px;
    border-right: 1px solid var(--border-color);
    transition:
        background-color 0.35s ease,
        transform 0.35s ease;
}

.community-highlight:last-child {
    border-right: none;
}

.community-highlight:hover {
    background: var(--card-bg);
    transform: translateY(-4px);
}

.highlight-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.8rem;
}

.community-highlight strong {
    display: block;
    margin-bottom: 10px;
    color: var(--heading-color);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
}

.community-highlight p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.72rem;
    line-height: 1.7;
}


/* TABLET */

@media (max-width: 991px) {

    .community-highlights {
        grid-template-columns: 1fr;
    }

    .community-highlight {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .community-highlight:last-child {
        border-bottom: none;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .community-highlight {
        min-height: auto;
        padding: 25px 20px;
    }

}
.new-editorial-hero {
    position: relative;
    min-height: 720px;
    width: 100%;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* IMAGE */

.new-editorial-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.new-editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* DARK OVERLAY */

.new-editorial-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    z-index: 1;
}


/* TEXT */

.new-editorial-content {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 800px;

    text-align: center;
    color: #fff;
}

.new-editorial-content .section-subtitle {
    display: inline-block;
    margin-bottom: 20px;

    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.new-editorial-content h1 {
    margin: 0 0 20px;

    color: #fff;
    font-size: clamp(60px, 8vw, 110px);
    font-weight: 500;
    line-height: 0.95;
}

.new-editorial-content h1 span {
    display: block;
    color: var(--secondary);
    font-style: italic;
}

.new-editorial-content p {
    max-width: 600px;
    margin: 0 auto 32px;

    color: rgba(255,255,255,0.9);
    font-size: 15px;
    line-height: 1.8;
}


/* BUTTON */

.new-editorial-content .btn {
    display: inline-flex;
}


/* IMAGE ZOOM */

.new-editorial-hero:hover .new-editorial-image img {
    transform: scale(1.04);
    transition: transform 1s ease;
}


/* MOBILE */

@media (max-width: 767px) {

    .new-editorial-hero {
        min-height: 600px;
    }

    .new-editorial-content {
        width: 90%;
    }

    .new-editorial-content h1 {
        font-size: 58px;
    }

    .new-editorial-content p {
        font-size: 13px;
    }
}
.new-full-editorial-overlay {
    position: relative;
    z-index: 2;

    width: min(90%, 600px);
    padding: 45px 35px;

    text-align: center;

    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);

    color: var(--white);
}

.new-full-editorial-overlay h2 {
    color: var(--white);
    margin: 10px 0 15px;
}

.new-full-editorial-overlay h2 em {
    color: var(--secondary);
}

.new-full-editorial-overlay p {
    color: var(--primary-dark);
    max-width: 480px;
    margin: 0 auto 25px;
    text-align: center;
}
/* =========================================================
   VELORA EDITORIAL OFFER POPUP
========================================================= */

.editorial-offer-popup {
    position: relative;

    width: min(90%, 500px);
    padding: 48px 45px;

    text-align: center;

    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.8);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(10px);

    animation: offerPopupIn 1s ease forwards,
               offerFloat 4s ease-in-out 1.2s infinite;

    opacity: 0;
    transform: translateY(35px) scale(.92);
}


/* TOP SMALL TEXT */

.offer-small {
    display: block;

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: var(--primary);
}


/* LINE */

.offer-line {
    width: 45px;
    height: 1px;

    margin: 18px auto;

    background: var(--primary);
}


/* =========================================================
   FULL EDITORIAL
========================================================= */

.new-full-editorial {
    position: relative;
    width: 100%;
    height: 650px;
    min-height: 650px;
    overflow: hidden;
}

.new-full-editorial > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

    z-index: 0;
}

.new-full-editorial-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;
    text-align: center;

    background: rgba(0, 0, 0, 0.22);

    z-index: 2;
}

.new-full-editorial-overlay h2 {
    margin: 0;
    color: var(--black);
}

.new-full-editorial-overlay h2 em {
    display: block;
}
/* COUPON */

.offer-code {
    display: inline-block;

    padding: 10px 18px;

    margin-bottom: 25px;

    border: 1px dashed var(--primary);

    font-family: var(--font-body);

    font-size: 10px;

    letter-spacing: 1.5px;

    color: var(--text-color);
}

.offer-code strong {
    color: var(--primary-dark);
}


/* BUTTON */

.offer-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 48px;

    padding: 13px 27px;

    background: var(--black);
    color: var(--white);

    border: 1px solid var(--black);

    font-family: var(--font-body);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    transition: all .35s ease;
}

.offer-btn:hover {
    background: var(--primary);
    border-color: var(--primary);

    color: var(--white);

    transform: translateY(-3px);
}

.offer-btn i {
    transition: transform .3s ease;
}

.offer-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   POPUP ENTRY ANIMATION
========================================================= */

@keyframes offerPopupIn {

    0% {
        opacity: 0;
        transform: translateY(35px) scale(.92);
    }

    70% {
        opacity: 1;
        transform: translateY(-5px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


/* =========================================================
   SOFT FLOATING ANIMATION
========================================================= */

@keyframes offerFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .editorial-offer-popup {
        width: 88%;
        padding: 38px 25px;
    }

    .editorial-offer-popup h2 {
        font-size: 68px;
    }

    .editorial-offer-popup p {
        font-size: 11px;
        max-width: 290px;
    }

    .offer-code {
        font-size: 9px;
    }

}
/* =========================================================
   VELORA LUXURY EDITORIAL DIVIDER
========================================================= */

.velora-editorial-divider {
    width: 100%;
    padding: 32px 7%;
    background: var(--white);

    display: flex;
    align-items: center;
    gap: 28px;

    overflow: hidden;
}

.velora-divider-line {
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.14);
}

.velora-divider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    white-space: nowrap;
}

.velora-divider-content span {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary);
}

.velora-divider-content p {
    margin: 0;

    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: var(--text-light);
}

.velora-divider-content strong {
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 7px;

    color: var(--black);
}

.velora-divider-content i {
    font-size: 5px;
    color: var(--primary);
}


/* subtle entrance animation */

.velora-divider-content {
    animation: veloraDividerReveal 1.2s ease both;
}

@keyframes veloraDividerReveal {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .velora-editorial-divider {
        padding: 25px 5%;
        gap: 15px;
    }

    .velora-divider-content {
        gap: 10px;
    }

    .velora-divider-content p {
        display: none;
    }

    .velora-divider-content strong {
        font-size: 18px;
        letter-spacing: 5px;
    }

    .velora-divider-content span {
        font-size: 8px;
        letter-spacing: 2px;
    }

}
/* =========================================================
   FINAL GLOBAL RESPONSIVE SYSTEM
   Desktop → Laptop → Tablet → Mobile → Small Mobile
========================================================= */


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1401px) {

    .container {
        width: min(90%, 1380px);
        margin-inline: auto;
    }

    img {
        max-width: 100%;
    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1400px) {

    .container {
        width: 92%;
        margin-inline: auto;
    }

    .section {
        overflow: hidden;
    }

    img {
        max-width: 100%;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .container {
        width: 90%;
    }

    .product-grid,
    .category-grid,
    .home2-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Prevent oversized headings */

    h1 {
        font-size: clamp(42px, 6vw, 72px);
    }

    h2 {
        font-size: clamp(34px, 5vw, 58px);
    }

    h3 {
        font-size: clamp(26px, 4vw, 44px);
    }

    /* Flexible images */

    img {
        max-width: 100%;
        height: auto;
    }

}


/* =========================================================
   TABLET / MOBILE NAVIGATION
========================================================= */

@media (max-width: 991px) {

    .container {
        width: 90%;
    }

    .navbar {
        min-height: 72px;
    }

    .nav-menu-toggle,
    .mobile-menu-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: stretch;

        width: 100%;
        max-height: calc(100vh - 72px);
        overflow-y: auto;

        padding: 15px 5%;

        background: var(--card-bg);
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);

        box-shadow: var(--shadow-md);

        gap: 10px;
        z-index: 9999;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 15px 0;
    }

    .nav-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding: 15px 0 5px;
    }

    /* General two-column sections */

    .two-column,
    .split-section,
    .about-split,
    .contact-grid,
    .home2-hero {
        grid-template-columns: 1fr;
    }

    /* Forms */

    .form-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .container {
        width: 90%;
    }

    .section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    /* Typography */

    h1 {
        font-size: clamp(36px, 10vw, 56px);
        line-height: 1;
    }

    h2 {
        font-size: clamp(30px, 8vw, 46px);
        line-height: 1.05;
    }

    h3 {
        font-size: clamp(24px, 7vw, 36px);
        line-height: 1.1;
    }

    p {
        font-size: 13px;
        line-height: 1.8;
    }

    /* Grids */

    .product-grid,
    .category-grid,
    .home2-category-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Buttons */

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Images */

    img {
        max-width: 100%;
    }

    /* Hero */

    .home2-hero-image {
        min-height: 420px;
    }

    .home2-hero-content {
        padding: 55px 5%;
    }

    /* Lookbook */

    .home2-lookbook-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .home2-lookbook-item.large {
        grid-row: auto;
    }

    .home2-lookbook-item {
        min-height: 400px;
    }

    /* Split image */

    .home2-split-image {
        height: 420px;
    }

    /* Footer */

    .footer-grid {
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    /* Tables */

    .table-wrapper,
    .table-responsive {
        width: 100%;
        overflow-x: auto;
    }

    /* Cards */

    .card {
        max-width: 100%;
    }

    /* New Arrivals / Style Guide special 3-column layouts */

    .less-better-card {
        grid-template-columns: 1fr !important;
    }

    .less-better-image,
    .less-better-extra-image {
        min-height: 400px;
        height: 400px;
    }

    .less-better-content {
        padding: 45px 25px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .container {
        width: 92%;
    }

    .section {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .site-logo {
        font-size: 1.55rem;
        letter-spacing: 3px;
    }

    .nav-action-btn {
        width: 35px;
        height: 35px;
    }

    .nav-register {
        padding: 8px 13px;
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 25px;
    }

    .home2-lookbook-item {
        min-height: 330px;
    }

    .home2-sale {
        padding: 80px 0;
    }

    .home2-hero-image {
        min-height: 340px;
    }

    .home2-split-image {
        height: 340px;
    }

    .less-better-image,
    .less-better-extra-image {
        min-height: 330px;
        height: 330px;
    }

    .less-better-content {
        padding: 40px 20px;
    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .container {
        width: 94%;
    }

    .site-logo {
        font-size: 1.35rem;
        letter-spacing: 2px;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 27px;
    }

    h3 {
        font-size: 23px;
    }

    .btn {
        width: 100%;
        max-width: 100%;
    }

}


/* =========================================================
   PREVENT HORIZONTAL SCROLL
========================================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

}
/* =========================================================
   SHOP SPECIAL OFFER BANNER
   BUY ONE GET ONE / FIRST ORDER / FREE DELIVERY
========================================================= */

.shop-offer-banner {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(176, 122, 90, 0.22),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(232, 216, 202, 0.12),
            transparent 32%
        ),
        #171412;

    color: #ffffff;
}

/* SHINE EFFECT */

.shop-offer-shine {
    position: absolute;
    top: -30%;
    left: -20%;

    width: 40%;
    height: 160%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.10),
        transparent
    );

    transform: rotate(20deg);

    animation: shopOfferShine 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shopOfferShine {

    0% {
        left: -40%;
    }

    50% {
        left: 110%;
    }

    100% {
        left: 110%;
    }

}


/* FLOATING CIRCLES */

.shop-offer-circle {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    pointer-events: none;
}

.circle-one {
    width: 330px;
    height: 330px;

    top: -120px;
    right: -80px;

    animation: offerCircleFloat 7s ease-in-out infinite;
}

.circle-two {
    width: 220px;
    height: 220px;

    bottom: -100px;
    left: -70px;

    animation: offerCircleFloat 9s ease-in-out infinite reverse;
}

@keyframes offerCircleFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(8deg);
    }

}


/* CONTENT */

.shop-offer-content {
    position: relative;
    z-index: 3;

    max-width: 760px;
    margin: 0 auto;

    padding: 80px 20px;

    text-align: center;
}


/* LABEL */

.shop-offer-label {
    display: inline-block;

    margin-bottom: 15px;

    color: #d7b29a;

    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;

    letter-spacing: 4px;
    text-transform: uppercase;

    animation: offerFadeUp 0.8s ease both;
}


/* LINE */

.shop-offer-line {
    display: block;

    width: 55px;
    height: 1px;

    margin: 0 auto 25px;

    background: #b07a5a;

    animation: offerLineGrow 1s ease both;
}

@keyframes offerLineGrow {

    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 55px;
        opacity: 1;
    }

}


/* HEADING */

.shop-offer-content h2 {
    margin: 0;

    color: #ffffff;

    font-family: var(--font-heading);
    font-size: clamp(58px, 8vw, 105px);
    font-weight: 500;

    line-height: 0.82;
    letter-spacing: -2px;

    animation: offerFadeUp 0.9s ease 0.15s both;
}

.shop-offer-content h2 span {
    display: block;

    color: #d5a98d;

    font-style: italic;
}


/* FIRST ORDER */

.shop-offer-first {
    margin: 30px 0 12px;

    color: #ffffff;

    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;

    animation: offerFadeUp 0.9s ease 0.3s both;
}


/* DESCRIPTION */

.shop-offer-description {
    max-width: 560px;
    margin: 0 auto 35px;

    color: rgba(255,255,255,0.68);

    font-size: 13px;
    line-height: 1.8;

    text-align: center;

    animation: offerFadeUp 0.9s ease 0.4s both;
}


/* BENEFITS */

.shop-offer-benefits {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;

    margin-bottom: 38px;

    animation: offerFadeUp 0.9s ease 0.5s both;
}

.shop-offer-benefit {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 125px;

    text-align: left;
}

.shop-offer-benefit i {
    color: #c99879;

    font-size: 20px;

    animation: offerIconPulse 2.5s ease-in-out infinite;
}

.shop-offer-benefit span {
    color: rgba(255,255,255,0.65);

    font-size: 10px;
    line-height: 1.5;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.shop-offer-benefit strong {
    color: #ffffff;

    font-weight: 600;
}

.shop-offer-divider {
    width: 1px;
    height: 38px;

    background: rgba(255,255,255,0.18);
}

@keyframes offerIconPulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

}


/* BUTTON */

.shop-offer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 50px;

    padding: 13px 28px;

    border: 1px solid #d5a98d;

    background: #d5a98d;
    color: #171412;

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition: var(--transition);

    animation: offerFadeUp 0.9s ease 0.6s both;
}

.shop-offer-btn i {
    transition: transform 0.3s ease;
}

.shop-offer-btn:hover {
    background: transparent;
    color: #ffffff;

    transform: translateY(-3px);
}

.shop-offer-btn:hover i {
    transform: translateX(6px);
}


/* TEXT ANIMATION */

@keyframes offerFadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* BOTTOM MOVING TEXT */

.shop-offer-marquee {
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;

    display: flex;
    align-items: center;

    gap: 25px;

    padding: 13px 0;

    overflow: hidden;
    white-space: nowrap;

    border-top: 1px solid rgba(255,255,255,0.10);

    color: rgba(255,255,255,0.35);

    font-size: 0.65rem;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.shop-offer-marquee span,
.shop-offer-marquee i {
    flex-shrink: 0;
}

.shop-offer-marquee {
    animation: offerMarquee 18s linear infinite;
}

.shop-offer-marquee i {
    color: #b07a5a;
    font-style: normal;
}

@keyframes offerMarquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-30%);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .shop-offer-banner {
        min-height: 650px;
    }

    .shop-offer-content {
        padding: 70px 18px 85px;
    }

    .shop-offer-content h2 {
        font-size: clamp(55px, 17vw, 82px);
    }

    .shop-offer-first {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .shop-offer-description {
        font-size: 12px;
    }

    .shop-offer-benefits {
        flex-direction: column;
        gap: 18px;
    }

    .shop-offer-benefit {
        justify-content: center;
        text-align: left;
    }

    .shop-offer-divider {
        display: none;
    }

    .circle-one {
        width: 220px;
        height: 220px;
    }

    .circle-two {
        width: 160px;
        height: 160px;
    }

    .shop-offer-btn {
        width: 100%;
        max-width: 300px;
    }

}


@media (max-width: 480px) {

    .shop-offer-banner {
        min-height: 680px;
    }

    .shop-offer-content {
        padding-inline: 15px;
    }

    .shop-offer-label {
        font-size: 0.62rem;
        letter-spacing: 2.5px;
    }

    .shop-offer-content h2 {
        font-size: 58px;
    }

    .shop-offer-first {
        margin-top: 25px;
        font-size: 0.6rem;
    }

    .shop-offer-description {
        max-width: 320px;
    }

}
/* =========================================================
   STYLE GUIDE IMAGE BANNER WITH TEXT OVERLAY
   CENTERED CONTENT
========================================================= */

.style-guide-hero {
    position: relative;
    width: 100%;
    min-height: 680px;
    overflow: hidden;
}

/* =========================================================
   BANNER IMAGE
========================================================= */

.style-guide-banner-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

    z-index: 1;

    transition: transform 1.2s ease;
}

.style-guide-hero:hover .style-guide-banner-image {
    transform: scale(1.04);
}


/* =========================================================
   DARK OVERLAY
========================================================= */

.style-guide-banner-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.68),
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.60)
        );

    z-index: 2;
}


/* =========================================================
   TEXT OVER IMAGE - FULL CENTER
========================================================= */

.style-guide-banner-content {
    position: relative;
    z-index: 3;

    min-height: 680px;

    width: 100%;
    max-width: 900px;

    margin: 0 auto;
    padding: 70px 20px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    color: #ffffff;
}


/* =========================================================
   SMALL TEXT
========================================================= */

.style-guide-banner-content > span {
    display: block;

    margin: 0 0 18px;

    color: #ead6c7;

    font-size: 0.7rem;
    font-weight: 600;

    letter-spacing: 4px;
    text-transform: uppercase;

    text-align: center;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.style-guide-banner-content h1 {
    width: 100%;

    margin: 0 auto 30px;
    padding: 0;

    color: #ffffff;

    font-family: var(--font-heading);

    font-size: clamp(60px, 8vw, 110px);
    font-weight: 500;

    line-height: 0.85;
    letter-spacing: -2px;

    text-align: center;
}


/* =========================================================
   SECOND LINE - PERFECT CENTER
========================================================= */

.style-guide-banner-content h1 em {
    display: block;

    width: 100%;

    margin: 0;
    padding: 0;

    color: #e0b79c;

    font-style: italic;
    font-weight: 400;

    text-align: center;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.style-guide-banner-content p {
    width: 100%;
    max-width: 650px;

    margin: 0 auto 32px;
    padding: 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: 15px;
    line-height: 1.9;

    text-align: center;
}


/* =========================================================
   BUTTON
========================================================= */

.style-guide-banner-content .btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 14px 28px;

    background: #b07a5a;
    border: 1px solid #b07a5a;

    color: #ffffff;

    transition: all 0.35s ease;
}

.style-guide-banner-content .btn:hover {
    background: transparent;

    border-color: #ffffff;

    color: #ffffff;

    transform: translateY(-3px);
}

.style-guide-banner-content .btn i {
    transition: transform 0.3s ease;
}

.style-guide-banner-content .btn:hover i {
    transform: translateY(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .style-guide-hero {
        min-height: 600px;
    }

    .style-guide-banner-content {
        min-height: 600px;

        width: 100%;
        max-width: 850px;

        padding: 60px 25px;
    }

    .style-guide-banner-content h1 {
        font-size: clamp(55px, 9vw, 90px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .style-guide-hero {
        min-height: 620px;
    }

    .style-guide-banner-content {
        min-height: 620px;

        width: 100%;
        max-width: 600px;

        padding: 50px 20px;
    }

    .style-guide-banner-content > span {
        margin-bottom: 18px;

        font-size: 0.58rem;

        letter-spacing: 2.5px;

        text-align: center;
    }

    .style-guide-banner-content h1 {
        width: 100%;

        margin: 0 auto 25px;

        font-size: clamp(48px, 15vw, 75px);

        line-height: 0.9;

        text-align: center;
    }

    .style-guide-banner-content h1 em {
        width: 100%;

        margin: 0;

        text-align: center;
    }

    .style-guide-banner-content p {
        width: 100%;
        max-width: 380px;

        margin: 0 auto 28px;

        font-size: 11px;
        line-height: 1.8;

        text-align: center;
    }

    .style-guide-banner-content .btn {
        width: 100%;
        max-width: 270px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .style-guide-hero {
        min-height: 600px;
    }

    .style-guide-banner-content {
        min-height: 600px;

        padding: 45px 15px;
    }

    .style-guide-banner-content h1 {
        width: 100%;

        margin: 0 auto 25px;

        font-size: 52px;

        text-align: center;
    }

    .style-guide-banner-content h1 em {
        margin: 0;

        text-align: center;
    
    }

    .style-guide-banner-content p {
        max-width: 320px;

        font-size: 10.5px;

        text-align: center;
    }

}
/* =========================================================
   FINAL STYLE GUIDE CENTER FIX
========================================================= */

.style-guide-hero .style-guide-banner-content {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    max-width: none !important;

    min-height: 0 !important;

    margin: 0 !important;
    padding: 40px 20px !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;
}

.style-guide-hero .style-guide-banner-content > span {
    width: 100% !important;
    margin: 0 0 18px !important;

    text-align: center !important;
}

.style-guide-hero .style-guide-banner-content h1 {
    width: 100% !important;

    margin: 0 auto 30px !important;
    padding: 0 !important;

    text-align: center !important;
}

.style-guide-hero .style-guide-banner-content h1 em {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: center !important;
}

.style-guide-hero .style-guide-banner-content p {
    width: 100% !important;
    max-width: 650px !important;

    margin: 0 auto 32px !important;

    text-align: center !important;
}

.style-guide-hero .style-guide-banner-content .btn {
    margin-left: auto !important;
    margin-right: auto !important;
}
/* =========================================================
   MANIFESTO BACKGROUND IMAGE
========================================================= */

.about-manifesto {
    position: relative;
    overflow: hidden;
}

/* BACKGROUND IMAGE */

.about-manifesto .manifesto-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-manifesto .manifesto-bg img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;
}


/* DARK OVERLAY */

.about-manifesto .manifesto-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.48);

    z-index: 1;
}


/* CONTENT ABOVE IMAGE */

.about-manifesto .container {
    position: relative;
    z-index: 2;
}

.about-manifesto .about-manifesto-inner {
    position: relative;
    z-index: 3;
}


/* TEXT */

.about-manifesto .section-subtitle,
.about-manifesto blockquote,
.about-manifesto p,
.about-manifesto .about-manifesto-brand {
    position: relative;
    z-index: 3;
}


/* MOBILE */

@media (max-width: 767px) {

    .about-manifesto .manifesto-bg img {
        object-position: center;
    }

}
/* =========================================================
   VELORA - NEW ARRIVALS
   IMAGE STORY
   SKIRT IMAGE LAYOUT
========================================================= */


/* =========================================================
   MAIN SECTION
========================================================= */

.new-image-story {
    width: 100%;
    padding: 100px 0;
}


/* =========================================================
   MAIN GRID

   DESKTOP:

   ┌──────────────────┬──────────────────────────────┐
   │                  │                              │
   │                  │        SKIRT IMAGE           │
   │   LARGE IMAGE    │                              │
   │                  ├─────────────────┬────────────┤
   │                  │                 │            │
   │                  │  SMALL IMAGE    │   TEXT     │
   │                  │                 │            │
   └──────────────────┴─────────────────┴────────────┘
========================================================= */

.new-story-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(0, 0.75fr)
        minmax(0, 0.7fr);

    grid-template-rows:
        300px
        350px;

    column-gap: 25px;
    row-gap: 25px;

    align-items: stretch;
}


/* =========================================================
   01 - LARGE IMAGE
========================================================= */

.new-story-large {
    position: relative;

    grid-column: 1;
    grid-row: 1 / 3;

    width: 100%;
    height: 675px;

    overflow: hidden;
}


/* =========================================================
   03 - SKIRT IMAGE
   TOP RIGHT
========================================================= */

.new-story-skirt {
    position: relative;

    grid-column: 2 / 4;
    grid-row: 1;

    width: 100%;
    height: 300px;

    overflow: hidden;
}


/* =========================================================
   02 - SMALL EXISTING IMAGE
========================================================= */

.new-story-small {
    position: relative;

    grid-column: 2;
    grid-row: 2;

    width: 100%;
    height: 350px;

    overflow: hidden;
}


/* =========================================================
   TEXT CONTENT
========================================================= */

.new-story-text {
    grid-column: 3;
    grid-row: 2;

    width: 100%;

    padding: 20px 5px 15px;

    align-self: center;
}


/* =========================================================
   ALL IMAGE SETTINGS
========================================================= */

.new-story-large img,
.new-story-small img,
.new-story-skirt img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.8s ease;
}


/* =========================================================
   SKIRT IMAGE POSITION
========================================================= */

.new-story-skirt img {
    object-position: center center;
}


/* =========================================================
   IMAGE HOVER
========================================================= */

.new-story-large:hover img,
.new-story-small:hover img,
.new-story-skirt:hover img {
    transform: scale(1.04);
}


/* =========================================================
   IMAGE LABEL
========================================================= */

.new-story-label {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    padding-top: 15px;

    border-top:
        1px solid rgba(255, 255, 255, 0.7);

    color: var(--white);

    z-index: 2;
}


/* =========================================================
   LABEL NUMBER
========================================================= */

.new-story-label span {
    margin: 0;

    font-size: 11px;

    line-height: 1;

    letter-spacing: 2px;
}


/* =========================================================
   LABEL TEXT
========================================================= */

.new-story-label p {
    margin: 0;

    font-size: 11px;

    line-height: 1;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    color: var(--white);
}


/* =========================================================
   TEXT - SUBTITLE
========================================================= */

.new-story-text .section-subtitle {
    display: block;

    margin-bottom: 0;
}


/* =========================================================
   TEXT - HEADING
========================================================= */

.new-story-text h3 {
    margin: 15px 0 20px;

    font-family: var(--font-heading);

    font-size: 45px;

    line-height: 1.05;

    font-weight: 500;

    color: var(--heading-color);
}


/* =========================================================
   TEXT - PARAGRAPH
========================================================= */

.new-story-text p {
    max-width: 430px;

    margin-bottom: 25px;

    color: var(--text-light);

    line-height: 1.9;
}


/* =========================================================
   TEXT LINK
========================================================= */

.new-story-text .text-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .new-image-story {
        padding: 80px 0;
    }


    .new-story-grid {

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        grid-template-rows:
            550px
            350px;

        gap: 25px;
    }


    /* LARGE IMAGE */

    .new-story-large {

        grid-column: 1;
        grid-row: 1;

        height: 550px;
    }


    /* SKIRT IMAGE */

    .new-story-skirt {

        grid-column: 2;
        grid-row: 1;

        height: 550px;
    }


    /* SMALL IMAGE */

    .new-story-small {

        grid-column: 1;
        grid-row: 2;

        height: 350px;
    }


    /* TEXT */

    .new-story-text {

        grid-column: 2;
        grid-row: 2;

        padding:
            20px
            0
            15px;
    }


    .new-story-text h3 {
        font-size: 40px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .new-image-story {
        padding: 65px 0;
    }


    .new-story-grid {

        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: auto;

        gap: 25px;
    }


    /* LARGE IMAGE */

    .new-story-large {

        grid-column: 1;
        grid-row: auto;

        height: 500px;
    }


    /* SKIRT IMAGE */

    .new-story-skirt {

        grid-column: 1;
        grid-row: auto;

        height: 400px;
    }


    /* SMALL IMAGE */

    .new-story-small {

        grid-column: 1;
        grid-row: auto;

        height: 500px;
    }


    /* TEXT */

    .new-story-text {

        grid-column: 1;
        grid-row: auto;

        padding:
            10px
            0
            10px;
    }


    .new-story-text h3 {

        font-size: 40px;

        line-height: 1.08;
    }


    .new-story-text p {

        max-width: 100%;
    }


    /* LABEL */

    .new-story-label {

        left: 20px;
        right: 20px;
        bottom: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .new-image-story {
        padding: 55px 0;
    }


    .new-story-large {
        height: 420px;
    }


    .new-story-skirt {
        height: 350px;
    }


    .new-story-small {
        height: 420px;
    }


    .new-story-text h3 {
        font-size: 36px;
    }


    .new-story-label {

        left: 15px;
        right: 15px;
        bottom: 15px;

        padding-top: 12px;
    }

}
/* =================================================
   FIND YOUR LOOK - IMAGE BANNER
================================================= */

.feature-banner {
    position: relative;
    min-height: 520px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

/* BACKGROUND IMAGE */
.feature-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.feature-banner-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;
}

/* DARK OVERLAY */
.feature-banner-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.42);

    z-index: 1;
}

/* CONTENT */
.feature-banner .container {
    position: relative;
    z-index: 2;
}

.feature-banner-content {
    position: relative;
    z-index: 2;

    max-width: 600px;
}

.feature-banner-content h2,
.feature-banner-content p {
    color: var(--white);
}

.feature-banner-content h2 {
    margin-bottom: 20px;
}

.feature-banner-content p {
    margin: 20px 0 25px;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.88);
}

/* MOBILE */
@media (max-width: 767px) {

    .feature-banner {
        min-height: 600px;
    }

    .feature-banner-image img {
        object-position: 65% center;
    }

    .feature-banner-content {
        max-width: 100%;
    }

}
/* =====================================================
   SIGNATURE EDIT - SMALLER SIZE
===================================================== */

.signature-edit {
    padding: 30px 0 !important;
}

.signature-edit-inner {
    width: min(88%, 1000px) !important;
    min-height: 480px !important;
    grid-template-columns: 0.85fr 1fr !important;
}

/* LEFT CONTENT */
.signature-edit-content {
    padding: 0px 55px 45px 0 !important;
}

.signature-edit-eyebrow {
    font-size: 12px !important;
    margin-bottom: 16px !important;
}

.signature-edit-content h2 {
    font-size: clamp(45px, 5vw, 68px) !important;
    margin-bottom: 20px !important;
}

.signature-edit-content p {
    max-width: 380px !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin-bottom: 25px !important;
}

.signature-edit-link {
    font-size: 12px !important;
    padding-bottom: 6px !important;
}

/* RIGHT IMAGE */
.signature-edit-image {
    min-height: 480px !important;
    height: 480px !important;
}

.signature-edit-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* NUMBER */
.signature-edit-number {
    top: 18px !important;
    left: 18px !important;
    font-size: 17px !important;
}

/* IMAGE LABEL */
.signature-edit-label {
    right: 18px !important;
    bottom: 18px !important;
    padding: 10px 13px !important;
}

.signature-edit-label span {
    font-size: 7px !important;
}

.signature-edit-label strong {
    font-size: 8px !important;
}

/* CENTER V */
.signature-edit-mark {
    width: 58px !important;
    height: 58px !important;
    border-width: 6px !important;
    font-size: 23px !important;
}
@media (max-width: 767px) {

    .signature-edit {
        padding: 50px 0 !important;
    }

    .signature-edit-inner {
        width: 88% !important;
    }

    .signature-edit-content {
        padding: 10px 0 35px !important;
    }

    .signature-edit-content h2 {
        font-size: 48px !important;
    }

    .signature-edit-image {
        min-height: 380px !important;
        height: 380px !important;
    }

    .signature-edit-mark {
        width: 52px !important;
        height: 52px !important;
        font-size: 21px !important;
    }
}

/* =========================================================
   VELORA HOME 2 HERO - FINAL FULL BACKGROUND BANNER FIX
   This block is intentionally at the END so it overrides
   all previous Home 2 hero responsive rules.
========================================================= */

.home2-hero {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    min-height: calc(100vh - 120px) !important;
    overflow: hidden !important;
    background: var(--black) !important;
}

.home2-hero-image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    z-index: 0 !important;
    overflow: hidden !important;
}

.home2-hero-image img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 1s ease !important;
}

.home2-hero::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.42) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.home2-hero-content {
    position: relative !important;
    z-index: 2 !important;
    width: min(92%, var(--container-width)) !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 80px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.home2-hero-content > span {
    color: var(--white) !important;
    margin-bottom: 18px !important;
}

.home2-hero-content h1 {
    max-width: 720px !important;
    margin-bottom: 22px !important;
    color: var(--white) !important;
}

.home2-hero-content h1 span {
    color: var(--primary) !important;
}

.home2-hero-content p {
    max-width: 560px !important;
    margin-bottom: 30px !important;
    color: rgba(255, 255, 255, 0.88) !important;
}

.home2-hero-buttons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

.home2-hero:hover .home2-hero-image img {
    transform: scale(1.025) !important;
}

/* TABLET */
@media (max-width: 991px) {
    .home2-hero {
        min-height: 700px !important;
    }

    .home2-hero-image {
        min-height: 0 !important;
        height: 100% !important;
    }

    .home2-hero-content {
        width: min(90%, 760px) !important;
        padding: 70px 0 !important;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .home2-hero {
        min-height: 650px !important;
    }

    .home2-hero-image {
        height: 100% !important;
    }

    .home2-hero-image img {
        object-position: center !important;
    }

    .home2-hero-content {
        width: 90% !important;
        padding: 60px 0 !important;
    }

    .home2-hero-content h1 {
        font-size: 52px !important;
        line-height: 1 !important;
    }

    .home2-hero-content p {
        max-width: 100% !important;
        font-size: 13px !important;
        line-height: 1.7 !important;
    }

    .home2-hero-buttons {
        flex-direction: row !important;
        align-items: flex-start !important;
    }

    .home2-hero-buttons .btn {
        width: auto !important;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .home2-hero {
        min-height: 620px !important;
    }

    .home2-hero-content {
        width: 90% !important;
        padding: 50px 0 !important;
    }

    .home2-hero-content h1 {
        font-size: 45px !important;
    }

    .home2-hero-content p {
        font-size: 12px !important;
    }
}
/* =========================================================
   VELORA FASHION BOUTIQUE
   GLOBAL STYLE.CSS
   Home 1 | Home 2 | Shop | New Arrivals | Sale
   Style Guide | Contact | Login | Register
========================================================= */

/* =========================================================
   GOOGLE FONT
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --primary: #b07a5a;
    --primary-dark: #8d5d43;
    --secondary: #e8d8ca;

    --bg-color: #faf8f5;
    --bg-secondary: #f1ece6;
    --card-bg: #ffffff;

    --text-color: #333333;
    --text-light: #777777;
    --heading-color: #202020;

    --border-color: #ded8d1;

    --white: #ffffff;
    --black: #111111;

    --success: #3d8b61;
    --danger: #c84c4c;

    --container-width: 1200px;

    --font-heading: "Cormorant Garamond", serif;
    --font-body: "Montserrat", sans-serif;

    --transition: all 0.3s ease;

    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 12px 35px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    transition: var(--transition);
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
}

/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(92%, var(--container-width));
    margin: 0 auto;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    line-height: 1.15;
    font-weight: 600;
}

h1 {
    font-size: 70px
}

h2 {
    font-size: clamp(2.3rem, 4vw, 4rem);
}

h3 {
    font-size: 1.8rem;
}

p {
    color: var(--text-light);
    text-align: justify;
    padding-left: 5px;
    
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}


/* =========================================================
   SECTION
========================================================= */

.section {
    padding: 50px 0;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 15px;
    padding-left: 60px;
}

.section-heading p {
    max-width: 580px;
    margin: 0 auto;
    padding-left: 90px;
}
/* =========================================================
   ANNOUNCEMENT BAR
   Warm boutique tone + running text
========================================================= */

.announcement-bar {
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;

    background: #8f6f5a;
    color: var(--white);

    text-align: center;
}

.announcement-bar .container {
    overflow: hidden;
}

.announcement-bar p {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin: 0;
    white-space: nowrap;

    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;

    animation: announcementRunning 5s linear infinite;
}

.announcement-bar i {
    margin-right: 7px;
    color: var(--white);
}

@keyframes announcementRunning {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}
/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 48px;
    padding: 12px 25px;

    border: 1px solid transparent;

    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;

    text-transform: uppercase;

    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--heading-color);
    color: var(--bg-color);
    border: none;
}

.btn-light {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-light:hover {
    background: transparent;
    color: var(--white);
}
/* =========================================================
   NAVBAR LOGIN BUTTON
========================================================= */

.nav-auth button {
    border: 1px solid var(--primary);
    background: var(--primary);
    color: var(--white);

    padding: 11px 24px;
    min-width: 90px;

    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;

    cursor: pointer;
    border-radius: 2px;

    transition: var(--transition);
}

.nav-auth button:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    
}


/* =========================================================
   TEXT LINK
========================================================= */

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 18px;

    color: var(--primary);

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition: var(--transition);
}

.text-link i {
    transition: var(--transition);
}

.text-link:hover i {
    transform: translateX(5px);
}



/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);

    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.site-logo {
    flex-shrink: 0;

    color: var(--heading-color);

    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;

    letter-spacing: 5px;

    transition: var(--transition);
}

.site-logo:hover {
    color: var(--primary);
}


/* =========================================================
   NAV MENU
========================================================= */

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 28px;

    flex: 1;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-item {
    position: relative;
}

.nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 29px 0;

    background: transparent;
    border: 0;

    color: var(--text-color);

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    transition: var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 22px;

    width: 0;
    height: 1px;

    background: var(--primary);

    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}


/* =========================================================
   HOME DROPDOWN
   ONLY HOME HAS DROPDOWN
========================================================= */

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    appearance: none;
    -webkit-appearance: none;
}

.nav-dropdown-toggle i {
    font-size: 9px;
    transition: transform 0.3s ease;
}

.nav-dropdown-menu {
    position: absolute;

    top: calc(100% - 8px);
    left: 50%;

    min-width: 180px;

    padding: 8px 0;

    background: var(--card-bg);

    border: 1px solid var(--border-color);

    box-shadow: var(--shadow-md);

    opacity: 0;
    visibility: hidden;

    transform: translate(-50%, 10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown.is-open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-link {
    display: block;

    padding: 11px 18px;

    color: var(--text-color);

    font-size: 0.72rem;
    font-weight: 500;

    letter-spacing: 0.7px;
    text-transform: uppercase;

    transition: var(--transition);
}

.nav-dropdown-link:hover {
    background: var(--bg-secondary);
    color: var(--primary);
    padding-left: 23px;
}


/* =========================================================
   NAV ACTIONS
========================================================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-action-btn {
    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border-color);
    background: transparent;

    color: var(--text-color);

    transition: var(--transition);
}

.nav-action-btn:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}

.nav-auth {
    color: var(--text-color);

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    transition: var(--transition);
}

.nav-auth:hover {
    color: var(--primary);
}

.nav-register {
    min-height: 40px;
    padding: 9px 16px;

    font-size: 0.68rem;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.nav-menu-toggle,
.mobile-menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--border-color);
    background: transparent;

    color: var(--heading-color);

    font-size: 1rem;
}


/* =========================================================
   HERO HOME 1
========================================================= */

.hero {
    position: relative;
    min-height: calc(100vh - 120px);

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 700px;
    color: var(--white);
    justify-content: center;

}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 20px;
    justify-content: center;

}

.hero-content p {
    max-width: 560px;
    margin-bottom: 30px;

    color: rgba(255, 255, 255, 0.88);
    justify-content: center;

}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;

}



/* =========================================================
   INTRO SECTION
========================================================= */

.intro-section {
    padding: 50px 0;
    background: var(--bg-color);
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.intro-heading {
    position: relative;
}

.intro-heading .section-subtitle {
    display: block;
    margin-bottom: 25px;
    letter-spacing: 3px;
    font-size: 15px;
}

.intro-heading h2 {
    font-family: var(--font-heading);
    font-size: clamp(70px, 8vw, 120px);
    font-weight: 400;
    line-height: 0.85;
    letter-spacing: -3px;
    margin: 0 0 45px;
}

.intro-heading h2 em {
    font-style: italic;
    font-weight: 400;
}

.intro-heading .text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;

    border-bottom: 1px solid var(--primary);
    padding-bottom: 8px;
}

.intro-heading .text-link i {
    transition: transform 0.3s ease;
}

.intro-heading .text-link:hover i {
    transform: translateX(6px);
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.intro-details {
    border-top: 1px solid var(--border-color);
}

.intro-detail {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 25px;

    padding: 28px 0;

    border-bottom: 1px solid var(--border-color);

    transition: padding-left 0.3s ease;
}

.intro-detail:hover {
    padding-left: 12px;
}

.intro-detail > span {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary);
}

.intro-detail h3 {
    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 500;
    margin-bottom: 8px;
}

.intro-detail p {
    margin: 0;
    max-width: 360px;

    font-size: 13px;
    line-height: 1.8;
    color: var(--text-light);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .intro-section {
        padding: 50px 0;
    }

    .intro-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .intro-heading h2 {
        font-size: 72px;
        letter-spacing: -2px;
    }

    .intro-details {
        width: 100%;
    }

}

/* =========================================================
   PRODUCT GRID
========================================================= */

.product-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.product-card {
    position: relative;

    background: var(--card-bg);

    overflow: hidden;

    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-image {
    position: relative;
    overflow: hidden;

    aspect-ratio: 0.8;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 6px 10px;

    background: var(--primary);
    color: var(--white);

    font-size: 0.65rem;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    z-index: 2;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 6px;

    font-size: 1.5rem;
}

.product-category {
    display: block;
    margin-bottom: 8px;

    color: var(--text-light);

    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price {
    color: var(--primary);
    font-weight: 600;
}


/* =========================================================
   CATEGORY GRID
========================================================= */

.category-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.category-card {
    position: relative;

    min-height: 400px;

    overflow: hidden;
}

.category-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.category-card:hover img {
    transform: scale(1.07);
}

.category-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 25px;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.7),
            transparent 60%
        );
}

.category-overlay h3 {
    color: var(--white);
}


/* =========================================================
   LOOKBOOK
========================================================= */

.lookbook-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.lookbook-item {
    position: relative;
    overflow: hidden;
}

.lookbook-item img {
    aspect-ratio: 0.78;
    object-fit: cover;

    transition: transform 0.7s ease;
}

.lookbook-item:hover img {
    transform: scale(1.05);
}

.lookbook-content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
}

.lookbook-content span {
    color: var(--white);

    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lookbook-content h3 {
    margin-top: 5px;
    color: var(--white);
}


/* =========================================================
   FEATURE BANNER
========================================================= */

.feature-banner {
    position: relative;
    min-height: 480px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.feature-banner img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.feature-banner::after {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.42);
}

.feature-banner-content {
    position: relative;
    z-index: 2;

    max-width: 600px;
}

.feature-banner-content h2,
.feature-banner-content p {
    color: var(--white);
}

.feature-banner-content p {
    margin: 20px 0 25px;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.newsletter-box {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 60px;
}

.newsletter-content h2 {
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    
}

.newsletter-form .form-group {
    flex: 1;
}

.newsletter-form .btn {
    min-height: 58px;
    
}
.newsletter-form input[type="email"] {
    width: 100%;
    min-height: 58px;
    padding: 0 20px;

    border: none;
    outline: none;

    background: var(--white);
    color: var(--black);

    font-family: var(--font-body);
    font-size: 15px;

    border-radius: 0;
    box-shadow: none;
}



/* =========================================================
   FORMS
========================================================= */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--heading-color);

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding: 13px 15px;

    border: 1px solid var(--border-color);

    outline: none;

    background: var(--card-bg);
    color: var(--text-color);

    font-size: 0.82rem;

    transition: var(--transition);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
}


/* =========================================================
   HOME 2 HERO
========================================================= */

.home2-hero {
    min-height: calc(100vh - 120px);

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    background: var(--bg-secondary);
}

.home2-hero-image {
    min-height: 650px;
    overflow: hidden;
}

.home2-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 1s ease;
}

.home2-hero:hover .home2-hero-image img {
    transform: scale(1.025);
}

.home2-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px clamp(30px, 6vw, 100px);
}

.home2-hero-content h1 {
    margin-bottom: 22px;
}

.home2-hero-content h1 span,
.home2-intro-heading h2 span,
.home2-split-content h2 span {
    color: var(--primary);
}

.home2-hero-content p {
    max-width: 500px;
    margin-bottom: 28px;
}

.home2-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   HOME 2 INTRO
========================================================= */

.home2-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.home2-intro-heading h2 {
    max-width: 600px;
}

.home2-intro-text {
    max-width: 560px;
}

.home2-intro-text p {
    font-size: 1rem;
}


/* =========================================================
   HOME 2 CATEGORIES
========================================================= */

.home2-category-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.home2-category-card {
    background: var(--card-bg);

    border: 1px solid var(--border-color);

    overflow: hidden;

    transition: var(--transition);
}

.home2-category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.home2-category-image {
    overflow: hidden;
    aspect-ratio: 0.82;
}

.home2-category-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.home2-category-card:hover .home2-category-image img {
    transform: scale(1.06);
}

.home2-category-content {
    position: relative;
    padding: 22px;
}

.home2-category-content > span {
    color: var(--primary);

    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.home2-category-content h3 {
    margin: 4px 0;
}

.home2-category-content p {
    font-size: 15px;
}

.home2-category-content > i {
    position: absolute;

    right: 20px;
    bottom: 25px;

    color: var(--primary);

    transition: var(--transition);
}

.home2-category-card:hover .home2-category-content > i {
    transform: translateX(5px);
}


/* =========================================================
   HOME 2 SPLIT
========================================================= */

.home2-new-section {
    background: var(--bg-secondary);
}

.home2-split {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 600px;

    align-items: center;
}

.home2-split-image {
    position: relative;

    height: 600px;

    overflow: hidden;
}

.home2-split-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.home2-image-label {
    position: absolute;

    top: 20px;
    left: 20px;

    padding: 8px 13px;

    background: var(--primary);
    color: var(--white);

    font-size: 0.65rem;
    font-weight: 600;

    letter-spacing: 2px;
}

.home2-split-content {
    padding: 60px 8%;
}

.home2-split-content h2 {
    margin-bottom: 20px;
}

.home2-split-content > p {
    max-width: 520px;
    margin-bottom: 25px;
}

.home2-feature-list {
    margin-bottom: 30px;
}

.home2-feature-list li {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 12px;

    color: var(--text-color);

    font-size: 0.8rem;
}

.home2-feature-list i {
    color: var(--primary);
}


/* =========================================================
   HOME 2 LOOKBOOK
========================================================= */



.home2-lookbook-item {
    position: relative;

    min-height: 300px;

    overflow: hidden;
}



.home2-lookbook-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.home2-lookbook-item:hover img {
    transform: scale(1.06);
}

.home2-lookbook-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 30px;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.72),
            transparent
        );
}

.home2-lookbook-overlay span {
    color: var(--white);

    font-size: 0.65rem;
    letter-spacing: 2px;
}

.home2-lookbook-overlay h3 {
    color: var(--white);
    margin-top: 5px;
}


/* =========================================================
   HOME 2 SALE
========================================================= */

.home2-sale {
    padding: 110px 0;

    background:
        linear-gradient(
            rgba(40, 30, 25, 0.78),
            rgba(40, 30, 25, 0.78)
        ),
        url("../images/lookbook/lookbook-1.jpg") center / cover no-repeat;

    text-align: center;
}

.home2-sale-content {
    max-width: 650px;
    margin: 0 auto;
    color: var(--white);
}

.home2-sale-content .eyebrow {
    color: var(--secondary);
}

.home2-sale-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.home2-sale-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    padding-left: 90px;
}


/* =========================================================
   HOME 2 JOURNAL
========================================================= */

.home2-journal-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.home2-journal-card {
    background: var(--card-bg);

    border: 1px solid var(--border-color);

    transition: var(--transition);
}

.home2-journal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.home2-journal-image {
    overflow: hidden;
    aspect-ratio: 1.2;
}

.home2-journal-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.home2-journal-card:hover .home2-journal-image img {
    transform: scale(1.05);
}

.home2-journal-content {
    padding: 25px;
}

.home2-journal-content > span {
    color: var(--primary);

    font-size: 0.65rem;
    font-weight: 600;

    letter-spacing: 2px;
}

.home2-journal-content h3 {
    margin: 10px 0;
    font-size: 1.65rem;
}

.home2-journal-content p {
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.home2-journal-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--primary);

    font-size: 0.7rem;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.home2-journal-content a i {
    transition: var(--transition);
}

.home2-journal-content a:hover i {
    transform: translateX(5px);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 75px 0 0;

    background: var(--black);
    color: var(--white);
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;

    gap: 50px;

    padding-bottom: 55px;
}

.footer-logo {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--white);

    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;

    letter-spacing: 5px;
    padding-left: 10px;
}

.footer-column > p {
    max-width: 320px;

    color: #aaa;

    font-size: 15px;
}

.footer-column h3 {
    margin-bottom: 20px;

    color: var(--white);

    font-size: 1.4rem;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;

    font-size: 15px;

    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 10px;

    margin-top: 22px;
}

.footer-social a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #444;

    color: #aaa;

    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;

    gap: 10px;
}

.footer-contact i {
    margin-top: 5px;
    color: var(--primary);
}

.footer-bottom {
    padding: 20px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #777;
    font-size: 0.68rem;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    background: var(--primary);
    color: var(--white);

    box-shadow: var(--shadow-md);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: var(--transition);

    z-index: 900;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.active,
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1100px) {

    .nav-menu {
        gap: 15px;
    }

    .nav-list {
        gap: 15px;
    }

    .product-grid,
    .category-grid,
    .home2-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home2-hero {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE NAV
========================================================= */

@media (max-width: 991px) {

    .navbar {
        min-height: 72px;
    }

    .site-logo {
        font-size: 1.8rem;
    }

    .nav-menu-toggle,
    .mobile-menu-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;
        align-items: stretch;

        width: 100%;

        max-height: calc(100vh - 72px);
        overflow-y: auto;

        padding: 15px 5%;

        background: var(--card-bg);

        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);

        box-shadow: var(--shadow-md);

        gap: 10px;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;

        justify-content: space-between;

        padding: 15px 0;

        border-bottom: 1px solid var(--border-color);
    }

    .nav-link::after {
        display: none;
    }

    /* MOBILE HOME DROPDOWN */

    .nav-dropdown-menu {
        position: static;

        width: 100%;
        min-width: 0;

        display: none;

        padding: 0;

        border: 0;
        border-bottom: 1px solid var(--border-color);

        box-shadow: none;

        opacity: 1;
        visibility: visible;

        transform: none;

        transition: none;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: block;

        transform: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown-link {
        padding: 13px 20px;

        background: var(--bg-secondary);

        border-bottom: 1px solid var(--border-color);
    }

    .nav-dropdown-link:last-child {
        border-bottom: 0;
    }

    .nav-dropdown-link:hover {
        padding-left: 25px;
    }

    .nav-actions {
        width: 100%;

        justify-content: flex-start;

        flex-wrap: wrap;

        padding: 15px 0 5px;
    }

    .nav-auth {
        margin-left: 5px;
    }

    .home2-hero {
        min-height: auto;

        grid-template-columns: 1fr;
    }

    .home2-hero-image {
        min-height: 500px;
    }

    .home2-hero-content {
        padding: 70px 6%;
    }

    .home2-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .home2-split {
        grid-template-columns: 1fr;
    }

    .home2-split-image {
        height: 500px;
    }

    .home2-split-content {
        padding: 60px 6%;
    }
}


/* =========================================================
   RESPONSIVE - SMALL MOBILE
========================================================= */

@media (max-width: 767px) {

    .section {
        padding: 70px 0;
    }

    .newsletter-section {
        padding: 70px 0;
    }

    .container {
        width: min(92%, 600px);
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .product-grid,
    .category-grid,
    .home2-category-grid,
    .home2-journal-grid {
        grid-template-columns: 1fr;
    }

    .lookbook-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 350px;
    }

    .newsletter-box {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-form .btn {
        width: 100%;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        padding: 40px 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .home2-hero-image {
        min-height: 420px;
    }

    .home2-hero-content {
        padding: 55px 5%;
    }

    .home2-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .home2-hero-buttons .btn {
        width: 100%;
    }

    .home2-lookbook-grid {
        display: grid;

        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .home2-lookbook-item.large {
        grid-row: auto;
    }

    .home2-lookbook-item {
        min-height: 400px;
    }

    .home2-split-image {
        height: 420px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;
    }
}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 480px) {

    .site-logo {
        font-size: 1.55rem;
        letter-spacing: 3px;
    }

    .nav-action-btn {
        width: 35px;
        height: 35px;
    }

    .nav-register {
        padding: 8px 13px;
    }

    .home2-lookbook-item {
        min-height: 330px;
    }

    .home2-sale {
        padding: 80px 0;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-color);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}


/* =====================================================
   MOBILE NAVIGATION
===================================================== */

@media (max-width: 991px) {

    .mobile-menu-toggle {
        display: flex;
    }

}


@media (max-width: 767px) {

    .mobile-menu-toggle {
        display: flex;
    }

}
/* =====================================================
   AUTH / LOGIN PAGE
===================================================== */

.auth-wrapper {
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 520px;
    padding: 50px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.auth-header {
    text-align: center;
    margin-bottom: 35px;
}

.auth-header h1 {
    margin: 8px 0 10px;
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--heading-color);
}

.auth-header p {
    color: var(--text-light);
    font-size: 14px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-form .form-group {
    margin-bottom: 0;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.input-icon input {
    padding-left: 46px;
}

.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 13px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
}

.forgot-link {
    color: var(--primary);
}

.auth-submit {
    width: 100%;
    margin-top: 5px;
}

.auth-switch {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    padding-top: 10px;
}

.auth-switch a {
    color: var(--primary);
    font-weight: 600;
    margin-left: 5px;
}

.auth-switch a:hover {
    color: var(--primary-dark);
}


/* MOBILE LOGIN */

@media (max-width: 767px) {

    .auth-wrapper {
        min-height: auto;
        padding: 30px 0;
    }

    .auth-card {
        padding: 30px 22px;
    }

    .auth-header h1 {
        font-size: 40px;
    }

    .auth-options {
        flex-direction: column;
        align-items: flex-start;
    }

}

/* =====================================================
   SALE BENEFIT CARDS
===================================================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    padding: 38px 30px;
    text-align: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.55rem;
}

.feature-card p {
    max-width: 330px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 30px 24px;
    }
}

/* =====================================================
   SHOP PAGE
===================================================== */

.page-hero {
    padding: 100px 0;
    text-align: center;
    background: var(--bg-secondary);
}

.page-hero h1 {
    margin: 10px 0 15px;
    font-family: var(--font-heading);
    font-size: clamp(52px, 7vw, 88px);
    line-height: 1;
    color: var(--heading-color);
}

.page-hero p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-light);
    line-height: 1.8;
}


/* SHOP FILTERS */

.shop-filters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0;
    padding: 30px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.shop-filter-group h3 {
    margin-bottom: 18px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--heading-color);
}

.shop-filter-group h3 i {
    margin-right: 8px;
    color: var(--primary);
}

.shop-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.shop-filter-btn {
    padding: 9px 15px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 15px;
    letter-spacing: .5px;
    cursor: pointer;
    transition: var(--transition);
}

.shop-filter-btn:hover,
.shop-filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}


/* PRODUCT GRID */

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 18px;
}

.shop-product-card {
    min-width: 0;
    transition: transform .35s ease, box-shadow .35s ease, opacity .3s ease;
}

.shop-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.shop-product-card.is-hidden {
    display: none;
}

.shop-product-card .product-image {
    aspect-ratio: 0.82;
}

.shop-product-card .product-badge {
    top: 10px;
    left: 10px;
    padding: 5px 8px;
    font-size: 0.58rem;
}

.shop-product-card .product-action {
    width: 34px;
    height: 34px;
    right: 10px;
    bottom: 10px;
}

.shop-product-card .product-info {
    padding: 14px 13px 16px;
}

.shop-product-card .product-category {
    margin-bottom: 6px;
    font-size: 0.58rem;
    letter-spacing: .9px;
}

.shop-product-card .product-info h3 {
    margin-bottom: 5px;
    font-size: 1.05rem;
    line-height: 1.15;
}

.shop-product-card .product-info > p:not(.product-price) {
    margin: 6px 0 10px;
    font-size: 13px;
    line-height: 1.55;
}

.shop-product-card .product-price {
    font-size: 13px;
}

.shop-product-card.filter-visible {
    animation: shopFilterIn .35s ease both;
}

@keyframes shopFilterIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* EMPTY RESULT */

.shop-empty {
    display: none;
    padding: 70px 20px;
    text-align: center;
}

.shop-empty.show {
    display: block;
}

.shop-empty i {
    margin-bottom: 15px;
    font-size: 38px;
    color: var(--text-light);
}

.shop-empty h3 {
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--heading-color);
}

.shop-empty p {
    color: var(--text-light);
}


/* SHOP RESPONSIVE */

@media (max-width: 991px) {

    .shop-filters {
        grid-template-columns: 1fr;
    }

    .shop-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 767px) {

    .page-hero {
        padding: 70px 0;
    }

    .shop-filters {
        padding: 20px;
        margin: 35px 0;
    }

    .shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 14px;
    }

}

@media (max-width: 480px) {
    .shop-product-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }


    .shop-filter-buttons {
        gap: 6px;
    }

    .shop-filter-btn {
        padding: 8px 12px;
        font-size: 11px;
    }

}
/* =====================================================
   NEW ARRIVALS - EDITORIAL DESIGN
===================================================== */

.new-editorial-hero {
    min-height: 720px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    background: var(--bg-secondary);
}

.new-editorial-image {
    min-height: 720px;
    overflow: hidden;
}

.new-editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.new-editorial-image:hover img {
    transform: scale(1.04);
}

.new-editorial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
}

.new-editorial-content h1 {
    margin: 18px 0 25px;
    font-family: var(--font-heading);
    font-size: clamp(58px, 7vw, 105px);
    line-height: .88;
    color: var(--heading-color);
}

.new-editorial-content h1 span {
    display: block;
    margin-left: 60px;
    font-style: italic;
    font-weight: 400;
}

.new-editorial-content p {
    max-width: 480px;
    margin-bottom: 32px;
    color: var(--text-light);
    line-height: 1.9;
}


/* INTRO */

.new-intro {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.new-intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr .4fr;
    align-items: center;
    gap: 60px;
}

.new-intro-grid h2 {
    margin-top: 15px;
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 68px);
    line-height: .95;
    color: var(--heading-color);
}

.new-intro-grid p {
    color: var(--text-light);
    line-height: 1.9;
}

.new-intro-number {
    text-align: right;
}

.new-intro-number span {
    display: block;
    font-family: var(--font-heading);
    font-size: 70px;
    line-height: 1;
    color: var(--primary);
}

.new-intro-number small {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-light);
}


/* IMAGE STORY */

.new-image-story {
    padding: 50px 0;
}

.new-story-grid {
    display: grid;
    grid-template-columns: 1.2fr .75fr .7fr;
    gap: 25px;
    align-items: end;
}

.new-story-large,
.new-story-small {
    position: relative;
    overflow: hidden;
}

.new-story-large {
    height: 650px;
}

.new-story-small {
    height: 470px;
}

.new-story-large img,
.new-story-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.new-story-large:hover img,
.new-story-small:hover img {
    transform: scale(1.04);
}

.new-story-label {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,.7);
    color: var(--white);
}

.new-story-label span {
    font-size: 11px;
    letter-spacing: 2px;
}

.new-story-label p {
    margin: 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.new-story-text {
    padding: 30px 0 15px;
}

.new-story-text h3 {
    margin: 15px 0 20px;
    font-family: var(--font-heading);
    font-size: 45px;
    line-height: 1;
    color: var(--heading-color);
}

.new-story-text p {
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.9;
}


/* PRODUCT SECTION */

.new-arrivals-grid {
    margin-top: 55px;
}

.new-arrivals-grid .product-card {
    transition: transform .4s ease;
}

.new-arrivals-grid .product-card:hover {
    transform: translateY(-8px);
}


/* FULL EDITORIAL */

.new-full-editorial {
    position: relative;
    min-height: 650px;
    overflow: hidden;
}

.new-full-editorial > img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.new-full-editorial-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;
    text-align: center;

    background: rgba(0, 0, 0, 0.18);

    z-index: 2;
}

.new-full-editorial-overlay h2 {
    margin: 0;
    color: var(--black);
}

.new-full-editorial-overlay h2 em {
    display: block;
}


/* TRENDING */

.new-trending .section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
}

.new-trending-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 45px;
}

.new-trending-card {
    position: relative;
    height: 470px;
    overflow: hidden;
}

.new-trending-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.new-trending-card:hover img {
    transform: scale(1.05);
}

.new-trending-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.65),
        transparent 55%
    );
}

.new-trending-card > div {
    position: absolute;
    z-index: 2;
    left: 25px;
    right: 25px;
    bottom: 25px;
    color: var(--white);
}

.new-trending-card span {
    font-size: 10px;
    letter-spacing: 2px;
}

.new-trending-card h3 {
    margin-top: 7px;
    font-family: var(--font-heading);
    font-size: 32px;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .new-editorial-hero {
        grid-template-columns: 1fr;
    }

    .new-editorial-image {
        min-height: 550px;
    }

    .new-editorial-content {
        padding: 60px 30px;
    }

    .new-intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .new-intro-number {
        text-align: left;
    }

    .new-story-grid {
        grid-template-columns: 1fr 1fr;
    }

    .new-story-large {
        height: 550px;
    }

    .new-story-small {
        height: 550px;
    }

    .new-story-text {
        grid-column: 1 / -1;
    }

    .new-trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .new-editorial-image {
        min-height: 450px;
    }

    .new-editorial-content {
        padding: 50px 20px;
    }

    .new-editorial-content h1 {
        font-size: 65px;
    }

    .new-editorial-content h1 span {
        margin-left: 30px;
    }

    .new-intro {
        padding: 60px 0;
    }

    .new-image-story {
        padding: 65px 0;
    }

    .new-story-grid {
        grid-template-columns: 1fr;
    }

    .new-story-large,
    .new-story-small {
        height: 500px;
    }

    .new-full-editorial,
    .new-full-editorial > img {
        min-height: 500px;
        height: 500px;
    }

    .new-trending .section-heading {
        display: block;
    }

    .new-trending .text-link {
        display: inline-flex;
        margin-top: 20px;
    }

    .new-trending-grid {
        grid-template-columns: 1fr;
    }

    .new-trending-card {
        height: 500px;
    }

}


@media (max-width: 480px) {

    .new-editorial-image {
        min-height: 380px;
    }

    .new-editorial-content h1 {
        font-size: 55px;
    }

    .new-editorial-content h1 span {
        margin-left: 15px;
    }

    .new-story-large,
    .new-story-small {
        height: 420px;
    }

    .new-story-text h3 {
        font-size: 38px;
    }

}
/* =====================================================
   STYLE GUIDE PAGE
===================================================== */

.style-guide-hero {
    min-height: 680px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    background: var(--bg-secondary);
}

.style-guide-hero-image {
    min-height: 680px;
    overflow: hidden;
}

.style-guide-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.style-guide-hero-image:hover img {
    transform: scale(1.04);
}

.style-guide-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
}

.style-guide-hero-content h1 {
    margin: 18px 0 25px;
    font-family: var(--font-heading);
    font-size: clamp(58px, 7vw, 100px);
    line-height: .88;
    color: var(--heading-color);
}

.style-guide-hero-content h1 span {
    display: block;
    margin-left: 55px;
    font-style: italic;
    font-weight: 400;
}

.style-guide-hero-content p {
    max-width: 470px;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.9;
}


/* PRINCIPLES */

.style-principles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.style-principle {
    position: relative;
    padding: 35px 25px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    transition: transform .35s ease,
                box-shadow .35s ease;
}

.style-principle:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.style-principle > span {
    display: block;
    margin-bottom: 25px;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-light);
}

.style-principle i {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 25px;
}

.style-principle h3 {
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: 27px;
    color: var(--heading-color);
}

.style-principle p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.8;
}


/* STORIES */

.style-story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 25px;
    margin-top: 45px;
}

.style-story-card {
    overflow: hidden;
}

.style-story-card.large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
}

.style-story-image {
    height: 430px;
    overflow: hidden;
}

.style-story-card.large .style-story-image {
    height: 550px;
}

.style-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.style-story-card:hover .style-story-image img {
    transform: scale(1.04);
}

.style-story-content {
    padding: 30px 0;
}

.style-story-card.large .style-story-content {
    padding: 60px 45px;
    background: var(--bg-secondary);
}

.style-story-content > span {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-light);
}

.style-story-content h3 {
    margin: 12px 0 15px;
    font-family: var(--font-heading);
    font-size: 36px;
    line-height: 1;
    color: var(--heading-color);
}

.style-story-content p {
    max-width: 500px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.9;
}


/* LOOKBOOK */

.style-lookbook {
    position: relative;
    min-height: 620px;
    overflow: hidden;
}

.style-lookbook-image {
    width: 100%;
    height: 620px;
}

.style-lookbook-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-lookbook-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    background: rgba(0,0,0,.38);
}

.style-lookbook-content h2 {
    margin: 15px 0 25px;
    font-family: var(--font-heading);
    font-size: clamp(55px, 8vw, 105px);
    line-height: .85;
    color: var(--white);
}

.style-lookbook-content h2 em {
    display: block;
    font-weight: 400;
}

.style-lookbook-content p {
    max-width: 500px;
    margin-bottom: 30px;
    color: var(--white);
    line-height: 1.8;
}


/* STYLE TIPS */

.style-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.style-tip {
    padding: 35px;
    border-top: 1px solid var(--border-color);
}

.style-tip-number {
    margin-bottom: 25px;
    font-family: var(--font-heading);
    font-size: 45px;
    color: var(--primary);
}

.style-tip h3 {
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--heading-color);
}

.style-tip p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .style-guide-hero {
        grid-template-columns: 1fr;
    }

    .style-guide-hero-image {
        min-height: 520px;
    }

    .style-guide-hero-content {
        padding: 60px 30px;
    }

    .style-principles {
        grid-template-columns: repeat(2, 1fr);
    }

    .style-story-card.large {
        grid-template-columns: 1fr;
    }

    .style-story-card.large .style-story-image {
        height: 500px;
    }

}


@media (max-width: 767px) {

    .style-guide-hero-image {
        min-height: 430px;
    }

    .style-guide-hero-content {
        padding: 50px 20px;
    }

    .style-guide-hero-content h1 {
        font-size: 65px;
    }

    .style-guide-hero-content h1 span {
        margin-left: 30px;
    }

    .style-principles {
        grid-template-columns: 1fr;
    }

    .style-story-grid {
        grid-template-columns: 1fr;
    }

    .style-story-card.large {
        grid-column: auto;
    }

    .style-story-card.large .style-story-content {
        padding: 35px 25px;
    }

    .style-lookbook,
    .style-lookbook-image {
        min-height: 500px;
        height: 500px;
    }

    .style-tips-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .style-guide-hero-content h1 {
        font-size: 55px;
    }

    .style-guide-hero-content h1 span {
        margin-left: 15px;
    }

    .style-story-image,
    .style-story-card.large .style-story-image {
        height: 420px;
    }

}
/* =========================================================
   NEW ARRIVALS PAGE
========================================================= */

.new-arrivals-hero {
    min-height: 78vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
}

.new-arrivals-hero-image {
    position: absolute;
    inset: 0;
}

.new-arrivals-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-arrivals-hero-content {
    position: relative;
    z-index: 2;
    width: min(650px, 90%);
    margin-left: 8%;
    padding: 70px;
    background: rgba(255, 255, 255, 0.9);
}

.new-arrivals-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(60px, 8vw, 110px);
    line-height: .85;
    margin: 18px 0 25px;
    color: var(--heading-color);
}

.new-arrivals-hero-content p {
    max-width: 500px;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.8;
}


/* INTRO */

.new-arrivals-intro {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.new-arrivals-intro-grid {
    display: grid;
    grid-template-columns: .6fr 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 80px;
    line-height: .8;
    color: var(--primary);
}

.section-label {
    display: block;
    margin-top: 15px;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
}

.new-arrivals-intro h2 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1;
    font-weight: 500;
}

.new-arrivals-intro p {
    line-height: 1.9;
    color: var(--text-light);
}


/* STORY */

.new-arrivals-story {
    padding: 110px 0;
}

.new-arrivals-story-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 30px;
    align-items: center;
}

.story-image {
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-image-large {
    height: 680px;
}

.story-image-small {
    height: 390px;
}

.story-image-medium {
    height: 520px;
}

.story-caption {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    z-index: 2;
}

.story-caption span {
    font-size: 12px;
    letter-spacing: 2px;
}

.story-caption p {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.story-content {
    padding: 50px;
}

.story-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 70px);
    line-height: .95;
    margin: 20px 0;
}

.story-content p {
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 30px;
}


/* PRODUCT GRID */

.new-arrivals-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.new-arrivals-product-grid .product-card {
    min-width: 0;
}

.new-arrivals-product-grid .product-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
}

.new-arrivals-product-grid .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.new-arrivals-product-grid .product-card:hover img {
    transform: scale(1.05);
}

.new-arrivals-product-grid .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 7px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    letter-spacing: 1.5px;
}

.product-wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-wishlist:hover {
    transform: scale(1.08);
}

.product-info {
    padding: 18px 0 25px;
}

.product-category {
    display: block;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 10px;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
    padding-left: 5px;
}

.product-price {
    font-size: 14px;
    font-weight: 600;
    padding-left: 10px;
}


/* CURATED EDIT */

.curated-edit-section {
    padding: 110px 0;
    background: var(--bg-secondary);
}

.curated-edit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.curated-edit-card {
    display: block;
    background: var(--card-bg);
    overflow: hidden;
    color: var(--text-color);
}

.curated-edit-image {
    height: 480px;
    overflow: hidden;
}

.curated-edit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.curated-edit-card:hover img {
    transform: scale(1.06);
}

.curated-edit-content {
    padding: 25px;
    position: relative;
}

.curated-edit-content > span {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--primary);
}

.curated-edit-content h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin: 8px 0;
}

.curated-edit-content p {
    color: var(--text-light);
    line-height: 1.7;
    max-width: 280px;
}

.curated-edit-content i {
    position: absolute;
    right: 25px;
    bottom: 30px;
    transition: transform .3s ease;
}

.curated-edit-card:hover .curated-edit-content i {
    transform: translateX(5px);
}


/* EDITORIAL BANNER */

.new-editorial-banner {
    min-height: 650px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.new-editorial-image {
    position: absolute;
    inset: 0;
}

.new-editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-editorial-content {
    position: relative;
    z-index: 2;
    width: min(600px, 90%);
    margin-left: 8%;
    padding: 55px;
    background: rgba(0,0,0,.52);
    color: white;
}

.new-editorial-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(50px, 7vw, 90px);
    line-height: .9;
    margin: 18px 0;
}

.new-editorial-content p {
    max-width: 460px;
    line-height: 1.8;
    margin-bottom: 30px;
}


/* DROP NOTE */

.drop-note-section {
    padding: 100px 0;
}

.drop-note {
    display: grid;
    grid-template-columns: 100px 1fr 80px;
    gap: 50px;
    align-items: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 0;
}

.drop-note-number {
    font-family: var(--font-heading);
    font-size: 70px;
    color: var(--primary);
}

.drop-note-main h2 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 65px);
    line-height: .95;
    margin: 15px 0;
}

.drop-note-main p {
    max-width: 600px;
    color: var(--text-light);
    line-height: 1.8;
}

.circle-link {
    width: 70px;
    height: 70px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition);
}

.circle-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}


/* TRENDING */

.trending-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trending-card {
    overflow: hidden;
}

.trending-image {
    height: 500px;
    overflow: hidden;
}

.trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.trending-card:hover img {
    transform: scale(1.05);
}

.trending-info {
    padding: 20px 0;
    display: grid;
    grid-template-columns: 35px 1fr auto;
    align-items: center;
    gap: 10px;
}

.trending-info span {
    font-size: 11px;
    color: var(--primary);
}

.trending-info h3 {
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 500;
}

.trending-info p {
    font-size: 13px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .new-arrivals-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .new-arrivals-intro-grid {
        grid-template-columns: 1fr 1.5fr;
    }

    .new-arrivals-intro-grid > div:last-child {
        grid-column: 2;
    }

}


@media (max-width: 991px) {

    .new-arrivals-hero {
        min-height: 650px;
    }

    .new-arrivals-hero-content {
        margin-left: 5%;
        padding: 45px;
    }

    .new-arrivals-story-grid {
        grid-template-columns: 1fr;
    }

    .story-image-large,
    .story-image-small,
    .story-image-medium {
        height: 550px;
    }

    .story-content {
        padding: 30px 0;
    }

    .new-arrivals-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .curated-edit-grid {
        grid-template-columns: 1fr;
    }

    .curated-edit-image {
        height: 550px;
    }

    .drop-note {
        grid-template-columns: 70px 1fr 60px;
        gap: 25px;
    }

    .trending-grid {
        grid-template-columns: 1fr;
    }

    .trending-image {
        height: 600px;
    }

}


@media (max-width: 767px) {

    .new-arrivals-hero {
        min-height: 600px;
    }

    .new-arrivals-hero-content {
        width: 88%;
        margin: 0 auto;
        padding: 35px 25px;
    }

    .new-arrivals-hero-content h1 {
        font-size: 65px;
    }

    .new-arrivals-intro {
        padding: 60px 0;
    }

    .new-arrivals-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .new-arrivals-intro-grid > div:last-child {
        grid-column: auto;
    }

    .section-number {
        font-size: 65px;
    }

    .new-arrivals-story {
        padding: 70px 0;
    }

    .story-image-large,
    .story-image-small,
    .story-image-medium {
        height: 450px;
    }

    .new-arrivals-product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .product-info h3 {
        font-size: 20px;
    }

    .curated-edit-section {
        padding: 70px 0;
    }

    .curated-edit-image {
        height: 430px;
    }

    .new-editorial-banner {
        min-height: 600px;
    }

    .new-editorial-content {
        margin: 0 auto;
        padding: 35px 25px;
    }

    .drop-note {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .circle-link {
        width: 55px;
        height: 55px;
    }

    .trending-image {
        height: 450px;
    }

}


@media (max-width: 480px) {

    .new-arrivals-product-grid {
        grid-template-columns: 1fr;
    }

    .new-arrivals-product-grid .product-image {
        aspect-ratio: 4 / 5;
    }

    .story-image-large,
    .story-image-small,
    .story-image-medium {
        height: 400px;
    }

    .new-editorial-content h2 {
        font-size: 55px;
    }

}

@media (max-width: 767px) {

}
.hero-image video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
/* =========================================================
   PREMIUM LATEST ARRIVALS
========================================================= */

.latest-arrivals-section {
    background: var(--bg-color);
}


/* SECTION HEADER */

.latest-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 55px;
}

.latest-heading {
    flex: 1;
}

.latest-heading .section-subtitle {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
}

.latest-heading .section-title {
    margin: 0;
}


.latest-header-side {
    width: 360px;
    padding-bottom: 5px;
}

.latest-header-side p {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}


/* VIEW ALL */

.latest-view-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--heading-color);

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    border-bottom: 1px solid var(--primary);
    padding-bottom: 7px;

    transition: var(--transition);
}

.latest-view-link i {
    color: var(--primary);
    font-size: 10px;
    transition: var(--transition);
}

.latest-view-link:hover {
    color: var(--primary);
}

.latest-view-link:hover i {
    transform: translate(4px, -4px);
}


/* PRODUCT GRID */

.premium-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}


/* PRODUCT CARD */

.premium-product-card {
    position: relative;
    background: transparent;
    overflow: hidden;
}


/* IMAGE */

.premium-product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 0.76;
    background: var(--bg-secondary);
}

.premium-product-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transition:
        transform 0.8s ease,
        filter 0.5s ease;
}

.premium-product-card:hover
.premium-product-image img {
    transform: scale(1.055);
}


/* PRODUCT NUMBER */

.premium-product-number {
    position: absolute;
    top: 16px;
    left: 16px;

    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--white);

    z-index: 2;
}


/* BADGE */

.premium-product-badge {
    position: absolute;
    top: 16px;
    right: 16px;

    padding: 6px 10px;

    background: var(--white);
    color: var(--primary);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;

    z-index: 2;
}


/* IMAGE OVERLAY */

.premium-product-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.18),
            transparent 35%,
            rgba(0, 0, 0, 0.12)
        );

    pointer-events: none;
}


/* ARROW BUTTON */

.premium-product-arrow {
    position: absolute;

    right: 18px;
    bottom: 18px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);
    color: var(--primary);

    font-size: 12px;

    opacity: 0;
    transform: translateY(12px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;

    z-index: 3;
}

.premium-product-card:hover
.premium-product-arrow {
    opacity: 1;
    transform: translateY(0);
}

.premium-product-arrow:hover {
    background: var(--primary);
    color: var(--white);
}


/* PRODUCT INFO */

.premium-product-info {
    padding: 18px 2px 0;
}


/* META */

.premium-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    margin-bottom: 7px;
}

.premium-product-meta span {
    color: var(--text-light);

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.premium-product-meta span:last-child {
    color: var(--primary);
}


/* PRODUCT TITLE */

.premium-product-info h3 {
    margin: 0 0 13px;

    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 500;
    line-height: 1.1;

    color: var(--heading-color);

    transition: var(--transition);
}

.premium-product-card:hover
.premium-product-info h3 {
    color: var(--primary);
}


/* BOTTOM */

.premium-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding-top: 11px;

    border-top: 1px solid var(--border-color);
}


/* RATING */

.premium-rating {
    display: flex;
    align-items: center;
    gap: 7px;
}

.premium-rating .stars {
    color: var(--primary);

    font-size: 10px;
    letter-spacing: 1px;
}

.premium-rating .reviews {
    color: var(--text-light);

    font-size: 12px;
}


/* PRICE */

.premium-price {
    color: var(--heading-color);

    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   PREMIUM LATEST ARRIVALS - TABLET
========================================================= */

@media (max-width: 1100px) {

    .premium-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 22px;
    }

    .latest-header {
        align-items: flex-start;
    }

    .latest-header-side {
        width: 300px;
    }

}


/* =========================================================
   PREMIUM LATEST ARRIVALS - MOBILE
========================================================= */

@media (max-width: 767px) {

    .latest-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        margin-bottom: 40px;
    }

    .latest-header-side {
        width: 100%;
    }

    .premium-product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 14px;
    }

    .premium-product-number {
        top: 10px;
        left: 10px;
        font-size: 14px;
    }

    .premium-product-badge {
        top: 10px;
        right: 10px;
        padding: 5px 7px;
        font-size: 8px;
    }

    .premium-product-info {
        padding-top: 13px;
    }

    .premium-product-meta {
        margin-bottom: 6px;
    }

    .premium-product-meta span {
        font-size: 7px;
        letter-spacing: 0.8px;
    }

    .premium-product-info h3 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .premium-product-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .premium-rating .reviews {
        font-size: 8px;
    }

    .premium-price {
        font-size: 12px;
    }

    .premium-product-arrow {
        width: 38px;
        height: 38px;
        right: 10px;
        bottom: 10px;
    }

}
/* =========================================================
   LOOKBOOK SCROLL REVEAL
========================================================= */

.lookbook-item {
    position: relative;
    overflow: hidden;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    opacity: 0;
    transform: scale(1.15);

    clip-path: inset(12% 12% 12% 12%);

    transition:
        opacity 1.4s ease,
        transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
        clip-path 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}


/* When section enters viewport */

.lookbook-item.lookbook-visible img {
    opacity: 1;
    transform: scale(1);
    clip-path: inset(0 0 0 0);
}


/* One by one delay */

.lookbook-item:nth-child(1).lookbook-visible img {
    transition-delay: 0s;
}

.lookbook-item:nth-child(2).lookbook-visible img {
    transition-delay: 0.25s;
}

.lookbook-item:nth-child(3).lookbook-visible img {
    transition-delay: 0.5s;
}


/* Hover after reveal */

.lookbook-item.lookbook-visible:hover img {
    transform: scale(1.05);
    transition:
        transform 0.8s ease;
}
/* =========================================================
   SHOP BY CATEGORY - LEFT TO RIGHT SCROLL REVEAL
========================================================= */

.category-card {
    position: relative;
    overflow: hidden;

    opacity: 0;
    transform: translateX(-80px);

    transition:
        opacity 1.2s ease,
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}


/* When category enters viewport */

.category-card.category-visible {
    opacity: 1;
    transform: translateX(0);
}


/* One by one */

.category-card:nth-child(1).category-visible {
    transition-delay: 0s;
}

.category-card:nth-child(2).category-visible {
    transition-delay: 0.2s;
}

.category-card:nth-child(3).category-visible {
    transition-delay: 0.4s;
}

.category-card:nth-child(4).category-visible {
    transition-delay: 0.6s;
}


/* Image slight zoom while coming */

.category-card img {
    transform: scale(1.08);
    transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-card.category-visible img {
    transform: scale(1);
}


/* Normal hover after animation */

.category-card.category-visible:hover img {
    transform: scale(1.06);
}
/* =========================================================
   FEATURE CARD HOVER COLOUR
========================================================= */

.feature-card {
    transition:
        background-color 0.4s ease,
        color 0.4s ease,
        transform 0.4s ease;
}

.feature-card:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-6px);
}

.feature-card:hover .feature-icon {
    color: var(--white);
}

.feature-card:hover h3 {
    color: var(--white);
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.85);
}
/* =====================================================
   VELORA SIGNATURE EDIT
===================================================== */

.signature-edit {
    padding: 100px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.signature-edit-inner {
    width: min(92%, var(--container-width));
    min-height: 620px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    position: relative;
}


/* LEFT CONTENT */

.signature-edit-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px 90px 70px 0;

    position: relative;
    z-index: 2;
}

.signature-edit-eyebrow {
    display: block;

    margin-bottom: 24px;

    color: var(--primary);

    font-size: 17px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.signature-edit-content h2 {
    max-width: 520px;

    margin: 0 0 28px;

    font-family: var(--font-heading);
    font-size: clamp(58px, 6vw, 90px);

    font-weight: 400;
    line-height: 0.9;

    letter-spacing: -2px;

    color: var(--heading-color);
}

.signature-edit-content h2 em {
    display: block;

    color: var(--primary);

    font-style: italic;
    font-weight: 400;
}

.signature-edit-content p {
    max-width: 420px;

    margin: 0 0 38px;

    color: var(--text-light);

    font-size: 14px;
    line-height: 1.9;
}


/* LINK */

.signature-edit-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    width: fit-content;

    padding-bottom: 9px;

    border-bottom: 1px solid var(--primary);

    color: var(--heading-color);

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition: var(--transition);
}

.signature-edit-link i {
    color: var(--primary);

    transition: transform 0.3s ease;
}

.signature-edit-link:hover {
    color: var(--primary);
}

.signature-edit-link:hover i {
    transform: translateX(6px);
}


/* RIGHT IMAGE */

.signature-edit-image {
    position: relative;

    min-height: 620px;

    overflow: hidden;
}

.signature-edit-image img {
    width: 70%;
    height: 70%;

    display: block;

    object-fit: cover;

    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.signature-edit-image:hover img {
    transform: scale(1.04);
}


/* DARK SOFT OVERLAY */

.signature-edit-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.08),
            transparent 45%,
            rgba(0, 0, 0, 0.25)
        );

    pointer-events: none;
}


/* IMAGE NUMBER */

.signature-edit-number {
    position: absolute;

    top: 25px;
    left: 25px;

    z-index: 3;

    color: var(--white);

    font-family: var(--font-heading);
    font-size: 22px;
}


/* IMAGE LABEL */

.signature-edit-label {
    position: absolute;

    right: 25px;
    bottom: 25px;

    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 4px;

    padding: 14px 18px;

    background: rgba(255, 255, 255, 0.94);
}

.signature-edit-label span {
    color: var(--primary);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 2px;
}

.signature-edit-label strong {
    color: var(--primary);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1.5px;
}


/* CENTER V MARK */

.signature-edit-mark {
    position: absolute;

    left: 42.5%;
    top: 50%;

    width: 74px;
    height: 74px;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5;

    background: var(--primary);

    color: var(--white);

    border: 8px solid var(--bg-secondary);

    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 500;

    transition: transform 0.4s ease;
}

.signature-edit-inner:hover .signature-edit-mark {
    transform: translate(-50%, -50%) rotate(45deg);
}

.signature-edit-inner:hover .signature-edit-mark {
    border-radius: 0;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .signature-edit {
        padding: 50px 0;
    }

    .signature-edit-inner {
        min-height: 540px;

        grid-template-columns: 0.9fr 1.1fr;
    }

    .signature-edit-content {
        padding: 50px 45px 50px 0;
    }

    .signature-edit-content h2 {
        font-size: 60px;
    }

    .signature-edit-image {
        min-height: 540px;
    }

    .signature-edit-mark {
        left: 45%;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .signature-edit {
        padding: 70px 0;
    }

    .signature-edit-inner {
        width: min(92%, 600px);

        display: flex;
        flex-direction: column;

        min-height: auto;
    }

    .signature-edit-content {
        padding: 10px 0 55px;
    }

    .signature-edit-content h2 {
        font-size: 58px;
        letter-spacing: -1px;
    }

    .signature-edit-content p {
        max-width: 100%;
    }

    .signature-edit-image {
        min-height: 500px;
    }

    .signature-edit-mark {
        left: 50%;
        top: 50%;

        width: 62px;
        height: 62px;

        border-width: 6px;

        font-size: 25px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .signature-edit-content h2 {
        font-size: 50px;
    }

    .signature-edit-image {
        min-height: 420px;
    }

    .signature-edit-label {
        right: 15px;
        bottom: 15px;
    }

    .signature-edit-number {
        top: 15px;
        left: 15px;
    }

}
/* =====================================================
   VELORA STYLE GUIDE PREVIEW
===================================================== */

.style-preview-section {
    padding: 120px 0;
    background: var(--bg-color);
    overflow: hidden;
}


/* =====================================================
   HEADER
===================================================== */

.style-preview-header {
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: end;
    gap: 80px;
    margin-bottom: 65px;
}

.style-preview-title .section-subtitle {
    display: block;
    margin-bottom: 18px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.style-preview-title h2 {
    margin: 0;

    font-family: var(--font-heading);
    font-size: clamp(65px, 7vw, 105px);

    font-weight: 400;
    line-height: 0.82;

    letter-spacing: -3px;

    color: var(--heading-color);
}

.style-preview-title h2 em {
    color: var(--primary);
    font-style: italic;
    font-weight: 400;
}


.style-preview-intro {
    padding-bottom: 5px;
}

.style-preview-intro p {
    max-width: 390px;

    margin: 0 0 22px;

    color: var(--text-light);

    font-size: 13px;
    line-height: 1.9;
}


.style-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    

    padding-bottom: 8px;

    border-bottom: 1px solid var(--primary);

    color: var(--heading-color);

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition: var(--transition);
}

.style-preview-link i {
    color: var(--primary);
    transition: transform .3s ease;
}

.style-preview-link:hover {
    color: var(--primary);
}

.style-preview-link:hover i {
    transform: translateX(6px);
}


/* =====================================================
   EDITORIAL GRID
===================================================== */

.style-editorial-grid {
    display: grid;

    grid-template-columns:
        1.25fr
        .875fr
        .875fr;

    gap: 25px;

    align-items: start;
}


/* =====================================================
   CARD
===================================================== */

.style-editorial-card {
    min-width: 0;
}

.style-editorial-main {
    margin-top: 45px;
}


/* =====================================================
   IMAGE
===================================================== */

.style-editorial-image {
    position: relative;

    display: block;

    overflow: hidden;

    aspect-ratio: .78;

    background: var(--bg-secondary);
}

.style-editorial-main .style-editorial-image {
    aspect-ratio: .82;
}

.style-editorial-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1s cubic-bezier(.22,1,.36,1);
}

.style-editorial-card:hover
.style-editorial-image img {
    transform: scale(1.055);
}


/* IMAGE OVERLAY */

.style-editorial-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.16),
            transparent 35%,
            rgba(0,0,0,.12)
        );

    pointer-events: none;
}


/* NUMBER */

.style-editorial-number {
    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 3;

    color: var(--white);

    font-family: var(--font-heading);
    font-size: 21px;
}


/* ARROW */

.style-editorial-arrow {
    position: absolute;

    right: 18px;
    bottom: 18px;

    z-index: 4;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);
    color: var(--heading-color);

    font-size: 11px;

    opacity: 0;

    transform: translateY(12px);

    transition:
        opacity .35s ease,
        transform .35s ease,
        background .35s ease,
        color .35s ease;
}

.style-editorial-card:hover
.style-editorial-arrow {
    opacity: 1;
    transform: translateY(0);
}

.style-editorial-arrow:hover {
    background: var(--primary);
    color: var(--white);
}


/* =====================================================
   CONTENT
===================================================== */

.style-editorial-content {
    padding: 20px 3px 0;
}


.style-editorial-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 10px;
}

.style-editorial-meta span {
    color: var(--text-light);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1.5px;
}

.style-editorial-meta span:first-child {
    color: var(--primary);
}


.style-editorial-content h3 {
    margin: 0 0 12px;

    font-family: var(--font-heading);

    font-size: 27px;

    font-weight: 500;

    line-height: 1.05;

    color: var(--heading-color);
}

.style-editorial-main
.style-editorial-content h3 {
    font-size: 34px;
}

.style-editorial-content h3 em {
    font-style: italic;
    font-weight: 400;
}


.style-editorial-content p {
    max-width: 390px;

    margin: 0;

    color: var(--text-light);

    font-size: 15px;

    line-height: 1.8;
}


/* =====================================================
   READ LINK
===================================================== */

.style-read-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 18px;

    padding-bottom: 6px;

    border-bottom: 1px solid var(--border-color);

    color: var(--heading-color);

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 1.3px;

    text-transform: uppercase;

    transition: var(--transition);
}

.style-read-link i {
    color: var(--primary);

    transition: transform .3s ease;
}

.style-read-link:hover {
    color: var(--primary);

    border-color: var(--primary);
}

.style-read-link:hover i {
    transform: translateX(5px);
}


/* =====================================================
   BOTTOM EDITORIAL LINE
===================================================== */

.style-preview-footer {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 65px;

    color: var(--text-light);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 2px;
}

.style-preview-line {
    flex: 1;

    height: 1px;

    background: var(--border-color);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .style-preview-section {
        padding: 50px 0;
    }

    .style-preview-header {
        grid-template-columns: 1fr 300px;

        gap: 45px;

        margin-bottom: 50px;
    }

    .style-preview-title h2 {
        font-size: 75px;
    }

    .style-editorial-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .style-editorial-main {
        grid-column: 1 / -1;

        margin-top: 0;
    }

    .style-editorial-main
    .style-editorial-image {
        aspect-ratio: 1.5;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .style-preview-section {
        padding: 75px 0;
    }

    .style-preview-header {
        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 30px;

        margin-bottom: 45px;
    }

    .style-preview-title h2 {
        font-size: 65px;

        letter-spacing: -2px;
    }

    .style-preview-intro {
        width: 100%;
    }

    .style-preview-intro p {
        max-width: 100%;
    }

    .style-editorial-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .style-editorial-main {
        grid-column: auto;
    }

    .style-editorial-main
    .style-editorial-image {
        aspect-ratio: .85;
    }

    .style-editorial-image {
        aspect-ratio: .85;
    }

    .style-editorial-main
    .style-editorial-content h3,
    .style-editorial-content h3 {
        font-size: 27px;
    }

    .style-preview-footer {
        margin-top: 50px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .style-preview-title h2 {
        font-size: 55px;
    }

    .style-editorial-content {
        padding-top: 16px;
    }

    .style-editorial-content h3 {
        font-size: 25px;
    }

    .style-editorial-main
    .style-editorial-content h3 {
        font-size: 29px;
    }

}
.section-alt {
    padding-top: 40px;
    padding-bottom: 60px;
}
/* =================================================
   SHOP PAGE HERO - EDITORIAL
   Unique styles - does not affect other page heroes
================================================= */

.shop-page-hero {
    position: relative;
    min-height: 560px;
    padding: 55px 0 45px;
    background: var(--bg-secondary);
    overflow: hidden;
}

.shop-page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.shop-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    pointer-events: none;
}

.shop-page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.shop-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    pointer-events: none;
}

.shop-page-hero-inner {
    position: relative;
    z-index: 2;

    width: min(92%, var(--container-width));
    min-height: 460px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shop-page-hero-top,
.shop-page-hero-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.shop-page-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 100px;

    padding: 70px 0;
}

.shop-page-hero-title .section-subtitle {
    display: block;
    margin-bottom: 18px;

    color: var(--primary);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.shop-page-hero-title h1 {
    margin: 0;

    font-family: var(--font-heading);
    font-size: clamp(90px, 12vw, 175px);
    font-weight: 400;
    line-height: 0.72;
    letter-spacing: -6px;

    color: var(--white);
}

.shop-page-hero-title h1 em {
    display: block;

    margin-left: 85px;

    color: var(--white);
    font-style: italic;
    font-weight: 400;
}

.shop-page-hero-description {
    max-width: 390px;
    padding-bottom: 5px;
}

.shop-page-hero-description p {
    margin: 0;

    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    line-height: 2;
}

.shop-page-hero-line {
    display: block;

    width: 55px;
    height: 1px;

    margin: 25px 0 18px;

    background: var(--primary);
}

.shop-page-hero-note {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
}

.shop-page-hero-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.shop-page-hero-scroll {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--primary);
}

.shop-page-hero-scroll i {
    font-size: 10px;
}


/* =================================================
   SHOP PAGE HERO - RESPONSIVE
================================================= */

@media (max-width: 991px) {

    .shop-page-hero {
        min-height: 500px;
        padding: 45px 0 35px;
    }

    .shop-page-hero-inner {
        min-height: 420px;
    }

    .shop-page-hero-content {
        grid-template-columns: 1fr 0.7fr;
        gap: 50px;
        padding: 55px 0;
    }

    .shop-page-hero-title h1 {
        font-size: clamp(80px, 12vw, 130px);
    }

    .shop-page-hero-title h1 em {
        margin-left: 55px;
    }
}


@media (max-width: 767px) {

    .shop-page-hero {
        min-height: auto;
        padding: 35px 0 30px;
    }

    .shop-page-hero-inner {
        min-height: auto;
    }

    .shop-page-hero-top {
        font-size: 8px;
    }

    .shop-page-hero-content {
        display: block;
        padding: 70px 0 65px;
    }

    .shop-page-hero-title h1 {
        font-size: 82px;
        letter-spacing: -4px;
    }

    .shop-page-hero-title h1 em {
        margin-left: 35px;
    }

    .shop-page-hero-description {
        max-width: 100%;
        margin-top: 55px;
    }

    .shop-page-hero-bottom {
        font-size: 8px;
    }

    .shop-page-hero-scroll {
        display: none;
    }
}


@media (max-width: 480px) {

    .shop-page-hero-title h1 {
        font-size: 68px;
    }

    .shop-page-hero-title h1 em {
        margin-left: 20px;
    }

    .shop-page-hero-description {
        margin-top: 45px;
    }

    .shop-page-hero-top,
    .shop-page-hero-bottom {
        letter-spacing: 1.2px;
    }
}
/* =====================================================
   CONTACT LOCATION - SHOP IMAGE + MAP
===================================================== */

.contact-location-visuals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    width: 100%;
}


/* SHOP IMAGE */

.contact-location-image {
    position: relative;
    height: 360px;
    overflow: hidden;
}

.contact-location-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
    padding-bottom: 20px;
}

.contact-location-image:hover img {
    transform: scale(1.04);
}

.location-image-label {
    position: absolute;
    left: 18px;
    bottom: 18px;

    padding: 8px 12px;

    background: var(--white);
    color: var(--heading-color);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
}


/* MAP */

.contact-location-map {
    height: 360px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.contact-location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}


/* MOBILE */

@media (max-width: 767px) {

    .contact-location-visuals {
        grid-template-columns: 1fr;
        gap: 15px;
        padding-bottom: 20px;
    }

    .contact-location-image,
    .contact-location-map {
        height: 320px;
    }

}

/* =========================================================
   VELORA CONTACT PAGE
   CENTER SPLIT CONTACT EXPERIENCE
   Existing navbar / footer / location image / map preserved
========================================================= */

.contact-main {
    position: relative;
    padding: 50px 0 100px;
    background: var(--bg-color);
}

.contact-split {
    position: relative;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 0;
    min-height: 650px;
    overflow: hidden;
    background: var(--heading-color);
    box-shadow: var(--shadow-md);
}

/* LEFT CONTENT */

.contact-split-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 75px clamp(35px, 6vw, 90px);
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            rgba(32, 32, 32, 0.96),
            rgba(60, 45, 36, 0.92)
        ),
        url("../images/contact.jpg") center / cover no-repeat;
}

.contact-split-copy::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -130px;
    top: -130px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.contact-split-copy::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -85px;
    top: -85px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
}

.contact-split-kicker {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 25px;
    color: var(--secondary);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-split-copy h2 {
    position: relative;
    z-index: 2;
    max-width: 570px;
    margin: 0 0 28px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(58px, 6vw, 92px);
    font-weight: 500;
    line-height: 0.86;
    letter-spacing: -2px;
}

.contact-split-copy h2 em {
    display: block;
    color: var(--secondary);
    font-style: italic;
    font-weight: 400;
}

.contact-split-intro {
    position: relative;
    z-index: 2;
    max-width: 450px;
    margin: 0 0 40px;
    color: rgba(255, 255, 255, 0.76);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.9;
    text-align: left;
    text-align: justify;
}

.contact-split-details {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 570px;
}

.contact-split-detail {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-split-detail > span {
    display: block;
    margin-bottom: 17px;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 17px;
}

.contact-split-detail strong {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.contact-split-detail p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
}

.contact-split-social {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 42px;
}

.contact-split-social > span {
    margin-right: 7px;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.contact-split-social a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--white);
    font-size: 11px;
    transition: var(--transition);
}

.contact-split-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}


/* FORM CARD */

.contact-form-card {
    position: relative;
    z-index: 3;
    align-self: center;
    margin: 35px 35px 35px -35px;
    padding: 48px clamp(28px, 4vw, 55px);
    background: var(--card-bg);
    color: var(--text-color);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.20);
}

.contact-form-card-head {
    margin-bottom: 30px;
}

.contact-form-card-head > span {
    display: block;
    margin-bottom: 9px;
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;

}

.contact-form-card-head h3 {
    margin: 0 0 8px;
    color: var(--heading-color);
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 500;
}

.contact-form-card-head p {
    max-width: 430px;
    margin: 0;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.75;
    text-align: left;
}

.contact-form-card .contact-form {
    margin: 0;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form-card .form-group {
    margin-bottom: 18px;
}

.contact-form-card .form-group label {
    margin-bottom: 7px;
    color: var(--heading-color);
    font-size: 13px;
    letter-spacing: 1px;
}

.contact-form-card .form-group input,
.contact-form-card .form-group textarea,
.contact-form-card .form-group select {
    min-height: 46px;
    padding: 11px 13px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    background: var(--card-bg);
    color: var(--text-color);
    font-size: 13px;
}

.contact-form-card .form-group textarea {
    min-height: 105px;
    resize: vertical;
}

.contact-form-card .form-group input::placeholder,
.contact-form-card .form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.75;
}

.contact-form-card .form-group input:focus,
.contact-form-card .form-group textarea:focus,
.contact-form-card .form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(176, 122, 90, 0.08);
}

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 2px 0 22px;
    cursor: pointer;
}

.contact-consent input {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.contact-consent span {
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.55;
}

.contact-submit {
    width: 100%;
    min-height: 48px;
}


/* LOCATION - EXISTING DESIGN PRESERVED */

.contact-location-block {
    margin-top: 90px;
}

.contact-location-visuals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    width: 100%;
}

.contact-location-image {
    position: relative;
    height: 360px;
    overflow: hidden;
}

.contact-location-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.contact-location-image:hover img {
    transform: scale(1.04);
}

.location-image-label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 12px;
    background: var(--white);
    color: var(--heading-color);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.contact-location-map {
    height: 360px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.contact-location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.contact-location-content {
    padding: 45px 0 0;
}

.contact-location-content h3 {
    margin: 8px 0 12px;
    font-size: 32px;
}

.contact-location-content > p {
    max-width: 560px;
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.8;
    text-align: left;
}

.contact-location-details {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 22px;
}

.contact-location-details > div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text-color);
    font-size: 11px;
}

.contact-location-details i {
    color: var(--primary);
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .contact-main {
        padding: 65px 0 50px;
    }

    .contact-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .contact-split-copy {
        padding: 65px 55px;
    }

    .contact-split-copy h2 {
        font-size: clamp(58px, 10vw, 84px);
    }

    .contact-form-card {
        margin: -35px 35px 35px;
    }

    .contact-location-block {
        margin-top: 65px;
    }

}


@media (max-width: 767px) {

    .contact-main {
        padding: 55px 0 65px;
    }

    .contact-split-copy {
        padding: 55px 28px 70px;
    }

    .contact-split-copy h2 {
        font-size: 60px;
        letter-spacing: -1.5px;
    }

    .contact-split-intro {
        font-size: 11px;
        margin-bottom: 35px;
    }

    .contact-split-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-split-detail {
        display: grid;
        grid-template-columns: 30px 1fr;
        gap: 10px;
    }

    .contact-split-detail > span {
        margin: 0;
    }

    .contact-split-detail strong {
        margin-bottom: 5px;
        font-size: 15px;
    }

    .contact-split-social {
        margin-top: 32px;
    }

    .contact-form-card {
        margin: -30px 15px 25px;
        padding: 35px 22px;
    }

    .contact-form-card-head h3 {
        font-size: 32px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-location-block {
        margin-top: 45px;
    }

    .contact-location-visuals {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-location-image,
    .contact-location-map {
        height: 320px;
    }

    .contact-location-content {
        padding-top: 35px;
    }

}


@media (max-width: 480px) {

    .contact-split-copy {
        padding: 48px 22px 60px;
    }

    .contact-split-copy h2 {
        font-size: 52px;
    }

    .contact-form-card {
        margin-left: 10px;
        margin-right: 10px;
    }

    .contact-form-card-head h3 {
        font-size: 29px;
    }

}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    line-height: 1;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 30px;
    letter-spacing: 7px;
    color: var(--heading-color);
}
/* Initial state */
.hero-subtitle,
.hero-content h1,
.hero-content p,
.hero-buttons {
    opacity: 0;
    transform: translateY(40px);
}

/* Animate */
.hero-subtitle {
    animation: revealUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.hero-content h1 {
    animation: revealUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.hero-content p {
    animation: revealUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.hero-buttons {
    animation: revealUp 0.8s ease-out forwards;
    animation-delay: 0.8s;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   VELORA — FINAL HOME POLISH
   Scoped only to the HOME hero + WHY VELORA section.
   Existing styles remain intact.
========================================================= */

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    width: min(100%, 760px);
    max-width: 760px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content .hero-subtitle {
    display: block;
    width: 100%;
    text-align: center;
}

.hero-content h1 {
    width: 100%;
    margin: 14px auto 18px;
    text-align: center;
}

.hero-content p {
    width: min(100%, 560px);
    margin: 0 auto 28px;
    text-align: center;
}

.hero-buttons {
    width: 100%;
    justify-content: center;
    align-items: center;
}

.hero-subtitle,
.hero-content h1,
.hero-content p,
.hero-buttons {
    opacity: 0;
    transform: translateY(28px);
    animation-name: veloraHeroReveal;
    animation-duration: 0.9s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: forwards;
}

.hero-content .hero-subtitle { animation-delay: 0.15s; }
.hero-content h1 { animation-delay: 0.30s; }
.hero-content p { animation-delay: 0.45s; }
.hero-content .hero-buttons { animation-delay: 0.60s; }

@keyframes veloraHeroReveal {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Reduce the large gap immediately before WHY VELORA */
.style-preview-section:has(+ .section-alt .feature-grid) {
    padding-bottom: 45px;
}

.section-alt:has(.feature-grid) {
    padding-top: 45px;
    padding-bottom: 55px;
}

.section-alt:has(.feature-grid) .section-heading {
    margin-bottom: 38px;
    text-align: center;
}

.section-alt:has(.feature-grid) .section-heading p {
    margin-left: auto;
    margin-right: auto;
    
}

/* Equal padding + centered content for every Why Velora card */
.section-alt:has(.feature-grid) .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.section-alt:has(.feature-grid) .feature-card {
    min-height: 245px;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section-alt:has(.feature-grid) .feature-icon {
    flex: 0 0 auto;
    margin: 0 auto 18px;
}

.section-alt:has(.feature-grid) .feature-card h3 {
    margin: 0 0 9px;
    text-align: center;
}

.section-alt:has(.feature-grid) .feature-card p {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    text-align: center;
}

/* Elegant staggered entrance */
.section-alt:has(.feature-grid) .feature-card {
    opacity: 0;
    transform: translateY(26px);
    animation: veloraFeatureReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.section-alt:has(.feature-grid) .feature-card:nth-child(1) { animation-delay: 0.10s; }
.section-alt:has(.feature-grid) .feature-card:nth-child(2) { animation-delay: 0.22s; }
.section-alt:has(.feature-grid) .feature-card:nth-child(3) { animation-delay: 0.34s; }

@keyframes veloraFeatureReveal {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
    .hero-content {
        width: min(100%, 680px);
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-content h1 {
        margin-top: 12px;
        margin-bottom: 16px;
    }

    .hero-content p { margin-bottom: 24px; }

    .style-preview-section:has(+ .section-alt .feature-grid) {
        padding-bottom: 30px;
    }

    .section-alt:has(.feature-grid) {
        padding-top: 35px;
        padding-bottom: 45px;
    }

    .section-alt:has(.feature-grid) .section-heading {
        margin-bottom: 28px;
    }

    .section-alt:has(.feature-grid) .feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-alt:has(.feature-grid) .feature-card {
        min-height: 220px;
        padding: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-subtitle,
    .hero-content h1,
    .hero-content p,
    .hero-buttons,
    .section-alt:has(.feature-grid) .feature-card {
        opacity: 1;
        transform: none;
        animation: none;
    }
}
/* =========================================================
   VELORA HOME 2
   FEATURED CATEGORIES - SCROLL ANIMATION
   ========================================================= */


/* -----------------------------------------
   DEFAULT - LEFT SIDE
   ----------------------------------------- */

.home2-category-card.reveal {
    opacity: 0;
    transform: translateX(-90px);

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}


/* -----------------------------------------
   EVEN CARDS - RIGHT SIDE
   ----------------------------------------- */

.home2-category-card.reveal:nth-child(even) {
    transform: translateX(90px);
}


/* -----------------------------------------
   WHEN SCROLLED INTO VIEW
   Existing script.js adds .visible
   ----------------------------------------- */

.home2-category-card.reveal.visible {
    opacity: 1;
    transform: translateX(0);
}


/* -----------------------------------------
   STAGGER EFFECT
   ----------------------------------------- */

.home2-category-card.reveal:nth-child(1) {
    transition-delay: 0.05s;
}

.home2-category-card.reveal:nth-child(2) {
    transition-delay: 0.15s;
}

.home2-category-card.reveal:nth-child(3) {
    transition-delay: 0.25s;
}

.home2-category-card.reveal:nth-child(4) {
    transition-delay: 0.35s;
}

.home2-category-card.reveal:nth-child(5) {
    transition-delay: 0.45s;
}

.home2-category-card.reveal:nth-child(6) {
    transition-delay: 0.55s;
}

.home2-category-card.reveal:nth-child(7) {
    transition-delay: 0.65s;
}

.home2-category-card.reveal:nth-child(8) {
    transition-delay: 0.75s;
}


/* -----------------------------------------
   MOBILE
   ----------------------------------------- */

@media (max-width: 768px) {

    .home2-category-card.reveal,
    .home2-category-card.reveal:nth-child(even) {
        opacity: 0;
        transform: translateY(60px);
    }

    .home2-category-card.reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}


/* -----------------------------------------
   REDUCED MOTION
   ----------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .home2-category-card.reveal,
    .home2-category-card.reveal:nth-child(even),
    .home2-category-card.reveal.visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* =========================================================
   VELORA HOME 2
   INSTAGRAM / SOCIAL EDIT
   ========================================================= */

.home2-instagram-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}


/* -----------------------------------------
   HEADING
   ----------------------------------------- */

.home2-instagram-heading {
    max-width: 650px;
    margin: 0 auto 50px;
    text-align: center;
}

.home2-instagram-heading .section-subtitle {
    display: block;
    margin-bottom: 10px;
}

.home2-instagram-heading .section-title {
    margin-bottom: 18px;
}

.home2-instagram-heading p {
    max-width: 520px;
    margin: 0 auto 22px;
    color: var(--text-light);
}


/* -----------------------------------------
   INSTAGRAM USERNAME
   ----------------------------------------- */

.home2-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--heading-color);

    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;

    text-decoration: none;

    transition: var(--transition);
}

.home2-instagram-link i {
    font-size: 1rem;
}

.home2-instagram-link:hover {
    color: var(--primary);
}


/* -----------------------------------------
   IMAGE GRID
   ----------------------------------------- */

.home2-instagram-grid {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 14px;
}


/* -----------------------------------------
   IMAGE ITEM
   ----------------------------------------- */

.home2-instagram-item {
    position: relative;

    display: block;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: var(--card-bg);
}


/* -----------------------------------------
   IMAGE
   ----------------------------------------- */

.home2-instagram-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}


/* -----------------------------------------
   OVERLAY
   ----------------------------------------- */

.home2-instagram-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 8px;

    background: rgba(0, 0, 0, 0.55);

    color: #fff;

    opacity: 0;

    transition:
        opacity 0.4s ease;
}

.home2-instagram-overlay i {
    font-size: 1.5rem;
}

.home2-instagram-overlay span {
    font-size: 0.7rem;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* -----------------------------------------
   HOVER
   ----------------------------------------- */

.home2-instagram-item:hover img {
    transform: scale(1.08);
}

.home2-instagram-item:hover .home2-instagram-overlay {
    opacity: 1;
}


/* -----------------------------------------
   BOTTOM BUTTON
   ----------------------------------------- */

.home2-instagram-bottom {
    display: flex;

    justify-content: center;

    margin-top: 45px;
}

.home2-instagram-bottom .btn-outline {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
    background: transparent;
}

.home2-instagram-bottom .btn-outline:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}


/* =========================================================
   SCROLL REVEAL
   Uses existing .reveal / .visible JavaScript
   ========================================================= */

.home2-instagram-item.reveal {
    opacity: 0;

    transform: translateY(60px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}


/* When visible */

.home2-instagram-item.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* Stagger */

.home2-instagram-item.reveal:nth-child(1) {
    transition-delay: 0.05s;
}

.home2-instagram-item.reveal:nth-child(2) {
    transition-delay: 0.15s;
}

.home2-instagram-item.reveal:nth-child(3) {
    transition-delay: 0.25s;
}

.home2-instagram-item.reveal:nth-child(4) {
    transition-delay: 0.35s;
}

.home2-instagram-item.reveal:nth-child(5) {
    transition-delay: 0.45s;
}

.home2-instagram-item.reveal:nth-child(6) {
    transition-delay: 0.55s;
}


/* -----------------------------------------
   TABLET
   ----------------------------------------- */

@media (max-width: 1000px) {

    .home2-instagram-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* -----------------------------------------
   MOBILE
   ----------------------------------------- */

@media (max-width: 600px) {

    .home2-instagram-section {
        padding: 75px 0;
    }

    .home2-instagram-heading {
        margin-bottom: 35px;
    }

    .home2-instagram-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;
    }

    .home2-instagram-bottom {
        margin-top: 35px;
    }

}


/* -----------------------------------------
   REDUCED MOTION
   ----------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .home2-instagram-item.reveal,
    .home2-instagram-item.reveal.visible {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .home2-instagram-item img {
        transition: none;
    }

}
/* =========================================================
   HOME 2 LOOKBOOK - PREMIUM EDITORIAL
========================================================= */

.home2-lookbook-item {
    min-height: 320px;
    background: var(--black);
}

.home2-lookbook-item.large {
    min-height: 660px;
}

.home2-lookbook-overlay {
    padding: 35px;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.05) 75%
        );
}

.home2-lookbook-overlay h3 {
    font-size: 2rem;
    margin-top: 7px;
}

.home2-lookbook-overlay p {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
    letter-spacing: 0.5px;
}

/* Hover */

.home2-lookbook-item:hover .home2-lookbook-overlay h3 {
    transform: translateY(-3px);
}

.home2-lookbook-overlay h3 {
    transition: transform 0.35s ease;
}


/* Mobile */

@media (max-width: 767px) {

    .home2-lookbook-item.large {
        min-height: 450px;
    }

    .home2-lookbook-overlay {
        padding: 25px;
    }

    .home2-lookbook-overlay h3 {
        font-size: 1.7rem;
    }

}
/* HOME 2 - EXPLORE LOOKS BUTTON */

.home2-hero-buttons .btn-outline {
    color: var(--white);;
    border-color: var(--white);
    background: transparent;
}

.home2-hero-buttons .btn-outline:hover {
    color: #ffffff;
    background: var(--primary);
    border-color:var(--primary);
}

/* =========================================================
   VELORA — ABOUT PAGE ONLY
   Scoped CSS — does not disturb other pages
========================================================= */

.about-page {
    overflow: hidden;
}


/* =========================================================
   OUR STORY
========================================================= */

.about-story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.about-story-heading {
    position: sticky;
    top: 120px;
}

.about-story-copy {
    max-width: 650px;
}

.about-story-copy p {
    margin-bottom: 24px;
    line-height: 1.9;
    color: var(--text-light);
    text-align: justify;
}


/* =========================================================
   VELORA EDIT
========================================================= */


    
.about-gender-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 90px;
}

.about-gender-card {
    max-width: 330px;
    margin: 0 auto;
}

.about-gender-card {
    position: relative;
    display: block;
    min-height: 560px;
    overflow: hidden;
    background: var(--black);
}

@media (max-width: 768px) {
    .about-gender-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 20px;
    }

    .about-gender-card {
        max-width: 100%;
    }
}

.about-gender-card img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-gender-card:hover img {
    transform: scale(1.05);
}

.about-gender-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 38px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.78),
        rgba(0,0,0,0.04) 80%
    );
}

.about-gender-overlay span {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-size: 0.65rem;
    letter-spacing: 2px;
}

.about-gender-overlay h3 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
}

.about-gender-overlay p {
    margin-top: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
}


/* =========================================================
   VISION & MISSION
========================================================= */

.about-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-vision-card {
    position: relative;
    padding: 55px 50px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.about-vision-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.07);
}

.about-card-number {
    display: block;
    margin-bottom: 35px;
    color: var(--primary);
    font-size: 0.65rem;
    letter-spacing: 2px;
}

.about-small-title {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 20px;
    letter-spacing: 2px;
}

.about-vision-card h3 {
    max-width: 500px;
    margin-bottom: 22px;
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.2;
}

.about-vision-card p {
    max-width: 600px;
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.85;
    font-size: 15px;
    text-align: justify;
}


/* =========================================================
   PHILOSOPHY
========================================================= */

.about-philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-philosophy-image {
    overflow: hidden;
}

.about-philosophy-image img {
    width: 100%;
    height: 620px;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
    padding-top: 80px;
}

.about-philosophy-image:hover img {
    transform: scale(1.03);
}

.about-philosophy-content {
    max-width: 600px;
}

.about-philosophy-content .section-title {
    margin-bottom: 28px;
}


.about-philosophy-content p {
    
    line-height: 1.9;
    color: var(--text-light);
    text-align: justify;
    
}

.about-values-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 25px;
    margin-top: 20px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.about-values-inline span {
    color: var(--heading-color);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* =========================================================
   VALUES
========================================================= */

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.about-value-card {
    min-height: 240px;
    padding: 32px 25px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.about-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.about-value-card > span {
    display: block;
    margin-bottom: 35px;
    color: var(--primary);
    font-size: 0.65rem;
    letter-spacing: 2px;
}

.about-value-card h3 {
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
}

.about-value-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}


/* =========================================================
   HAPPY CUSTOMER EXPERIENCE
========================================================= */

.about-experience-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 90px;
    align-items: center;
}

.about-experience-content {
    max-width: 650px;
}

.about-experience-content .section-title {
    margin-bottom: 25px;
}

.about-experience-content p {
    margin-bottom: 18px;
    color: var(--text-light);
    line-height: 1.9;
    text-align: justify;
}

.about-experience-points {
    margin-top: 35px;
    border-top: 1px solid var(--border-color);
}

.about-experience-points div {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 17px 0;
    border-bottom: 1px solid var(--border-color);
}

.about-experience-points strong {
    color: var(--primary);
    font-size: 15px;
    letter-spacing: 1.5px;
}

.about-experience-points span {
    color: var(--heading-color);
    font-size: 15px;
    letter-spacing: 0.8px;
}

.about-experience-stats {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--border-color);
}

.about-stat {
    padding: 35px;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
}

.about-stat:last-child {
    border-bottom: 0;
}

.about-stat strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 500;
}

.about-stat span {
    color: var(--text-light);
    font-size: 15px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}


/* =========================================================
   CUSTOMER REVIEWS
========================================================= */

.about-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-review-card {
    padding: 35px 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.about-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.about-stars {
    margin-bottom: 22px;
    color: var(--primary);
    font-size: 0.8rem;
    letter-spacing: 3px;
}

.about-review-card > p {
    min-height: 125px;
    margin-bottom: 28px;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    line-height: 1.6;
    font-style: italic;
}

.about-review-author {
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
}

.about-review-author strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.75rem;
}

.about-review-author span {
    color: var(--text-light);
    font-size: 0.62rem;
    letter-spacing: 1px;
}


/* =========================================================
   MANIFESTO
========================================================= */

.about-manifesto {
    text-align: center;
}

.about-manifesto-inner {
    max-width: 900px;
    margin: 0 auto;
}

.about-manifesto blockquote {
    margin: 30px auto;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    font-weight: 500;
}

.about-manifesto-brand {
    color: var(--white);
    font-size: 15px;
    letter-spacing: 3px;
}


/* =========================================================
   CTA
========================================================= */

.about-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-cta-inner .section-title {
    margin-bottom: 20px;
}

.about-cta-inner p {
    margin-bottom: 28px;
    color: var(--text-light);
    text-align: justify;
    padding-left: 180px;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.about-page .reveal {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22,0.61,0.36,1);
}

.about-page .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-gender-card:nth-child(2).reveal,
.about-vision-card:nth-child(2).reveal,
.about-review-card:nth-child(2).reveal {
    transition-delay: 0.12s;
}

.about-value-card:nth-child(2).reveal {
    transition-delay: 0.1s;
}

.about-value-card:nth-child(3).reveal {
    transition-delay: 0.2s;
}

.about-value-card:nth-child(4).reveal {
    transition-delay: 0.3s;
}

.about-review-card:nth-child(3).reveal {
    transition-delay: 0.24s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .about-story-grid,
    .about-philosophy-grid,
    .about-experience-grid {
        gap: 50px;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-gender-card,
    .about-gender-card img {
        min-height: 480px;
    }

    .about-philosophy-image img {
        height: 520px;
    }

    .about-review-card > p {
        min-height: 150px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .about-story-grid,
    .about-philosophy-grid,
    .about-experience-grid,
    .about-gender-grid,
    .about-vision-grid,
    .about-reviews-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-story-heading {
        position: static;
    }

    .about-gender-card,
    .about-gender-card img {
        min-height: 430px;
    }

    .about-gender-overlay {
        padding: 25px;
    }

    .about-gender-overlay h3 {
        font-size: 1.7rem;
    }

    .about-vision-card {
        padding: 40px 30px;
    }

    .about-vision-card h3 {
        font-size: 1.8rem;
    }

    .about-philosophy-image img {
        height: 450px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-value-card {
        min-height: auto;
    }

    .about-experience-stats {
        margin-top: 10px;
    }

    .about-review-card > p {
        min-height: auto;
    }

    .about-manifesto blockquote {
        font-size: 2rem;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .about-gender-card,
    .about-gender-card img {
        min-height: 360px;
    }

    .about-philosophy-image img {
        height: 380px;
    }

    .about-values-inline {
        flex-direction: column;
        gap: 12px;
    }

    .about-vision-card {
        padding: 32px 24px;
    }

    .about-stat {
        padding: 28px 24px;
    }

    .about-review-card {
        padding: 30px 24px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-page .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .about-gender-card img,
    .about-philosophy-image img {
        transition: none;
    }
}
/* =========================================================
   VISION & MISSION - LEFT / RIGHT REVEAL
========================================================= */

.about-vision-card {
    opacity: 0;
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Vision - LEFT to RIGHT */
.about-vision-card:first-child {
    transform: translateX(-100px);
}

/* Mission - RIGHT to LEFT */
.about-vision-card:last-child {
    transform: translateX(100px);
}

/* When visible */
.about-vision-card.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slight delay for Mission */
.about-vision-card:last-child {
    transition-delay: 0.15s;
}


/* Mobile */
@media (max-width: 767px) {
    .about-vision-card:first-child,
    .about-vision-card:last-child {
        transform: translateY(60px);
    }

    .about-vision-card.visible {
        transform: translateY(0);
    }
}


/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .about-vision-card,
    .about-vision-card:first-child,
    .about-vision-card:last-child {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* =========================================================
   WHAT WE BELIEVE
   UNIQUE SHAPED CARDS + NEW ANIMATION
   ABOUT PAGE ONLY
========================================================= */

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-value-card {
    position: relative;
    min-height: 270px;
    padding: 35px 28px;
    overflow: hidden;

    background: var(--card-bg);
    border: 1px solid var(--border-color);

    opacity: 0;

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


/* =========================
   DIFFERENT CARD SHAPES
========================= */

.about-value-card:nth-child(1) {
    border-radius: 0 55px 0 55px;
    transform: translateX(-100px) rotate(-3deg);
}

.about-value-card:nth-child(2) {
    border-radius: 55px 0 55px 0;
    transform: translateY(80px) rotate(3deg);
}

.about-value-card:nth-child(3) {
    border-radius: 55px 0 55px 0;
    transform: translateY(80px) rotate(-3deg);
}

.about-value-card:nth-child(4) {
    border-radius: 0 55px 0 55px;
    transform: translateX(100px) rotate(3deg);
}


/* =========================
   DECORATIVE CIRCLE
========================= */

.about-value-card::before {
    content: "";
    position: absolute;

    width: 90px;
    height: 90px;

    top: -42px;
    right: -42px;

    border: 1px solid var(--primary);
    border-radius: 50%;

    opacity: 0.3;

    transition:
        transform 0.5s ease,
        opacity 0.5s ease;
}


/* =========================
   CARD NUMBER
========================= */

.about-value-card > span {
    position: relative;
    z-index: 2;

    display: block;
    margin-bottom: 38px;

    color: var(--primary);

    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;

    transition: transform 0.4s ease;
}


/* =========================
   TITLE
========================= */

.about-value-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 14px;

    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;

    transition:
        transform 0.4s ease,
        letter-spacing 0.4s ease;
}


/* =========================
   DESCRIPTION
========================= */

.about-value-card p {
    position: relative;
    z-index: 2;

    max-width: 250px;

    color: var(--text-light);

    font-size: 15px;
    line-height: 1.85;
}


/* =========================
   SCROLL ANIMATION
========================= */

.about-value-card.visible {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0);
}


/* Stagger animation */

.about-value-card:nth-child(1) {
    transition-delay: 0.05s;
}

.about-value-card:nth-child(2) {
    transition-delay: 0.18s;
}

.about-value-card:nth-child(3) {
    transition-delay: 0.31s;
}

.about-value-card:nth-child(4) {
    transition-delay: 0.44s;
}


/* =========================
   HOVER EFFECT
========================= */

.about-value-card:hover {
    transform: translateY(-10px) rotate(0deg) !important;

    border-color: var(--primary);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.09);
}

.about-value-card:hover::before {
    transform: scale(1.5);
    opacity: 0.7;
}

.about-value-card:hover h3 {
    transform: translateX(6px);
    letter-spacing: 0.5px;
}

.about-value-card:hover > span {
    transform: translateX(5px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-value-card {
        min-height: 250px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-value-card,
    .about-value-card:nth-child(1),
    .about-value-card:nth-child(2),
    .about-value-card:nth-child(3),
    .about-value-card:nth-child(4) {
        min-height: 240px;

        transform: translateY(60px);
    }

    .about-value-card.visible {
        transform: translateY(0);
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .about-value-card {
        padding: 30px 24px;
        min-height: 220px;
    }

    .about-value-card h3 {
        font-size: 1.6rem;
    }

}


/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    .about-value-card,
    .about-value-card:nth-child(1),
    .about-value-card:nth-child(2),
    .about-value-card:nth-child(3),
    .about-value-card:nth-child(4) {
        opacity: 1;
        transform: none;
        transition: none;
    }

}
/* =========================================================
   VELORA CUSTOMER TESTIMONIAL
   PREMIUM CIRCLE IMAGE + ARROWS + SLIDER
   ABOUT PAGE ONLY
========================================================= */

.about-testimonial {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    max-width: 1000px;
    margin: 0 auto;
}


/* =========================
   SLIDER AREA
========================= */

.about-testimonial-track {
    position: relative;

    width: 100%;
    max-width: 720px;

    min-height: 430px;

    overflow: hidden;
}


/* =========================
   EACH REVIEW
========================= */

.about-testimonial-slide {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding: 15px 70px;

    text-align: center;

    opacity: 0;
    visibility: hidden;

    transform: translateX(50px);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease,
        visibility 0.6s ease;
}


/* ACTIVE REVIEW */

.about-testimonial-slide.active {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}


/* =========================
   CIRCLE CUSTOMER IMAGE
========================= */

.testimonial-avatar {
    position: relative;

    width: 105px;
    height: 105px;

    margin-bottom: 25px;

    padding: 5px;

    border: 1px solid var(--primary);

    border-radius: 50%;

    background: var(--card-bg);
}


/* Outer decorative circle */

.testimonial-avatar::before {
    content: "";

    position: absolute;

    inset: -7px;

    border: 1px solid var(--border-color);

    border-radius: 50%;

    transition: transform 0.5s ease;
}


/* Image */

.testimonial-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}


/* Active image animation */

.about-testimonial-slide.active
.testimonial-avatar::before {
    transform: rotate(45deg);
}


/* =========================
   STARS
========================= */

.about-testimonial-slide .about-stars {
    margin-bottom: 22px;

    color: var(--primary);

    font-size: 0.85rem;

    letter-spacing: 4px;
}


/* =========================
   REVIEW TEXT
========================= */

.about-testimonial-slide .testimonial-text {
    max-width: 600px;

    margin: 0 auto 28px;

    color: var(--text-light);

    font-family: var(--font-heading);

    font-size: 1.35rem;

    line-height: 1.8;
}


/* =========================
   AUTHOR
========================= */

.about-testimonial-slide .about-review-author {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 5px;
}


.about-testimonial-slide
.about-review-author strong {
    color: var(--heading-color);

    font-size: 0.78rem;

    letter-spacing: 1px;
}


.about-testimonial-slide
.about-review-author span {
    color: var(--primary);

    font-size: 0.62rem;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================
   ARROWS
========================= */

.testimonial-arrow {
    position: absolute;

    top: 50%;
    z-index: 5;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border-color);

    background: var(--card-bg);

    color: var(--heading-color);

    font-size: 0.75rem;

    transform: translateY(-50%);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


/* LEFT */

.testimonial-prev {
    left: 0;
}


/* RIGHT */

.testimonial-next {
    right: 0;
}


/* Arrow hover */

.testimonial-arrow:hover {
    background: var(--primary);

    border-color: var(--primary);

    color: var(--white);

    transform:
        translateY(-50%)
        scale(1.08);
}


/* =========================
   DOTS
========================= */

.testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 10px;
}


.testimonial-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: var(--border-color);

    transition:
        width 0.3s ease,
        background 0.3s ease;
}


.testimonial-dot.active {
    width: 24px;

    border-radius: 10px;

    background: var(--primary);
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .about-testimonial-track {
        max-width: 650px;
    }

    .about-testimonial-slide {
        padding-left: 60px;
        padding-right: 60px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .about-testimonial-track {
        min-height: 500px;
    }

    .about-testimonial-slide {
        padding: 10px 45px;
    }

    .testimonial-avatar {
        width: 90px;
        height: 90px;

        margin-bottom: 22px;
    }

    .about-testimonial-slide
    .testimonial-text {
        font-size: 1.1rem;
        line-height: 1.75;
    }

    .testimonial-arrow {
        width: 40px;
        height: 40px;
    }

    .testimonial-prev {
        left: 0;
    }

    .testimonial-next {
        right: 0;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .about-testimonial-track {
        min-height: 520px;
    }

    .about-testimonial-slide {
        padding: 10px 40px;
    }

    .about-testimonial-slide
    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.65rem;
    }

}
/* =========================================================
   OUR STORY BANNER
========================================================= */

.about-story-banner {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: var(--black);
}

.about-story-banner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform 1.2s ease;
}

.about-story-banner:hover img {
    transform: scale(1.06);
}

.about-story-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.20),
            rgba(0, 0, 0, 0.60)
        );
}

.about-story-banner-content {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 30px;
    text-align: center;
    color: var(--white);
}

.about-story-banner-content span {
    margin-bottom: 15px;

    color:white;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.about-story-banner-content h1 {
    margin: 0 0 18px;

    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 500;
    line-height: 0.95;
}

.about-story-banner-content p {
    max-width: 520px;
    margin: 0;

    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.5px;
}


/* =========================================================
   BANNER REVEAL
========================================================= */

.about-story-banner-content span,
.about-story-banner-content h1,
.about-story-banner-content p {
    opacity: 0;
    transform: translateY(25px);
    animation: storyBannerReveal 0.9s ease forwards;
}

.about-story-banner-content h1 {
    animation-delay: 0.15s;
}

.about-story-banner-content p {
    animation-delay: 0.3s;
    text-align: center;
}

@keyframes storyBannerReveal {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .about-story-banner {
        height: 460px;
    }

}


@media (max-width: 767px) {

    .about-story-banner {
        height: 400px;
    }

    .about-story-banner-content {
        padding: 25px;
    }

    .about-story-banner-content span {
        font-size: 0.6rem;
        letter-spacing: 3px;
    }

    .about-story-banner-content h1 {
        font-size: 3.5rem;
    }

    .about-story-banner-content p {
        max-width: 340px;
        font-size: 0.7rem;
    }

}


@media (max-width: 480px) {

    .about-story-banner {
        height: 350px;
    }

    .about-story-banner-content h1 {
        font-size: 3rem;
    }

}
/* =====================================================
   VELORA LOGIN PAGE ONLY
===================================================== */

body.login-page {
    min-height: 100vh;
    background: #171513;
    color: #333;
}

.login-main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;

    background:
        radial-gradient(
            circle at top center,
            #f1e9e1 0%,
            #e8ded3 45%,
            #d8c9bb 100%
        );
}

/* VELORA LOGO */

.login-brand {
    margin-bottom: 22px;
    text-align: center;
}

.login-brand a {
    color: black;
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 7px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-brand a:hover {
    color: #b07a5a;
}

/* LOGIN CARD */

.login-page .auth-wrapper {
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-page .auth-card {
    width: 100%;
    max-width: 520px;
    padding: 50px;
    background: #faf8f5;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 25px 70px rgba(0,0,0,0.45);
}

/* HEADER */

.login-page .auth-header {
    text-align: center;
    margin-bottom: 35px;
}

.login-page .auth-header h1 {
    color: #202020;
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    margin: 8px 0 10px;
}

.login-page .auth-header p {
    color: #777;
    font-size: 13px;
}

/* INPUTS */

.login-page .form-group label {
    color: #202020;
}

.login-page .form-group input {
    background: #ffffff;
    color: #333;
    border: 1px solid #ded8d1;
}

.login-page .form-group input:focus {
    border-color: #b07a5a;
    box-shadow: 0 0 0 2px rgba(176,122,90,0.08);
}

.login-page .input-icon i {
    color: #8b8179;
}

/* BUTTON */

.login-page .auth-submit {
    background: #b07a5a;
    border-color: #b07a5a;
    color: #ffffff;
}

.login-page .auth-submit:hover {
    background: #8d5d43;
    border-color: #8d5d43;
    transform: translateY(-2px);
}

/* LINKS */

.login-page .forgot-link,
.login-page .auth-switch a {
    color: #b07a5a;
}

.login-page .forgot-link:hover,
.login-page .auth-switch a:hover {
    color: #8d5d43;
}

/* MOBILE */

@media (max-width: 767px) {

    .login-main {
        padding: 35px 18px;
    }

    .login-brand a {
        font-size: 32px;
        letter-spacing: 5px;
    }

    .login-page .auth-card {
        padding: 35px 22px;
    }

    .login-page .auth-header h1 {
        font-size: 42px;
    }

}
/* =====================================================
   LOGIN PAGE CONTROLS
===================================================== */

.login-page .login-controls {
    position: fixed;
    top: 22px;
    right: 25px;
    z-index: 9999;
    display: flex;
    gap: 10px;
}

.login-page .login-control-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.08);
    color: black;
    border: 1px solid rgba(255, 255, 255, 0.25);

    cursor: pointer;
    transition: all 0.3s ease;
}

.login-page .login-control-btn:hover {
    background: #b07a5a;
    border-color: #b07a5a;
    transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 767px) {

    .login-page .login-controls {
        top: 15px;
        right: 15px;
    }

    .login-page .login-control-btn {
        width: 38px;
        height: 38px;
    }

}
/* =========================================================
   VELORA LOGIN PAGE
   LOGIN PAGE ONLY
========================================================= */

body.login-page {
    min-height: 100vh;
    background: #e8ded3;
}


/* =========================================================
   LOGIN MAIN BACKGROUND
========================================================= */

.login-page .login-main {

    min-height: 100vh;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 70px 20px;

    background:
        radial-gradient(
            circle at top center,
            #f3ece5 0%,
            #e8ded3 48%,
            #d8c9bb 100%
        );

    transition:
        background 0.4s ease,
        color 0.4s ease;

}


/* =========================================================
   VELORA LOGO
========================================================= */

.login-page .login-brand {

    margin-bottom: 22px;

    text-align: center;

}


.login-page .login-brand a {

    color: #2b211c;

    font-family: var(--font-heading);

    font-size: 38px;

    font-weight: 600;

    letter-spacing: 7px;

    text-decoration: none;

    transition: all 0.3s ease;

}


.login-page .login-brand a:hover {

    color: var(--primary);

}


/* =========================================================
   LOGIN CARD
========================================================= */

.login-page .auth-wrapper {

    width: 100%;

    min-height: auto;

    display: flex;

    align-items: center;

    justify-content: center;

}


.login-page .auth-card {

    width: 100%;

    max-width: 520px;

    padding: 50px;

    background: #faf8f5;

    border: 1px solid #e1d9d1;

    box-shadow:
        0 20px 55px rgba(65, 48, 38, 0.18);

    transition:
        background 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;

}


/* =========================================================
   LOGIN HEADER
========================================================= */

.login-page .auth-header {

    text-align: center;

    margin-bottom: 35px;

}


.login-page .auth-header h1 {

    margin: 8px 0 10px;

    font-family: var(--font-heading);

    font-size: 52px;

    font-weight: 500;

    color: #2b211c;

}


.login-page .auth-header p {

    color: #77706a;

    font-size: 13px;

}


/* =========================================================
   FORM LABELS
========================================================= */

.login-page .form-group label {

    color: #2b211c;

}


/* =========================================================
   INPUTS
========================================================= */

.login-page .input-icon input {

    background: #ffffff;

    color: #2b211c;

    border: 1px solid #ded5cc;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;

}


.login-page .input-icon input:focus {

    border-color: var(--primary);

    outline: none;

    box-shadow:
        0 0 0 2px rgba(176, 122, 90, 0.08);

}


.login-page .input-icon input::placeholder {

    color: #a09891;

}


.login-page .input-icon i {

    color: #8d8177;

}


/* =========================================================
   REMEMBER / FORGOT
========================================================= */

.login-page .auth-options {

    color: #6f6964;

}


.login-page .forgot-link {

    color: var(--primary);

}


.login-page .forgot-link:hover {

    color: var(--primary-dark);

}


/* =========================================================
   LOGIN BUTTON
========================================================= */

.login-page .auth-submit {

    width: 100%;

    background: var(--primary);

    color: #ffffff;

    border-color: var(--primary);

}


.login-page .auth-submit:hover {

    background: var(--primary-dark);

    border-color: var(--primary-dark);

    transform: translateY(-2px);

}


/* =========================================================
   REGISTER
========================================================= */

.login-page .auth-switch {

    color: #77706a;

}


.login-page .auth-switch a {

    color: var(--primary);

}


.login-page .auth-switch a:hover {

    color: var(--primary-dark);

}


/* =========================================================
   LOGIN CONTROLS
   DARK / LIGHT + RTL
========================================================= */

.login-page .login-controls {

    position: fixed;

    top: 22px;

    right: 25px;

    z-index: 9999;

    display: flex;

    align-items: center;

    gap: 10px;

}


.login-page .login-control-btn {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(43, 33, 28, 0.25);

    background: rgba(255, 255, 255, 0.45);

    color: #2b211c;

    backdrop-filter: blur(8px);

    transition: all 0.3s ease;

}


.login-page .login-control-btn:hover {

    background: var(--primary);

    border-color: var(--primary);

    color: #ffffff;

    transform: translateY(-2px);

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .login-page .login-main {

        padding: 55px 18px 35px;

    }


    .login-page .login-brand {

        margin-bottom: 18px;

    }


    .login-page .login-brand a {

        font-size: 32px;

        letter-spacing: 5px;

    }


    .login-page .auth-card {

        max-width: 100%;

        padding: 35px 22px;

    }


    .login-page .auth-header h1 {

        font-size: 42px;

    }


    .login-page .login-controls {

        top: 15px;

        right: 15px;

    }


    .login-page .login-control-btn {

        width: 38px;

        height: 38px;

    }

}
/* =========================================================
   VELORA REGISTER PAGE ONLY
========================================================= */

body.register-page {
    min-height: 100vh;
    background: #e8ded3;
}


/* =========================================================
   REGISTER MAIN
========================================================= */

.register-page .register-main {

    min-height: 100vh;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 70px 20px;

    background:
        radial-gradient(
            circle at top center,
            #f3ece5 0%,
            #e8ded3 48%,
            #d8c9bb 100%
        );

    transition: background 0.4s ease;

}


/* =========================================================
   VELORA LOGO
========================================================= */

.register-page .register-brand {

    margin-bottom: 22px;

    text-align: center;

}


.register-page .register-brand a {

    color: #2b211c;

    font-family: var(--font-heading);

    font-size: 38px;

    font-weight: 600;

    letter-spacing: 7px;

    text-decoration: none;

    transition: all 0.3s ease;
    padding-left: 10px;
    

}


.register-page .register-brand a:hover {

    color: var(--primary);

}


/* =========================================================
   REGISTER WRAPPER
========================================================= */

.register-page .auth-wrapper {

    width: 100%;

    min-height: auto;

    padding: 0;

}


/* =========================================================
   REGISTER CARD
========================================================= */

.register-page .register-card {

    width: 100%;

    max-width: 560px;

    padding: 48px 50px;

    background: #faf8f5;

    border: 1px solid #e1d9d1;

    box-shadow:
        0 20px 55px rgba(65, 48, 38, 0.18);

    transition:
        background 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;

}


/* =========================================================
   REGISTER INPUTS
========================================================= */

.register-page .input-wrapper {

    position: relative;

}


.register-page .input-wrapper i {

    position: absolute;

    left: 16px;

    top: 50%;

    transform: translateY(-50%);

    color: #8d8177;

    pointer-events: none;

}


.register-page .input-wrapper input {

    width: 100%;

    padding-left: 46px;

    background: #ffffff;

    color: #2b211c;

    border: 1px solid #ded5cc;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;

}


.register-page .input-wrapper input:focus {

    border-color: var(--primary);

    outline: none;

    box-shadow:
        0 0 0 2px rgba(176, 122, 90, 0.08);

}


.register-page .input-wrapper input::placeholder {

    color: #a09891;

}


/* =========================================================
   PASSWORD HINT
========================================================= */

.register-page .form-hint {

    display: block;

    margin-top: 7px;

    color: #8b827b;

    font-size: 11px;

}


/* =========================================================
   TERMS CHECKBOX
========================================================= */

.register-page .auth-checkbox {

    font-size: 12px;

    color: #6f6964;

}


.register-page .auth-checkbox label {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    cursor: pointer;

}


.register-page .auth-checkbox input {

    width: auto;

    margin-top: 3px;

}


.register-page .auth-checkbox .text-link {

    color: var(--primary);

}


/* =========================================================
   REGISTER FOOTER
========================================================= */

.register-page .auth-footer {

    text-align: center;

    padding-top: 22px;

    color: #77706a;

    font-size: 13px;

}


.register-page .auth-footer .text-link {

    color: var(--primary);

    font-weight: 600;

}


.register-page .auth-footer .text-link:hover {

    color: var(--primary-dark);

}


/* =========================================================
   REGISTER CONTROLS
========================================================= */

.register-page .register-controls {

    position: fixed;

    top: 22px;

    right: 25px;

    z-index: 9999;

    display: flex;

    align-items: center;

    gap: 10px;

}


.register-page .register-control-btn {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(43, 33, 28, 0.25);

    background: rgba(255, 255, 255, 0.45);

    color: #2b211c;

    backdrop-filter: blur(8px);

    cursor: pointer;

    transition: all 0.3s ease;

}


.register-page .register-control-btn:hover {

    background: var(--primary);

    border-color: var(--primary);

    color: #ffffff;

    transform: translateY(-2px);

}


/* =========================================================
   MOBILE REGISTER
========================================================= */

@media (max-width: 767px) {

    .register-page .register-main {

        padding: 55px 18px 35px;

    }


    .register-page .register-brand {

        margin-bottom: 18px;

    }


    .register-page .register-brand a {

        font-size: 32px;

        letter-spacing: 5px;

    }


    .register-page .register-card {

        max-width: 100%;

        padding: 35px 22px;

    }


    .register-page .auth-header h1 {

        font-size: 40px;

    }


    .register-page .register-controls {

        top: 15px;

        right: 15px;

    }


    .register-page .register-control-btn {

        width: 38px;

        height: 38px;

    }

}
/* REGISTER PAGE ONLY */

body.register-page {
    background: #e8ded3;
}

.register-page .auth-section {
    min-height: 100vh;
    padding: 120px 20px 70px;
    background:
        radial-gradient(
            circle at top center,
            #f3ece5 0%,
            #e8ded3 55%,
            #d8c9bb 100%
        );
}

.register-page .auth-card {
    background: #faf8f5;
    border: 1px solid #e1d9d1;
    box-shadow: 0 20px 55px rgba(65,48,38,.18);
}

.register-page .nav-actions {
    position: fixed;
    top: 20px;
    right: 25px;
    z-index: 9999;
}

.register-page .nav-action-btn {
    color: #2b211c;
    background: rgba(255,255,255,.45);
    border: 1px solid rgba(43,33,28,.2);
}

/* MOBILE */

@media (max-width: 767px) {

    .register-page .auth-section {
        padding: 90px 15px 40px;
    }

    .register-page .nav-actions {
        top: 15px;
        right: 15px;
    }

}

/* =========================================================
   VELORA — PREMIUM SHOP SECTIONS
   The Labels We Love | Why Velora
========================================================= */


/* =========================================================
   THE LABELS WE LOVE
========================================================= */

.velora-labels-section {
    position: relative;
    padding: 120px 0 110px;
    background: var(--bg-color);
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}


.velora-labels-top {
    width: min(90%, var(--container-width));
    margin: 0 auto 75px;
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    align-items: end;
    gap: 40px;
}


.velora-labels-kicker {
    align-self: start;
    padding-top: 8px;

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
}


.velora-labels-top h2 {
    margin: 0;

    font-family: var(--font-heading);
    font-size: clamp(54px, 6vw, 92px);
    font-weight: 500;
    line-height: .82;
    letter-spacing: -2px;
    color: var(--heading-color);
}


.velora-labels-top h2 em {
    font-style: italic;
    color: var(--primary);
}


.velora-labels-top p {
    max-width: 310px;
    margin-left: auto;

    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.9;
    color: var(--text-light);
}


/* =========================================================
   MARQUEE
========================================================= */

.velora-labels-marquee {
    width: 100%;
    padding: 28px 0;

    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);

    overflow: hidden;
}


.velora-labels-track {
    display: flex;
    align-items: center;
    gap: 38px;
    width: max-content;

    animation: veloraLabelScroll 24s linear infinite;
}


.velora-labels-track span {
    font-family: var(--font-heading);
    font-size: clamp(30px, 3.5vw, 52px);
    font-weight: 500;
    letter-spacing: 1px;
    white-space: nowrap;

    color: var(--heading-color);
}


.velora-labels-track i {
    font-size: 15px;
    font-style: normal;
    color: var(--primary);
}


@keyframes veloraLabelScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   LABEL CARDS
========================================================= */

.velora-labels-grid {
    width: min(90%, var(--container-width));
    margin: 70px auto 0;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}


.velora-label-card {
    min-height: 300px;
    padding: 28px 25px 25px;

    display: flex;
    flex-direction: column;

    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);

    transition: var(--transition);
}


.velora-label-card > span {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--primary);
}


.velora-label-card > div {
    margin-top: auto;
}


.velora-label-card h3 {
    margin-bottom: 12px;

    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 500;
    color: var(--heading-color);
}


.velora-label-card p {
    max-width: 230px;

    font-family: var(--font-body);
    font-size: 11px;
    line-height: 1.8;
    color: var(--text-light);
}


.velora-label-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;
    margin-top: 28px;

    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: var(--heading-color);
}


.velora-label-card a i {
    font-size: 10px;
    transition: var(--transition);
}


.velora-label-card:hover {
    background: var(--heading-color);
    transform: translateY(-6px);
}


.velora-label-card:hover > span,
.velora-label-card:hover h3,
.velora-label-card:hover p,
.velora-label-card:hover a {
    color: var(--white);
}


.velora-label-card:hover > span {
    color: var(--secondary);
}


.velora-label-card:hover a i {
    transform: translateX(5px);
}


/* =========================================================
   WHY VELORA
========================================================= */

.velora-experience-section {
    padding: 125px 0;

    background: var(--bg-secondary);
    overflow: hidden;
}


.velora-experience-inner {
    width: min(90%, var(--container-width));
    margin: 0 auto;

    display: grid;
    grid-template-columns: .85fr 1.5fr;
    gap: 100px;
}


.velora-experience-heading {
    position: sticky;
    top: 120px;
    height: fit-content;
}


.velora-experience-kicker {
    display: block;
    margin-bottom: 28px;

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
}


.velora-experience-heading h2 {
    margin-bottom: 30px;

    font-family: var(--font-heading);
    font-size: clamp(58px, 6vw, 90px);
    font-weight: 500;
    line-height: .82;
    letter-spacing: -2px;
    color: var(--heading-color);
}


.velora-experience-heading h2 em {
    font-style: italic;
    color: var(--primary);
}


.velora-experience-heading p {
    max-width: 340px;

    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.9;
    color: var(--text-light);
}


/* =========================================================
   EXPERIENCE ITEMS
========================================================= */

.velora-experience-list {
    border-top: 1px solid var(--border-color);
}


.velora-experience-item {
    min-height: 170px;
    padding: 32px 0;

    display: grid;
    grid-template-columns: 70px 1fr 40px;
    align-items: start;
    gap: 25px;

    border-bottom: 1px solid var(--border-color);

    transition: var(--transition);
}


.velora-experience-number {
    padding-top: 5px;

    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--primary);
}


.velora-experience-content h3 {
    margin-bottom: 12px;

    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 500;
    color: var(--heading-color);

    transition: var(--transition);
}


.velora-experience-content p {
    max-width: 500px;

    font-family: var(--font-body);
    font-size: 11px;
    line-height: 1.85;
    color: var(--text-light);
}


.velora-experience-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border-color);
    border-radius: 50%;

    font-size: 9px;
    color: var(--text-light);

    transition: var(--transition);
}


.velora-experience-item:hover {
    padding-left: 18px;
}


.velora-experience-item:hover .velora-experience-content h3 {
    color: var(--primary);
}


.velora-experience-item:hover .velora-experience-icon {
    background: var(--heading-color);
    border-color: var(--heading-color);
    color: var(--white);
    transform: rotate(45deg);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .velora-labels-top {
        grid-template-columns: 1fr 1fr;
    }

    .velora-labels-top p {
        margin-left: 0;
    }

    .velora-labels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .velora-experience-inner {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .velora-experience-heading {
        position: static;
    }

}


@media (max-width: 767px) {

    .velora-labels-section {
        padding: 80px 0;
    }

    .velora-labels-top {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }

    .velora-labels-top h2 {
        font-size: 62px;
    }

    .velora-labels-top p {
        max-width: 400px;
    }

    .velora-labels-grid {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .velora-label-card {
        min-height: 260px;
    }

    .velora-experience-section {
        padding: 85px 0;
    }

    .velora-experience-heading h2 {
        font-size: 65px;
    }

    .velora-experience-item {
        grid-template-columns: 45px 1fr;
        gap: 15px;
    }

    .velora-experience-icon {
        display: none;
    }

}


@media (max-width: 480px) {

    .velora-labels-top h2,
    .velora-experience-heading h2 {
        font-size: 52px;
    }

    .velora-labels-track {
        gap: 25px;
    }

    .velora-labels-track span {
        font-size: 32px;
    }

    .velora-experience-content h3 {
        font-size: 30px;
    }

}
/* =========================================================
   LABELS / EDIT SECTION - COMPACT LAYOUT
========================================================= */

.shop-labels-section {
    padding: 70px 0 0;
}

.shop-labels-header {
    width: min(92%, var(--container-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 150px 1fr 300px;
    align-items: center;
    gap: 40px;
    min-height: 250px;
}

.shop-labels-header .section-number {
    align-self: flex-start;
    padding-top: 12px;
}

.shop-labels-header h2 {
    margin: 0;
    font-size: clamp(3.5rem, 6vw, 5.8rem);
    line-height: .88;
    letter-spacing: -2px;
}

.shop-labels-header p {
    margin: 0;
    max-width: 300px;
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   LABEL MARQUEE
========================================================= */

.shop-labels-marquee {
    margin-top: 45px;
    padding: 28px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.shop-labels-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 45px;
}

.shop-labels-track span {
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    line-height: 1;
}


/* =========================================================
   LABEL CARDS
========================================================= */

.shop-labels-grid {
    width: min(92%, var(--container-width));
    margin: 70px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.shop-label-card {
    min-height: 210px;
    padding: 30px 25px;
    border: 1px solid var(--border-color);
    border-right: none;
}

.shop-label-card:last-child {
    border-right: 1px solid var(--border-color);
}

.shop-label-card .label-number {
    display: block;
    margin-bottom: 55px;
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--primary);
}

.shop-label-card h3 {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
}

.shop-label-card p {
    margin: 0;
    font-size: 11px;
    line-height: 1.7;
    color: var(--text-light);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .shop-labels-header {
        grid-template-columns: 100px 1fr;
    }

    .shop-labels-header p {
        grid-column: 2;
        margin-top: -20px;
    }

    .shop-labels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-label-card:nth-child(2) {
        border-right: 1px solid var(--border-color);
    }

    .shop-label-card:nth-child(3),
    .shop-label-card:nth-child(4) {
        border-top: none;
    }

}

@media (max-width: 767px) {

    .shop-labels-section {
        padding-top: 50px;
    }

    .shop-labels-header {
        display: block;
        min-height: auto;
    }

    .shop-labels-header .section-number {
        margin-bottom: 25px;
    }

    .shop-labels-header h2 {
        font-size: 3.5rem;
    }

    .shop-labels-header p {
        margin-top: 25px;
        max-width: 100%;
    }

    .shop-labels-marquee {
        margin-top: 40px;
        padding: 22px 0;
    }

    .shop-labels-grid {
        margin-top: 45px;
        grid-template-columns: 1fr;
    }

    .shop-label-card {
        border-right: 1px solid var(--border-color);
        min-height: 170px;
    }

    .shop-label-card .label-number {
        margin-bottom: 35px;
    }
}
/* =====================================================
   VELORA CONTACT
   BUSINESS HOURS + FOLLOW US
===================================================== */

.velora-contact-connect {
    position: relative;
    
    background: var(--bg-secondary);
    overflow: hidden;
    
}


/* =====================================================
   MAIN GRID
===================================================== */

.velora-connect-grid {
    width: min(90%, var(--container-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}


/* =====================================================
   SECTION KICKER
===================================================== */

.velora-connect-kicker {
    display: inline-block;
    margin-bottom: 18px;

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--primary);
    padding-top: 30px;
    
}


/* =====================================================
   HEADINGS
===================================================== */

.velora-hours-section h2,
.velora-follow-section h2 {
    margin: 0 0 22px;

    font-family: var(--font-heading);
    font-size: clamp(52px, 5vw, 78px);
    font-weight: 500;
    line-height: .88;
    letter-spacing: -1.5px;

    color: var(--heading-color);
}

.velora-hours-section h2 em,
.velora-follow-section h2 em {
    font-style: italic;
    color: var(--primary);
}


/* =====================================================
   INTRO
===================================================== */

.velora-connect-intro {
    max-width: 500px;
    margin: 0 0 38px;

    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.9;

    color: var(--text-light);
}


/* =====================================================
   BUSINESS HOURS
===================================================== */

.velora-hours-list {
    width: 100%;
    border-top: 1px solid var(--border-color);
}


.velora-hours-row {
    min-height: 64px;
    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: var(--white);

    border-bottom: 1px solid var(--border-color);

    transition: var(--transition);
}


.velora-hours-row span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;

    color: var(--black);
}


.velora-hours-row strong {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;

    color: var(--text-light);
}


.velora-hours-row strong.closed {
    color: var(--primary);
}


.velora-hours-row:hover {
    padding-left: 24px;
    background: var(--heading-color);
}


.velora-hours-row:hover span,
.velora-hours-row:hover strong {
    color: var(--black);
}


.velora-hours-row:hover strong.closed {
    color: var(--secondary);
}


/* =====================================================
   FOLLOW US
===================================================== */

.velora-follow-section {
    position: relative;
    padding-top: 30px;
}


.velora-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}


.velora-social-card {
    min-height: 145px;
    padding: 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;

    text-decoration: none;

    background: var(--heading-color);

    border: 1px solid transparent;

    transition: var(--transition);
}


.velora-social-card i {
    font-size: 26px;
    color: var(--white);

    transition: var(--transition);
}


.velora-social-card span {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: var(--white);
}


/* =====================================================
   SOCIAL COLORS
===================================================== */

.velora-social-card.facebook {
    background: #3b5998;
}

.velora-social-card.instagram {
    background: #c13584;
}

.velora-social-card.pinterest {
    background: #bd081c;
}

.velora-social-card.youtube {
    background: #b00000;
}


/* =====================================================
   SOCIAL HOVER
===================================================== */

.velora-social-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
}


.velora-social-card:hover i {
    transform: scale(1.12);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .velora-connect-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .velora-connect-intro {
        max-width: 650px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .velora-contact-connect {
        padding: 20px 0;
    }

    .velora-connect-grid {
        width: min(92%, var(--container-width));
        gap: 65px;
    }

    .velora-hours-section h2,
    .velora-follow-section h2 {
        font-size: 58px;
    }

    .velora-connect-intro {
        font-size: 12px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .velora-hours-row {
        min-height: 60px;
        padding: 0 14px;
    }

    .velora-hours-row span {
        font-size: 11px;
    }

    .velora-hours-row strong {
        font-size: 10px;
    }

    .velora-social-grid {
        gap: 12px;
    }

    .velora-social-card {
        min-height: 125px;
    }

}
.velora-connect-intro-2 {
    width: 100%;
    max-width: 850px;
    margin: 35px 0 0;
    padding: 0;
    
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
    color: var(--text-light);
    text-align: left;
    text-align: justify;
padding-bottom: 20px;
}





/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .velora-hours-section h2,
    .velora-follow-section h2 {
        font-size: 50px;
    }

    .velora-social-grid {
        grid-template-columns: 1fr;
    }

    .velora-social-card {
        min-height: 110px;
    }

}
/* =========================================================
   VELORA — GLOBAL SCROLL REVEAL
   Existing styles are not changed
========================================================= */

.velora-auto-reveal {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity 0.85s ease,
        transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}

.velora-auto-reveal.velora-reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* LEFT REVEAL */

.velora-auto-reveal.velora-reveal-left {
    transform: translateX(-45px);
}

/* RIGHT REVEAL */

.velora-auto-reveal.velora-reveal-right {
    transform: translateX(45px);
}

.velora-auto-reveal.velora-reveal-left.velora-reveal-visible,
.velora-auto-reveal.velora-reveal-right.velora-reveal-visible {
    transform: translateX(0);
}


/* =========================================================
   CARD STAGGER
========================================================= */

.velora-auto-reveal.velora-reveal-stagger:nth-child(2) {
    transition-delay: 0.08s;
}

.velora-auto-reveal.velora-reveal-stagger:nth-child(3) {
    transition-delay: 0.16s;
}

.velora-auto-reveal.velora-reveal-stagger:nth-child(4) {
    transition-delay: 0.24s;
}

.velora-auto-reveal.velora-reveal-stagger:nth-child(5) {
    transition-delay: 0.32s;
}

.velora-auto-reveal.velora-reveal-stagger:nth-child(6) {
    transition-delay: 0.40s;
}

.velora-auto-reveal.velora-reveal-stagger:nth-child(7) {
    transition-delay: 0.48s;
}

.velora-auto-reveal.velora-reveal-stagger:nth-child(8) {
    transition-delay: 0.56s;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .velora-auto-reveal {
        transform: translateY(32px);
    }

    .velora-auto-reveal.velora-reveal-left {
        transform: translateX(-30px);
    }

    .velora-auto-reveal.velora-reveal-right {
        transform: translateX(30px);
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .velora-auto-reveal,
    .velora-auto-reveal.velora-reveal-visible,
    .velora-auto-reveal.velora-reveal-left,
    .velora-auto-reveal.velora-reveal-right {
        opacity: 1;
        transform: none;
        transition: none;
    }

}

/* =========================================================
   VELORA HOME 2 — COMPLETE RESPONSIVE OVERRIDES
   Desktop | Laptop | Tablet | Mobile | Small Mobile
========================================================= */

@media (min-width: 1401px) {
    .home2-hero { min-height: calc(100vh - 120px); }
    .home2-hero-image { min-height: 720px; }
    .home2-hero-content { padding: 80px clamp(50px, 6vw, 110px); }
    .home2-intro-grid { gap: 100px; }
    .home2-category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
    .home2-split { min-height: 650px; }
    .home2-split-image { height: 650px; }
    .home2-split-content { padding: 70px 9%; }
    .home2-journal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
    .home2-instagram-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
}

@media (min-width: 1201px) and (max-width: 1400px) {
    .home2-hero { min-height: 650px; }
    .home2-hero-image { min-height: 650px; }
    .home2-hero-content { padding: 60px 6vw; }
    .home2-category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
    .home2-split { min-height: 580px; }
    .home2-split-image { height: 580px; }
    .home2-split-content { padding: 55px 7%; }
    .home2-instagram-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .container { width: min(92%, 1120px); }

    .home2-hero {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        min-height: 620px;
    }

    .home2-hero-image { min-height: 620px; }
    .home2-hero-content { padding: 55px 5vw; }
    .home2-hero-content h1 { font-size: clamp(3.2rem, 5.5vw, 5rem); }
    .home2-hero-content p { max-width: 470px; font-size: .92rem; }

    .home2-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .home2-category-content { padding: 18px; }
    .home2-category-content h3 { font-size: 1.45rem; }

    .home2-intro-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 55px;
    }

    .home2-intro-heading h2 { font-size: clamp(55px, 6vw, 82px); }
    .home2-intro-text { max-width: 100%; }

    .home2-split {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        min-height: 540px;
    }

    .home2-split-image { height: 540px; }
    .home2-split-content { padding: 50px 7%; }
    .home2-split-content h2 { font-size: clamp(45px, 5vw, 68px); }
    .home2-split-content > p { max-width: 100%; }

    .home2-journal-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .home2-journal-content { padding: 20px; }
    .home2-journal-content h3 { font-size: 1.45rem; }

    .home2-instagram-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .container { width: min(92%, 900px); }

    .home2-hero {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .home2-hero-image {
        min-height: 560px;
        height: 560px;
    }

    .home2-hero-content {
        padding: 65px 8%;
        min-height: 430px;
    }

    .home2-hero-content h1 {
        font-size: clamp(3.5rem, 8vw, 5.5rem);
        line-height: .98;
    }

    .home2-hero-content p {
        max-width: 680px;
        font-size: .95rem;
    }

    .home2-intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .home2-intro-heading h2 {
        max-width: 750px;
        font-size: clamp(55px, 8vw, 82px);
    }

    .home2-intro-text { max-width: 750px; }

    .home2-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .home2-category-content { padding: 20px; }

    .home2-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .home2-split-image {
        height: 560px;
        min-height: 560px;
    }

    .home2-split-content { padding: 65px 8%; }

    .home2-split-content h2 {
        font-size: clamp(50px, 7vw, 75px);
    }

    .home2-split-content > p { max-width: 700px; }

    .home2-sale {
        padding: 95px 8%;
    }

    .home2-sale-content p {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
    }

    .home2-instagram-section { padding: 85px 0; }

    .home2-instagram-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .home2-journal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .home2-journal-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 10px);
        width: 100%;
        margin: 0 auto;
    }

    .newsletter-box {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    .container { width: min(92%, 650px); }

    .home2-hero {
        grid-template-columns: 1fr;
    }

    .home2-hero-image {
        min-height: 470px;
        height: 470px;
    }

    .home2-hero-content { padding: 60px 7%; }

    .home2-hero-content h1 {
        font-size: clamp(3.2rem, 10vw, 4.8rem);
        line-height: .98;
    }

    .home2-hero-content p {
        max-width: 100%;
        font-size: .88rem;
        line-height: 1.8;
    }

    .home2-hero-buttons {
        flex-direction: row;
        align-items: center;
    }

    .home2-hero-buttons .btn { width: auto; }

    .home2-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .home2-intro-heading h2 {
        font-size: clamp(50px, 11vw, 72px);
        letter-spacing: -2px;
    }

    .home2-intro-text p {
        font-size: .9rem;
        line-height: 1.85;
    }

    .home2-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .home2-category-content { padding: 16px; }
    .home2-category-content h3 { font-size: 1.35rem; }
    .home2-category-content p { font-size: .7rem; padding-right: 20px; }

    .home2-split {
        grid-template-columns: 1fr;
    }

    .home2-split-image {
        height: 450px;
        min-height: 450px;
    }

    .home2-split-content { padding: 55px 7%; }

    .home2-split-content h2 {
        font-size: clamp(46px, 10vw, 68px);
    }

    .home2-split-content > p {
        max-width: 100%;
        font-size: .88rem;
        line-height: 1.8;
    }

    .home2-sale { padding: 80px 6%; }

    .home2-sale-content p {
        padding-left: 0;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .home2-instagram-section { padding: 75px 0; }

    .home2-instagram-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home2-journal-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home2-journal-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .home2-journal-content { padding: 20px; }
    .home2-journal-content h3 { font-size: 1.45rem; }
}

@media (min-width: 481px) and (max-width: 599px) {
    .container { width: min(92%, 540px); }

    .home2-hero {
        grid-template-columns: 1fr;
    }

    .home2-hero-image {
        min-height: 430px;
        height: 430px;
    }

    .home2-hero-content { padding: 50px 6%; }

    .home2-hero-content h1 {
        font-size: clamp(3rem, 11vw, 4.2rem);
        line-height: .98;
    }

    .home2-hero-content p {
        font-size: .82rem;
        line-height: 1.8;
    }

    .home2-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .home2-hero-buttons .btn { width: 100%; }

    .home2-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .home2-intro-heading h2 {
        font-size: clamp(48px, 12vw, 66px);
    }

    .home2-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .home2-category-content { padding: 14px; }
    .home2-category-content h3 { font-size: 1.2rem; }

    .home2-category-content p {
        font-size: .64rem;
        line-height: 1.5;
        padding-right: 15px;
    }

    .home2-split {
        grid-template-columns: 1fr;
    }

    .home2-split-image {
        height: 400px;
        min-height: 400px;
    }

    .home2-split-content { padding: 48px 6%; }

    .home2-split-content h2 {
        font-size: clamp(42px, 11vw, 60px);
    }

    .home2-split-content > p {
        font-size: .8rem;
        line-height: 1.8;
    }

    .home2-sale { padding: 75px 6%; }

    .home2-sale-content p {
        padding-left: 0;
        font-size: .8rem;
    }

    .home2-instagram-section { padding: 65px 0; }

    .home2-instagram-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .home2-journal-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home2-journal-content { padding: 18px; }
    .home2-journal-content h3 { font-size: 1.35rem; }
}

@media (max-width: 480px) {
    .container { width: min(92%, 440px); }
    .section { padding: 58px 0; }

    .home2-hero {
        display: block;
        min-height: auto;
    }

    .home2-hero-image {
        min-height: 360px;
        height: 360px;
    }

    .home2-hero-content { padding: 45px 6%; }

    .home2-hero-content > span {
        font-size: .62rem;
        letter-spacing: 2px;
    }

    .home2-hero-content h1 {
        font-size: clamp(2.65rem, 13vw, 3.6rem);
        line-height: .98;
        letter-spacing: -1px;
        margin-bottom: 18px;
    }

    .home2-hero-content p {
        max-width: 100%;
        margin-bottom: 24px;
        font-size: .75rem;
        line-height: 1.75;
    }

    .home2-hero-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .home2-hero-buttons .btn {
        width: 100%;
        min-height: 46px;
        padding: 11px 18px;
        font-size: .68rem;
    }

    .home2-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home2-intro-heading .section-subtitle {
        font-size: .62rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .home2-intro-heading h2 {
        max-width: 100%;
        font-size: clamp(42px, 13vw, 58px);
        line-height: .92;
        letter-spacing: -1.5px;
    }

    .home2-intro-heading h3 {
        font-size: 1.45rem;
        margin-top: 20px;
    }

    .home2-intro-text { max-width: 100%; }

    .home2-intro-text p {
        font-size: .76rem;
        line-height: 1.8;
    }

    .home2-intro-text .text-link { font-size: .68rem; }

    .home2-category-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home2-category-image { aspect-ratio: .9; }
    .home2-category-content { padding: 17px; }

    .home2-category-content > span { font-size: .6rem; }
    .home2-category-content h3 { font-size: 1.35rem; }
    .home2-category-content p { font-size: .7rem; padding-right: 25px; }

    .home2-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .home2-split-image {
        height: 360px;
        min-height: 360px;
    }

    .home2-image-label {
        top: 15px;
        left: 15px;
        padding: 7px 11px;
        font-size: .58rem;
    }

    .home2-split-content { padding: 45px 6%; }

    .home2-split-content h2 {
        font-size: clamp(40px, 12vw, 55px);
        line-height: .95;
        margin-bottom: 18px;
    }

    .home2-split-content > p {
        max-width: 100%;
        font-size: .75rem;
        line-height: 1.8;
        margin-bottom: 22px;
    }

    .home2-feature-list { margin-bottom: 25px; }

    .home2-feature-list li {
        font-size: .7rem;
        gap: 8px;
        margin-bottom: 10px;
    }

    .home2-split-content .btn { width: 100%; }

    .home2-sale { padding: 65px 6%; }

    .home2-sale-content { width: 100%; }

    .home2-sale-content > span {
        font-size: .62rem;
        letter-spacing: 2px;
    }

    .home2-sale-content h2 {
        font-size: clamp(42px, 12vw, 58px);
    }

    .home2-sale-content p {
        padding-left: 0;
        margin-bottom: 24px;
        font-size: .75rem;
        line-height: 1.75;
    }

    .home2-sale-content .btn { width: 100%; }

    .home2-instagram-section { padding: 60px 0; }

    .home2-instagram-heading { margin-bottom: 30px; }

    .home2-instagram-heading .section-subtitle {
        font-size: .62rem;
        letter-spacing: 2px;
    }

    .home2-instagram-heading .section-title {
        font-size: clamp(40px, 11vw, 54px);
        line-height: .95;
    }

    .home2-instagram-heading p {
        font-size: .72rem;
        line-height: 1.75;
    }

    .home2-instagram-link { font-size: .68rem; }

    .home2-instagram-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .home2-instagram-overlay i { font-size: 1.1rem; }

    .home2-instagram-overlay span {
        font-size: .55rem;
        letter-spacing: 1px;
    }

    .home2-instagram-bottom { margin-top: 25px; }
    .home2-instagram-bottom .btn { width: 100%; }

    .home2-journal-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .home2-journal-card { width: 100%; }
    .home2-journal-image { aspect-ratio: 1.15; }
    .home2-journal-content { padding: 18px; }

    .home2-journal-content > span { font-size: .58rem; }

    .home2-journal-content h3 {
        font-size: 1.3rem;
        line-height: 1.1;
    }

    .newsletter-box {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-form input[type="email"],
    .newsletter-form .btn {
        width: 100%;
        min-height: 50px;
    }
}

@media (max-width: 359px) {
    .container { width: 94%; }

    .home2-hero-image {
        height: 320px;
        min-height: 320px;
    }

    .home2-hero-content { padding: 38px 5%; }
    .home2-hero-content h1 { font-size: 2.5rem; }
    .home2-intro-heading h2 { font-size: 2.55rem; }

    .home2-category-content h3 { font-size: 1.25rem; }

    .home2-split-image {
        height: 320px;
        min-height: 320px;
    }

    .home2-split-content { padding: 38px 5%; }
    .home2-sale { padding: 55px 5%; }
    .home2-instagram-grid { gap: 5px; }
    .home2-journal-content h3 { font-size: 1.2rem; }
}

@media (max-height: 600px) and (max-width: 991px) and (orientation: landscape) {
    .home2-hero {
        grid-template-columns: 1fr 1fr;
        min-height: 430px;
    }

    .home2-hero-image {
        height: 430px;
        min-height: 430px;
    }

    .home2-hero-content { padding: 35px 5%; }

    .home2-hero-content h1 {
        font-size: clamp(2.5rem, 7vw, 4rem);
    }

    .home2-hero-content p {
        font-size: .72rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .home2-hero-buttons .btn {
        min-height: 42px;
        padding: 9px 15px;
    }

    .home2-split { grid-template-columns: 1fr 1fr; }

    .home2-split-image {
        height: 430px;
        min-height: 430px;
    }
}
/* =====================================================
   SPECIAL OFFER - BACKGROUND IMAGE
===================================================== */

.feature-banner {
    min-height: 560px;
}

.feature-banner img {
    z-index: 0;
}

.feature-banner::after {
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.62),
        rgba(0, 0, 0, 0.25)
    );
}

.feature-banner .container {
    position: relative;
    z-index: 2;
    width: min(92%, var(--container-width));
}

.feature-banner-content {
    max-width: 620px;
}

.feature-banner-content .section-subtitle {
    display: block;
    margin-bottom: 18px;
    color: var(--white);
    letter-spacing: 3px;
}

.feature-banner-content h2 {
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 0.95;
    margin-bottom: 20px;
}

.feature-banner-content p {
    max-width: 500px;
    line-height: 1.8;
}

.feature-banner-content .btn {
    margin-top: 5px;
}
.about-manifesto-inner > p {
    text-align: center;
    color: white;
    font-weight: 400;
}
/* =========================================================
   SHOP BY CATEGORY - CENTER ALIGN
========================================================= */

.section-heading.centered {
    text-align: center;
}

.section-heading.centered .section-subtitle,
.section-heading.centered .section-title,
.section-heading.centered > p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.contact-location-visuals {
    margin-bottom: 30px;
}
/* =========================================================
   COMMUNITY HIGHLIGHTS
========================================================= */

.community-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--border-color);
}

.community-highlight {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-height: 150px;
    padding: 35px 30px;
    border-right: 1px solid var(--border-color);
    transition:
        background-color 0.35s ease,
        transform 0.35s ease;
}

.community-highlight:last-child {
    border-right: none;
}

.community-highlight:hover {
    background: var(--card-bg);
    transform: translateY(-4px);
}

.highlight-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.8rem;
}

.community-highlight strong {
    display: block;
    margin-bottom: 10px;
    color: var(--heading-color);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
}

.community-highlight p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.72rem;
    line-height: 1.7;
}


/* TABLET */

@media (max-width: 991px) {

    .community-highlights {
        grid-template-columns: 1fr;
    }

    .community-highlight {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .community-highlight:last-child {
        border-bottom: none;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .community-highlight {
        min-height: auto;
        padding: 25px 20px;
    }

}
.new-editorial-hero {
    position: relative;
    min-height: 720px;
    width: 100%;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* IMAGE */

.new-editorial-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.new-editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* DARK OVERLAY */

.new-editorial-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    z-index: 1;
}


/* TEXT */

.new-editorial-content {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 800px;

    text-align: center;
    color: #fff;
}

.new-editorial-content .section-subtitle {
    display: inline-block;
    margin-bottom: 20px;

    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.new-editorial-content h1 {
    margin: 0 0 20px;

    color: #fff;
    font-size: clamp(60px, 8vw, 110px);
    font-weight: 500;
    line-height: 0.95;
}

.new-editorial-content h1 span {
    display: block;
    color: var(--secondary);
    font-style: italic;
}

.new-editorial-content p {
    max-width: 600px;
    margin: 0 auto 32px;

    color: rgba(255,255,255,0.9);
    font-size: 15px;
    line-height: 1.8;
}


/* BUTTON */

.new-editorial-content .btn {
    display: inline-flex;
}


/* IMAGE ZOOM */

.new-editorial-hero:hover .new-editorial-image img {
    transform: scale(1.04);
    transition: transform 1s ease;
}


/* MOBILE */

@media (max-width: 767px) {

    .new-editorial-hero {
        min-height: 600px;
    }

    .new-editorial-content {
        width: 90%;
    }

    .new-editorial-content h1 {
        font-size: 58px;
    }

    .new-editorial-content p {
        font-size: 13px;
    }
}
.new-full-editorial-overlay {
    position: relative;
    z-index: 2;

    width: min(90%, 600px);
    padding: 45px 35px;

    text-align: center;

    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);

    color: var(--white);
}

.new-full-editorial-overlay h2 {
    color: var(--white);
    margin: 10px 0 15px;
}

.new-full-editorial-overlay h2 em {
    color: var(--secondary);
}

.new-full-editorial-overlay p {
    color: var(--primary-dark);
    max-width: 480px;
    margin: 0 auto 25px;
    text-align: center;
}
/* =========================================================
   VELORA EDITORIAL OFFER POPUP
========================================================= */

.editorial-offer-popup {
    position: relative;

    width: min(90%, 500px);
    padding: 48px 45px;

    text-align: center;

    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.8);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(10px);

    animation: offerPopupIn 1s ease forwards,
               offerFloat 4s ease-in-out 1.2s infinite;

    opacity: 0;
    transform: translateY(35px) scale(.92);
}


/* TOP SMALL TEXT */

.offer-small {
    display: block;

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: var(--primary);
}


/* LINE */

.offer-line {
    width: 45px;
    height: 1px;

    margin: 18px auto;

    background: var(--primary);
}


/* =========================================================
   FULL EDITORIAL
========================================================= */

.new-full-editorial {
    position: relative;
    width: 100%;
    height: 650px;
    min-height: 650px;
    overflow: hidden;
}

.new-full-editorial > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

    z-index: 0;
}

.new-full-editorial-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;
    text-align: center;

    background: rgba(0, 0, 0, 0.22);

    z-index: 2;
}

.new-full-editorial-overlay h2 {
    margin: 0;
    color: var(--black);
}

.new-full-editorial-overlay h2 em {
    display: block;
}
/* COUPON */

.offer-code {
    display: inline-block;

    padding: 10px 18px;

    margin-bottom: 25px;

    border: 1px dashed var(--primary);

    font-family: var(--font-body);

    font-size: 10px;

    letter-spacing: 1.5px;

    color: var(--text-color);
}

.offer-code strong {
    color: var(--primary-dark);
}


/* BUTTON */

.offer-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 48px;

    padding: 13px 27px;

    background: var(--black);
    color: var(--white);

    border: 1px solid var(--black);

    font-family: var(--font-body);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    transition: all .35s ease;
}

.offer-btn:hover {
    background: var(--primary);
    border-color: var(--primary);

    color: var(--white);

    transform: translateY(-3px);
}

.offer-btn i {
    transition: transform .3s ease;
}

.offer-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   POPUP ENTRY ANIMATION
========================================================= */

@keyframes offerPopupIn {

    0% {
        opacity: 0;
        transform: translateY(35px) scale(.92);
    }

    70% {
        opacity: 1;
        transform: translateY(-5px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


/* =========================================================
   SOFT FLOATING ANIMATION
========================================================= */

@keyframes offerFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .editorial-offer-popup {
        width: 88%;
        padding: 38px 25px;
    }

    .editorial-offer-popup h2 {
        font-size: 68px;
    }

    .editorial-offer-popup p {
        font-size: 11px;
        max-width: 290px;
    }

    .offer-code {
        font-size: 9px;
    }

}
/* =========================================================
   VELORA LUXURY EDITORIAL DIVIDER
========================================================= */

.velora-editorial-divider {
    width: 100%;
    padding: 32px 7%;
    background: var(--white);

    display: flex;
    align-items: center;
    gap: 28px;

    overflow: hidden;
}

.velora-divider-line {
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.14);
}

.velora-divider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    white-space: nowrap;
}

.velora-divider-content span {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary);
}

.velora-divider-content p {
    margin: 0;

    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: var(--text-light);
}

.velora-divider-content strong {
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 7px;

    color: var(--black);
}

.velora-divider-content i {
    font-size: 5px;
    color: var(--primary);
}


/* subtle entrance animation */

.velora-divider-content {
    animation: veloraDividerReveal 1.2s ease both;
}

@keyframes veloraDividerReveal {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .velora-editorial-divider {
        padding: 25px 5%;
        gap: 15px;
    }

    .velora-divider-content {
        gap: 10px;
    }

    .velora-divider-content p {
        display: none;
    }

    .velora-divider-content strong {
        font-size: 18px;
        letter-spacing: 5px;
    }

    .velora-divider-content span {
        font-size: 8px;
        letter-spacing: 2px;
    }

}
/* =========================================================
   FINAL GLOBAL RESPONSIVE SYSTEM
   Desktop → Laptop → Tablet → Mobile → Small Mobile
========================================================= */


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1401px) {

    .container {
        width: min(90%, 1380px);
        margin-inline: auto;
    }

    img {
        max-width: 100%;
    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1400px) {

    .container {
        width: 92%;
        margin-inline: auto;
    }

    .section {
        overflow: hidden;
    }

    img {
        max-width: 100%;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .container {
        width: 90%;
    }

    .product-grid,
    .category-grid,
    .home2-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Prevent oversized headings */

    h1 {
        font-size: clamp(42px, 6vw, 72px);
    }

    h2 {
        font-size: clamp(34px, 5vw, 58px);
    }

    h3 {
        font-size: clamp(26px, 4vw, 44px);
    }

    /* Flexible images */

    img {
        max-width: 100%;
        height: auto;
    }

}


/* =========================================================
   TABLET / MOBILE NAVIGATION
========================================================= */

@media (max-width: 991px) {

    .container {
        width: 90%;
    }

    .navbar {
        min-height: 72px;
    }

    .nav-menu-toggle,
    .mobile-menu-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: stretch;

        width: 100%;
        max-height: calc(100vh - 72px);
        overflow-y: auto;

        padding: 15px 5%;

        background: var(--card-bg);
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);

        box-shadow: var(--shadow-md);

        gap: 10px;
        z-index: 9999;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 15px 0;
    }

    .nav-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding: 15px 0 5px;
    }

    /* General two-column sections */

    .two-column,
    .split-section,
    .about-split,
    .contact-grid,
    .home2-hero {
        grid-template-columns: 1fr;
    }

    /* Forms */

    .form-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .container {
        width: 90%;
    }

    .section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    /* Typography */

    h1 {
        font-size: clamp(36px, 10vw, 56px);
        line-height: 1;
    }

    h2 {
        font-size: clamp(30px, 8vw, 46px);
        line-height: 1.05;
    }

    h3 {
        font-size: clamp(24px, 7vw, 36px);
        line-height: 1.1;
    }

    p {
        font-size: 13px;
        line-height: 1.8;
    }

    /* Grids */

    .product-grid,
    .category-grid,
    .home2-category-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Buttons */

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Images */

    img {
        max-width: 100%;
    }

    /* Hero */

    .home2-hero-image {
        min-height: 420px;
    }

    .home2-hero-content {
        padding: 55px 5%;
    }

    /* Lookbook */

    .home2-lookbook-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .home2-lookbook-item.large {
        grid-row: auto;
    }

    .home2-lookbook-item {
        min-height: 400px;
    }

    /* Split image */

    .home2-split-image {
        height: 420px;
    }

    /* Footer */

    .footer-grid {
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    /* Tables */

    .table-wrapper,
    .table-responsive {
        width: 100%;
        overflow-x: auto;
    }

    /* Cards */

    .card {
        max-width: 100%;
    }

    /* New Arrivals / Style Guide special 3-column layouts */

    .less-better-card {
        grid-template-columns: 1fr !important;
    }

    .less-better-image,
    .less-better-extra-image {
        min-height: 400px;
        height: 400px;
    }

    .less-better-content {
        padding: 45px 25px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .container {
        width: 92%;
    }

    .section {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .site-logo {
        font-size: 1.55rem;
        letter-spacing: 3px;
    }

    .nav-action-btn {
        width: 35px;
        height: 35px;
    }

    .nav-register {
        padding: 8px 13px;
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 25px;
    }

    .home2-lookbook-item {
        min-height: 330px;
    }

    .home2-sale {
        padding: 80px 0;
    }

    .home2-hero-image {
        min-height: 340px;
    }

    .home2-split-image {
        height: 340px;
    }

    .less-better-image,
    .less-better-extra-image {
        min-height: 330px;
        height: 330px;
    }

    .less-better-content {
        padding: 40px 20px;
    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .container {
        width: 94%;
    }

    .site-logo {
        font-size: 1.35rem;
        letter-spacing: 2px;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 27px;
    }

    h3 {
        font-size: 23px;
    }

    .btn {
        width: 100%;
        max-width: 100%;
    }

}


/* =========================================================
   PREVENT HORIZONTAL SCROLL
========================================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

}
/* =========================================================
   SHOP SPECIAL OFFER BANNER
   BUY ONE GET ONE / FIRST ORDER / FREE DELIVERY
========================================================= */

.shop-offer-banner {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(176, 122, 90, 0.22),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(232, 216, 202, 0.12),
            transparent 32%
        ),
        #171412;

    color: #ffffff;
}

/* SHINE EFFECT */

.shop-offer-shine {
    position: absolute;
    top: -30%;
    left: -20%;

    width: 40%;
    height: 160%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.10),
        transparent
    );

    transform: rotate(20deg);

    animation: shopOfferShine 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shopOfferShine {

    0% {
        left: -40%;
    }

    50% {
        left: 110%;
    }

    100% {
        left: 110%;
    }

}


/* FLOATING CIRCLES */

.shop-offer-circle {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    pointer-events: none;
}

.circle-one {
    width: 330px;
    height: 330px;

    top: -120px;
    right: -80px;

    animation: offerCircleFloat 7s ease-in-out infinite;
}

.circle-two {
    width: 220px;
    height: 220px;

    bottom: -100px;
    left: -70px;

    animation: offerCircleFloat 9s ease-in-out infinite reverse;
}

@keyframes offerCircleFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(8deg);
    }

}


/* CONTENT */

.shop-offer-content {
    position: relative;
    z-index: 3;

    max-width: 760px;
    margin: 0 auto;

    padding: 80px 20px;

    text-align: center;
}


/* LABEL */

.shop-offer-label {
    display: inline-block;

    margin-bottom: 15px;

    color: #d7b29a;

    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;

    letter-spacing: 4px;
    text-transform: uppercase;

    animation: offerFadeUp 0.8s ease both;
}


/* LINE */

.shop-offer-line {
    display: block;

    width: 55px;
    height: 1px;

    margin: 0 auto 25px;

    background: #b07a5a;

    animation: offerLineGrow 1s ease both;
}

@keyframes offerLineGrow {

    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 55px;
        opacity: 1;
    }

}


/* HEADING */

.shop-offer-content h2 {
    margin: 0;

    color: #ffffff;

    font-family: var(--font-heading);
    font-size: clamp(58px, 8vw, 105px);
    font-weight: 500;

    line-height: 0.82;
    letter-spacing: -2px;

    animation: offerFadeUp 0.9s ease 0.15s both;
}

.shop-offer-content h2 span {
    display: block;

    color: #d5a98d;

    font-style: italic;
}


/* FIRST ORDER */

.shop-offer-first {
    margin: 30px 0 12px;

    color: #ffffff;

    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;

    animation: offerFadeUp 0.9s ease 0.3s both;
}


/* DESCRIPTION */

.shop-offer-description {
    max-width: 560px;
    margin: 0 auto 35px;

    color: rgba(255,255,255,0.68);

    font-size: 13px;
    line-height: 1.8;

    text-align: center;

    animation: offerFadeUp 0.9s ease 0.4s both;
}


/* BENEFITS */

.shop-offer-benefits {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;

    margin-bottom: 38px;

    animation: offerFadeUp 0.9s ease 0.5s both;
}

.shop-offer-benefit {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 125px;

    text-align: left;
}

.shop-offer-benefit i {
    color: #c99879;

    font-size: 20px;

    animation: offerIconPulse 2.5s ease-in-out infinite;
}

.shop-offer-benefit span {
    color: rgba(255,255,255,0.65);

    font-size: 10px;
    line-height: 1.5;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.shop-offer-benefit strong {
    color: #ffffff;

    font-weight: 600;
}

.shop-offer-divider {
    width: 1px;
    height: 38px;

    background: rgba(255,255,255,0.18);
}

@keyframes offerIconPulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

}


/* BUTTON */

.shop-offer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 50px;

    padding: 13px 28px;

    border: 1px solid #d5a98d;

    background: #d5a98d;
    color: #171412;

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition: var(--transition);

    animation: offerFadeUp 0.9s ease 0.6s both;
}

.shop-offer-btn i {
    transition: transform 0.3s ease;
}

.shop-offer-btn:hover {
    background: transparent;
    color: #ffffff;

    transform: translateY(-3px);
}

.shop-offer-btn:hover i {
    transform: translateX(6px);
}


/* TEXT ANIMATION */

@keyframes offerFadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* BOTTOM MOVING TEXT */

.shop-offer-marquee {
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;

    display: flex;
    align-items: center;

    gap: 25px;

    padding: 13px 0;

    overflow: hidden;
    white-space: nowrap;

    border-top: 1px solid rgba(255,255,255,0.10);

    color: rgba(255,255,255,0.35);

    font-size: 0.65rem;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.shop-offer-marquee span,
.shop-offer-marquee i {
    flex-shrink: 0;
}

.shop-offer-marquee {
    animation: offerMarquee 18s linear infinite;
}

.shop-offer-marquee i {
    color: #b07a5a;
    font-style: normal;
}

@keyframes offerMarquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-30%);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .shop-offer-banner {
        min-height: 650px;
    }

    .shop-offer-content {
        padding: 70px 18px 85px;
    }

    .shop-offer-content h2 {
        font-size: clamp(55px, 17vw, 82px);
    }

    .shop-offer-first {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .shop-offer-description {
        font-size: 12px;
    }

    .shop-offer-benefits {
        flex-direction: column;
        gap: 18px;
    }

    .shop-offer-benefit {
        justify-content: center;
        text-align: left;
    }

    .shop-offer-divider {
        display: none;
    }

    .circle-one {
        width: 220px;
        height: 220px;
    }

    .circle-two {
        width: 160px;
        height: 160px;
    }

    .shop-offer-btn {
        width: 100%;
        max-width: 300px;
    }

}


@media (max-width: 480px) {

    .shop-offer-banner {
        min-height: 680px;
    }

    .shop-offer-content {
        padding-inline: 15px;
    }

    .shop-offer-label {
        font-size: 0.62rem;
        letter-spacing: 2.5px;
    }

    .shop-offer-content h2 {
        font-size: 58px;
    }

    .shop-offer-first {
        margin-top: 25px;
        font-size: 0.6rem;
    }

    .shop-offer-description {
        max-width: 320px;
    }

}
/* =========================================================
   STYLE GUIDE IMAGE BANNER WITH TEXT OVERLAY
   CENTERED CONTENT
========================================================= */

.style-guide-hero {
    position: relative;
    width: 100%;
    min-height: 680px;
    overflow: hidden;
}

/* =========================================================
   BANNER IMAGE
========================================================= */

.style-guide-banner-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

    z-index: 1;

    transition: transform 1.2s ease;
}

.style-guide-hero:hover .style-guide-banner-image {
    transform: scale(1.04);
}


/* =========================================================
   DARK OVERLAY
========================================================= */

.style-guide-banner-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.68),
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.60)
        );

    z-index: 2;
}


/* =========================================================
   TEXT OVER IMAGE - FULL CENTER
========================================================= */

.style-guide-banner-content {
    position: relative;
    z-index: 3;

    min-height: 680px;

    width: 100%;
    max-width: 900px;

    margin: 0 auto;
    padding: 70px 20px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    color: #ffffff;
}


/* =========================================================
   SMALL TEXT
========================================================= */

.style-guide-banner-content > span {
    display: block;

    margin: 0 0 18px;

    color: #ead6c7;

    font-size: 0.7rem;
    font-weight: 600;

    letter-spacing: 4px;
    text-transform: uppercase;

    text-align: center;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.style-guide-banner-content h1 {
    width: 100%;

    margin: 0 auto 30px;
    padding: 0;

    color: #ffffff;

    font-family: var(--font-heading);

    font-size: clamp(60px, 8vw, 110px);
    font-weight: 500;

    line-height: 0.85;
    letter-spacing: -2px;

    text-align: center;
}


/* =========================================================
   SECOND LINE - PERFECT CENTER
========================================================= */

.style-guide-banner-content h1 em {
    display: block;

    width: 100%;

    margin: 0;
    padding: 0;

    color: #e0b79c;

    font-style: italic;
    font-weight: 400;

    text-align: center;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.style-guide-banner-content p {
    width: 100%;
    max-width: 650px;

    margin: 0 auto 32px;
    padding: 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: 15px;
    line-height: 1.9;

    text-align: center;
}


/* =========================================================
   BUTTON
========================================================= */

.style-guide-banner-content .btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 14px 28px;

    background: #b07a5a;
    border: 1px solid #b07a5a;

    color: #ffffff;

    transition: all 0.35s ease;
}

.style-guide-banner-content .btn:hover {
    background: transparent;

    border-color: #ffffff;

    color: #ffffff;

    transform: translateY(-3px);
}

.style-guide-banner-content .btn i {
    transition: transform 0.3s ease;
}

.style-guide-banner-content .btn:hover i {
    transform: translateY(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .style-guide-hero {
        min-height: 600px;
    }

    .style-guide-banner-content {
        min-height: 600px;

        width: 100%;
        max-width: 850px;

        padding: 60px 25px;
    }

    .style-guide-banner-content h1 {
        font-size: clamp(55px, 9vw, 90px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .style-guide-hero {
        min-height: 620px;
    }

    .style-guide-banner-content {
        min-height: 620px;

        width: 100%;
        max-width: 600px;

        padding: 50px 20px;
    }

    .style-guide-banner-content > span {
        margin-bottom: 18px;

        font-size: 0.58rem;

        letter-spacing: 2.5px;

        text-align: center;
    }

    .style-guide-banner-content h1 {
        width: 100%;

        margin: 0 auto 25px;

        font-size: clamp(48px, 15vw, 75px);

        line-height: 0.9;

        text-align: center;
    }

    .style-guide-banner-content h1 em {
        width: 100%;

        margin: 0;

        text-align: center;
    }

    .style-guide-banner-content p {
        width: 100%;
        max-width: 380px;

        margin: 0 auto 28px;

        font-size: 11px;
        line-height: 1.8;

        text-align: center;
    }

    .style-guide-banner-content .btn {
        width: 100%;
        max-width: 270px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .style-guide-hero {
        min-height: 600px;
    }

    .style-guide-banner-content {
        min-height: 600px;

        padding: 45px 15px;
    }

    .style-guide-banner-content h1 {
        width: 100%;

        margin: 0 auto 25px;

        font-size: 52px;

        text-align: center;
    }

    .style-guide-banner-content h1 em {
        margin: 0;

        text-align: center;
    
    }

    .style-guide-banner-content p {
        max-width: 320px;

        font-size: 10.5px;

        text-align: center;
    }

}
/* =========================================================
   FINAL STYLE GUIDE CENTER FIX
========================================================= */

.style-guide-hero .style-guide-banner-content {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    max-width: none !important;

    min-height: 0 !important;

    margin: 0 !important;
    padding: 40px 20px !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;
}

.style-guide-hero .style-guide-banner-content > span {
    width: 100% !important;
    margin: 0 0 18px !important;

    text-align: center !important;
}

.style-guide-hero .style-guide-banner-content h1 {
    width: 100% !important;

    margin: 0 auto 30px !important;
    padding: 0 !important;

    text-align: center !important;
}

.style-guide-hero .style-guide-banner-content h1 em {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: center !important;
}

.style-guide-hero .style-guide-banner-content p {
    width: 100% !important;
    max-width: 650px !important;

    margin: 0 auto 32px !important;

    text-align: center !important;
}

.style-guide-hero .style-guide-banner-content .btn {
    margin-left: auto !important;
    margin-right: auto !important;
}
/* =========================================================
   MANIFESTO BACKGROUND IMAGE
========================================================= */

.about-manifesto {
    position: relative;
    overflow: hidden;
}

/* BACKGROUND IMAGE */

.about-manifesto .manifesto-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-manifesto .manifesto-bg img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;
}


/* DARK OVERLAY */

.about-manifesto .manifesto-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.48);

    z-index: 1;
}


/* CONTENT ABOVE IMAGE */

.about-manifesto .container {
    position: relative;
    z-index: 2;
}

.about-manifesto .about-manifesto-inner {
    position: relative;
    z-index: 3;
}


/* TEXT */

.about-manifesto .section-subtitle,
.about-manifesto blockquote,
.about-manifesto p,
.about-manifesto .about-manifesto-brand {
    position: relative;
    z-index: 3;
    color: white;
}


/* MOBILE */

@media (max-width: 767px) {

    .about-manifesto .manifesto-bg img {
        object-position: center;
    }

}
/* =========================================================
   VELORA - NEW ARRIVALS
   IMAGE STORY
   SKIRT IMAGE LAYOUT
========================================================= */


/* =========================================================
   MAIN SECTION
========================================================= */

.new-image-story {
    width: 100%;
    padding: 100px 0;
}


/* =========================================================
   MAIN GRID

   DESKTOP:

   ┌──────────────────┬──────────────────────────────┐
   │                  │                              │
   │                  │        SKIRT IMAGE           │
   │   LARGE IMAGE    │                              │
   │                  ├─────────────────┬────────────┤
   │                  │                 │            │
   │                  │  SMALL IMAGE    │   TEXT     │
   │                  │                 │            │
   └──────────────────┴─────────────────┴────────────┘
========================================================= */

.new-story-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(0, 0.75fr)
        minmax(0, 0.7fr);

    grid-template-rows:
        300px
        350px;

    column-gap: 25px;
    row-gap: 25px;

    align-items: stretch;
}


/* =========================================================
   01 - LARGE IMAGE
========================================================= */

.new-story-large {
    position: relative;

    grid-column: 1;
    grid-row: 1 / 3;

    width: 100%;
    height: 675px;

    overflow: hidden;
}


/* =========================================================
   03 - SKIRT IMAGE
   TOP RIGHT
========================================================= */

.new-story-skirt {
    position: relative;

    grid-column: 2 / 4;
    grid-row: 1;

    width: 100%;
    height: 300px;

    overflow: hidden;
}


/* =========================================================
   02 - SMALL EXISTING IMAGE
========================================================= */

.new-story-small {
    position: relative;

    grid-column: 2;
    grid-row: 2;

    width: 100%;
    height: 350px;

    overflow: hidden;
}


/* =========================================================
   TEXT CONTENT
========================================================= */

.new-story-text {
    grid-column: 3;
    grid-row: 2;

    width: 100%;

    padding: 20px 5px 15px;

    align-self: center;
}


/* =========================================================
   ALL IMAGE SETTINGS
========================================================= */

.new-story-large img,
.new-story-small img,
.new-story-skirt img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.8s ease;
}


/* =========================================================
   SKIRT IMAGE POSITION
========================================================= */

.new-story-skirt img {
    object-position: center center;
}


/* =========================================================
   IMAGE HOVER
========================================================= */

.new-story-large:hover img,
.new-story-small:hover img,
.new-story-skirt:hover img {
    transform: scale(1.04);
}


/* =========================================================
   IMAGE LABEL
========================================================= */

.new-story-label {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    padding-top: 15px;

    border-top:
        1px solid rgba(255, 255, 255, 0.7);

    color: var(--white);

    z-index: 2;
}


/* =========================================================
   LABEL NUMBER
========================================================= */

.new-story-label span {
    margin: 0;

    font-size: 11px;

    line-height: 1;

    letter-spacing: 2px;
}


/* =========================================================
   LABEL TEXT
========================================================= */

.new-story-label p {
    margin: 0;

    font-size: 11px;

    line-height: 1;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    color: var(--white);
}


/* =========================================================
   TEXT - SUBTITLE
========================================================= */

.new-story-text .section-subtitle {
    display: block;

    margin-bottom: 0;
}


/* =========================================================
   TEXT - HEADING
========================================================= */

.new-story-text h3 {
    margin: 15px 0 20px;

    font-family: var(--font-heading);

    font-size: 45px;

    line-height: 1.05;

    font-weight: 500;

    color: var(--heading-color);
}


/* =========================================================
   TEXT - PARAGRAPH
========================================================= */

.new-story-text p {
    max-width: 430px;

    margin-bottom: 25px;

    color: var(--text-light);

    line-height: 1.9;
}


/* =========================================================
   TEXT LINK
========================================================= */

.new-story-text .text-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .new-image-story {
        padding: 50px 0;
    }


    .new-story-grid {

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        grid-template-rows:
            550px
            350px;

        gap: 25px;
    }


    /* LARGE IMAGE */

    .new-story-large {

        grid-column: 1;
        grid-row: 1;

        height: 550px;
    }


    /* SKIRT IMAGE */

    .new-story-skirt {

        grid-column: 2;
        grid-row: 1;

        height: 550px;
    }


    /* SMALL IMAGE */

    .new-story-small {

        grid-column: 1;
        grid-row: 2;

        height: 350px;
    }


    /* TEXT */

    .new-story-text {

        grid-column: 2;
        grid-row: 2;

        padding:
            20px
            0
            15px;
    }


    .new-story-text h3 {
        font-size: 40px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .new-image-story {
        padding: 65px 0;
    }


    .new-story-grid {

        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: auto;

        gap: 25px;
    }


    /* LARGE IMAGE */

    .new-story-large {

        grid-column: 1;
        grid-row: auto;

        height: 500px;
    }


    /* SKIRT IMAGE */

    .new-story-skirt {

        grid-column: 1;
        grid-row: auto;

        height: 400px;
    }


    /* SMALL IMAGE */

    .new-story-small {

        grid-column: 1;
        grid-row: auto;

        height: 500px;
    }


    /* TEXT */

    .new-story-text {

        grid-column: 1;
        grid-row: auto;

        padding:
            10px
            0
            10px;
    }


    .new-story-text h3 {

        font-size: 40px;

        line-height: 1.08;
    }


    .new-story-text p {

        max-width: 100%;
    }


    /* LABEL */

    .new-story-label {

        left: 20px;
        right: 20px;
        bottom: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .new-image-story {
        padding: 55px 0;
    }


    .new-story-large {
        height: 420px;
    }


    .new-story-skirt {
        height: 350px;
    }


    .new-story-small {
        height: 420px;
    }


    .new-story-text h3 {
        font-size: 36px;
    }


    .new-story-label {

        left: 15px;
        right: 15px;
        bottom: 15px;

        padding-top: 12px;
    }

}
/* =================================================
   FIND YOUR LOOK - IMAGE BANNER
================================================= */

.feature-banner {
    position: relative;
    min-height: 520px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

/* BACKGROUND IMAGE */
.feature-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.feature-banner-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;
}

/* DARK OVERLAY */
.feature-banner-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.42);

    z-index: 1;
}

/* CONTENT */
.feature-banner .container {
    position: relative;
    z-index: 2;
}

.feature-banner-content {
    position: relative;
    z-index: 2;

    max-width: 600px;
}

.feature-banner-content h2,
.feature-banner-content p {
    color: var(--white);
}

.feature-banner-content h2 {
    margin-bottom: 20px;
}

.feature-banner-content p {
    margin: 20px 0 25px;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.88);
}

/* MOBILE */
@media (max-width: 767px) {

    .feature-banner {
        min-height: 600px;
    }

    .feature-banner-image img {
        object-position: 65% center;
    }

    .feature-banner-content {
        max-width: 100%;
    }

}
/* =====================================================
   SIGNATURE EDIT - SMALLER SIZE
===================================================== */

.signature-edit {
    padding: 30px 0 !important;
}

.signature-edit-inner {
    width: min(88%, 1000px) !important;
    min-height: 480px !important;
    grid-template-columns: 0.85fr 1fr !important;
}

/* LEFT CONTENT */
.signature-edit-content {
    padding: 0px 55px 45px 0 !important;
}

.signature-edit-eyebrow {
    font-size: 12px !important;
    margin-bottom: 16px !important;
}

.signature-edit-content h2 {
    font-size: clamp(45px, 5vw, 68px) !important;
    margin-bottom: 20px !important;
}

.signature-edit-content p {
    max-width: 380px !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin-bottom: 25px !important;
}

.signature-edit-link {
    font-size: 12px !important;
    padding-bottom: 6px !important;
}

/* RIGHT IMAGE */
.signature-edit-image {
    min-height: 480px !important;
    height: 480px !important;
}

.signature-edit-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* NUMBER */
.signature-edit-number {
    top: 18px !important;
    left: 18px !important;
    font-size: 17px !important;
}

/* IMAGE LABEL */
.signature-edit-label {
    right: 18px !important;
    bottom: 18px !important;
    padding: 10px 13px !important;
}

.signature-edit-label span {
    font-size: 7px !important;
}

.signature-edit-label strong {
    font-size: 8px !important;
}

/* CENTER V */
.signature-edit-mark {
    width: 58px !important;
    height: 58px !important;
    border-width: 6px !important;
    font-size: 23px !important;
}
@media (max-width: 767px) {

    .signature-edit {
        padding: 50px 0 !important;
    }

    .signature-edit-inner {
        width: 88% !important;
    }

    .signature-edit-content {
        padding: 10px 0 35px !important;
    }

    .signature-edit-content h2 {
        font-size: 48px !important;
    }

    .signature-edit-image {
        min-height: 380px !important;
        height: 380px !important;
    }

    .signature-edit-mark {
        width: 52px !important;
        height: 52px !important;
        font-size: 21px !important;
    }
}

/* =========================================================
   VELORA HOME 2 HERO - FINAL FULL BACKGROUND BANNER FIX
   This block is intentionally at the END so it overrides
   all previous Home 2 hero responsive rules.
========================================================= */

.home2-hero {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    min-height: calc(100vh - 120px) !important;
    overflow: hidden !important;
    background: var(--black) !important;
}

.home2-hero-image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    z-index: 0 !important;
    overflow: hidden !important;
}

.home2-hero-image img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 1s ease !important;
}

.home2-hero::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.42) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.home2-hero-content {
    position: relative !important;
    z-index: 2 !important;
    width: min(92%, var(--container-width)) !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 80px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.home2-hero-content > span {
    color: var(--white) !important;
    margin-bottom: 18px !important;
}

.home2-hero-content h1 {
    max-width: 720px !important;
    margin-bottom: 22px !important;
    color: var(--white) !important;
}

.home2-hero-content h1 span {
    color: var(--primary) !important;
}

.home2-hero-content p {
    max-width: 560px !important;
    margin-bottom: 30px !important;
    color: rgba(255, 255, 255, 0.88) !important;
}

.home2-hero-buttons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

.home2-hero:hover .home2-hero-image img {
    transform: scale(1.025) !important;
}

/* TABLET */
@media (max-width: 991px) {
    .home2-hero {
        min-height: 700px !important;
    }

    .home2-hero-image {
        min-height: 0 !important;
        height: 100% !important;
    }

    .home2-hero-content {
        width: min(90%, 760px) !important;
        padding: 70px 0 !important;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .home2-hero {
        min-height: 650px !important;
    }

    .home2-hero-image {
        height: 100% !important;
    }

    .home2-hero-image img {
        object-position: center !important;
    }

    .home2-hero-content {
        width: 90% !important;
        padding: 60px 0 !important;
    }

    .home2-hero-content h1 {
        font-size: 52px !important;
        line-height: 1 !important;
    }

    .home2-hero-content p {
        max-width: 100% !important;
        font-size: 13px !important;
        line-height: 1.7 !important;
    }

    .home2-hero-buttons {
        flex-direction: row !important;
        align-items: flex-start !important;
    }

    .home2-hero-buttons .btn {
        width: auto !important;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .home2-hero {
        min-height: 620px !important;
    }

    .home2-hero-content {
        width: 90% !important;
        padding: 50px 0 !important;
    }

    .home2-hero-content h1 {
        font-size: 45px !important;
    }

    .home2-hero-content p {
        font-size: 12px !important;
    }
}
/* =========================================================
   HOME 2 HERO - CENTER TEXT
========================================================= */

.home2-hero {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.home2-hero-content {
    width: min(90%, 800px) !important;
    margin: 0 auto !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 80px 20px !important;

    text-align: center !important;
}

.home2-hero-content h1 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.home2-hero-content p {
    max-width: 650px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

.home2-hero-buttons {
    justify-content: center !important;
}
/* =========================================================
   SOCIAL LOGIN BUTTONS
========================================================= */

.social-login {
    margin-top: 28px;
}

.social-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.social-divider::before,
.social-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.social-divider span {
    color: var(--text-light);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-btn {
    width: 48px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border-color);
    background: var(--card-bg);

    color: var(--text-color);
    font-size: 18px;

    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    color: var(--white);
}

/* Google */
.social-btn.google:hover {
    background: var(--primary);
    border-color:var(--primary);
}

/* Instagram */
.social-btn.instagram:hover {
    background: var(--primary);
    border-color:var(--primary);
}

/* Facebook */
.social-btn.facebook:hover {
    background: var(--primary);
    border-color: var(--primary);
}
/* =========================================================
   NAVIGATION ACTIVE LINK
========================================================= */

.nav-link {
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3;
    width: 0;
    height: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    font-weight: 600;
}
/* =========================================================
   NEWSLETTER EMAIL VALIDATION
========================================================= */

.newsletter-form {
    position: relative;
}

.newsletter-email.error {
    border-color: #d93025;
}

.newsletter-error {
    display: none;
    color: #d93025;
    font-size: 12px;
    margin-top: 6px;
}

.newsletter-error.show {
    display: block;
}
.newsletter-email.error {
    border-color: #d93025;
}

.newsletter-email.error::placeholder {
    color: #d93025;
    opacity: 1;
}
/* =========================================================
   LOGIN INPUT ERROR - RED
========================================================= */

#loginForm .input-icon input.login-input.error {
    border: 1px solid #d93025 !important;
    color: #d93025 !important;
}

#loginForm .input-icon input.login-input.error::placeholder {
    color: #d93025 !important;
    opacity: 1 !important;
}
/* =========================================================
   REGISTER INPUT ERROR - RED
========================================================= */

#registerForm .input-wrapper input.error {
    border: 1px solid #d93025 !important;
    color: #d93025 !important;
}

#registerForm .input-wrapper input.error::placeholder {
    color: #d93025 !important;
    opacity: 1 !important;
}
