/**
 * Main Stylesheet for Viella Boutique (BeClothing 2 Aesthetic)
 *
 * @package ViellaBoutique
 */

:root {
    --viella-bg-soft: #eaf1f5;
    --viella-bg-accent: #edd8ab;
    --viella-primary: #111111;
    --viella-text-main: #333333;
    --viella-text-muted: #777777;
    --viella-white: #ffffff;
    --viella-border: #e2e8f0;
    --viella-font-heading: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --viella-font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    --viella-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Layout container */
.viella-container {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* -------------------------------------------------------------
 * 1. Top Action Bar
 * ------------------------------------------------------------- */
#Action_bar {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
    color: var(--viella-text-muted);
    font-family: var(--viella-font-body);
}

.action-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.contact_details {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.contact_details li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact_details .slogan {
    font-weight: 500;
    color: var(--viella-primary);
}

.contact_details a {
    color: var(--viella-text-muted);
}

.contact_details a:hover {
    color: var(--viella-primary);
}

.action-bar-extra {
    display: none;
}

@media (min-width: 768px) {
    .action-bar-extra {
        display: block;
        font-size: 11px;
        letter-spacing: 1px;
        font-weight: 600;
        color: var(--viella-primary);
    }
}

/* -------------------------------------------------------------
 * 2. Main Navigation Header
 * ------------------------------------------------------------- */
.viella-main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    z-index: 999;
}

/* Home Page Header: Floating split white cards over the full-width Hero background */
@media (min-width: 992px) {
    body.home #Action_bar {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1001;
        background: transparent !important;
        border-bottom: none !important;
    }

    body.home #Action_bar .action-bar-contact a,
    body.home #Action_bar .action-bar-extra {
        color: #555555 !important;
    }

    body.home .viella-main-header {
        position: absolute;
        top: 38px;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: transparent !important;
        border-bottom: none !important;
    }

    body.home #Top_bar:not(.is-sticky) {
        background: transparent !important;
    }

    body.home #Top_bar:not(.is-sticky) .top_bar_inner {
        background: #ffffff !important;
        padding: 14px 38px !important;
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    body.home #Top_bar:not(.is-sticky) .top_bar_left {
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        display: flex;
        align-items: center;
        gap: 40px;
    }

    body.home #Top_bar:not(.is-sticky) .top_bar_right {
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        display: flex;
        align-items: center;
    }
}

/* Sticky Header: Full-width solid white navbar across top when scrolling */
.top-bar-sticky {
    transition: all 0.3s ease;
}

.top-bar-sticky.is-sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08) !important;
    z-index: 99999 !important;
    animation: slideDown 0.35s ease;
}

/* WordPress Admin Bar Compatibility: ensure toolbar is always visible */
body.admin-bar.home #Action_bar {
    top: 32px !important;
}
body.admin-bar.home .viella-main-header {
    top: 70px !important;
}
body.admin-bar .top-bar-sticky.is-sticky {
    top: 32px !important;
}
@media screen and (max-width: 782px) {
    body.admin-bar.home #Action_bar {
        top: 46px !important;
    }
    body.admin-bar.home .viella-main-header {
        top: 84px !important;
    }
    body.admin-bar .top-bar-sticky.is-sticky {
        top: 46px !important;
    }
}

.top-bar-sticky.is-sticky .top_bar_inner {
    padding: 12px 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar-sticky.is-sticky .top_bar_left,
.top-bar-sticky.is-sticky .top_bar_right {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

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

.top_bar_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.top_bar_left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.site-title-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    text-decoration: none;
    line-height: 1;
}

.site-title-logo .logo-text {
    font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--viella-primary);
}

.site-title-logo .logo-sub {
    font-family: var(--viella-font-heading);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--viella-text-muted);
    text-transform: uppercase;
}

/* Primary Menu */
.main-navigation {
    display: none;
}

@media (min-width: 992px) {
    .main-navigation {
        display: block;
    }
}

.main-navigation .menu-main {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}

.main-navigation .menu-main > li {
    position: relative;
}

.main-navigation .menu-main > li > a {
    font-family: var(--viella-font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--viella-primary);
    padding: 8px 0;
    display: block;
    position: relative;
    text-decoration: none;
}

.main-navigation .menu-main > li > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--viella-primary);
    transition: width 0.25s ease;
}

.main-navigation .menu-main > li:hover > a::after,
.main-navigation .menu-main > li.current-menu-item > a::after {
    width: 100%;
}

/* Dropdown Sub-menu */
.main-navigation .menu-main .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    list-style: none;
    margin: 0;
    padding: 15px 0;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--viella-transition);
    z-index: 100;
}

.main-navigation .menu-main > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .menu-main .sub-menu li a {
    display: block;
    padding: 8px 22px;
    font-size: 14px;
    color: #444444;
}

.main-navigation .menu-main .sub-menu li a:hover {
    color: var(--viella-primary);
    background-color: #f8fafc;
    padding-left: 26px;
}

/* Header Right Icons */
.top_bar_right_wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-icon-btn {
    background: transparent;
    border: none;
    color: var(--viella-primary);
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    text-decoration: none;
}

.header-icon-btn:hover {
    color: #555555;
}

.header-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    color: var(--viella-primary);
    text-decoration: none;
}

.cart-icon-badge-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-icon-badge-wrap .header-cart-count {
    background-color: #111111;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -6px;
    right: -7px;
    line-height: 1;
}

.header-cart-total {
    font-family: var(--viella-font-heading);
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    display: none;
}

@media (min-width: 600px) {
    .header-cart-total {
        display: inline-block;
    }
}

/* My Account Text Link with Chevron */
.top-bar-my-account-link {
    display: none;
    align-items: center;
    gap: 6px;
    font-family: var(--viella-font-heading);
    font-size: 14px;
    font-weight: 400;
    color: #555555;
    text-decoration: none;
    margin-left: 6px;
    transition: color 0.2s ease;
}

@media (min-width: 768px) {
    .top-bar-my-account-link {
        display: inline-flex;
    }
}

.top-bar-my-account-link:hover {
    color: #111111;
}

.top-bar-my-account-link svg {
    transition: transform 0.2s ease;
}

.top-bar-my-account-link:hover svg {
    transform: translateX(2px);
}

.top-bar-right-button {
    display: none;
}

/* Mobile Hamburger Toggle */
.responsive-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (min-width: 992px) {
    .responsive-menu-toggle {
        display: none;
    }
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--viella-primary);
    border-radius: 2px;
}

/* -------------------------------------------------------------
 * 3. Hero Banner Slider (Authentic Full-Width BeClothing 2)
 * ------------------------------------------------------------- */
.viella-hero-slider {
    position: relative;
    width: 100%;
    min-height: 820px;
    overflow: hidden;
    background-color: #f7f9fa;
}

.hero-slides-wrapper {
    position: relative;
    width: 100%;
    min-height: 820px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 820px;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(1.03);
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 60px;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

/* Gradient overlay for readability */
.hero-slide-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(247, 249, 250, 0.85) 0%, rgba(247, 249, 250, 0.35) 45%, rgba(247, 249, 250, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

@media (min-width: 1200px) {
    .hero-slide-bg-overlay {
        background: linear-gradient(to right, rgba(247, 249, 250, 0.65) 0%, rgba(247, 249, 250, 0.15) 40%, rgba(247, 249, 250, 0) 100%);
    }
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-slide-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}

/* Side Arrows (BeClothing 2 Vertical Stack) */
.hero-side-arrows {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-right: 20px;
    z-index: 10;
}

.hero-arrow-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #111111;
    padding: 6px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow-btn:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* Hero Text Content */
.hero-text-content {
    max-width: 480px;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}

.hero-slide.active .hero-text-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-year-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-year {
    font-family: var(--viella-font-heading);
    font-size: 28px;
    font-weight: 300;
    color: #111111;
    letter-spacing: 1px;
}

.hero-rule {
    width: 90px;
    height: 1px;
    background-color: #111111;
}

.hero-main-title {
    font-family: var(--viella-font-heading);
    font-size: clamp(52px, 6.5vw, 88px);
    line-height: 0.95;
    font-weight: 300;
    color: #111111;
    margin: 0 0 24px 0;
    letter-spacing: -1px;
}

.hero-main-title .hero-subtitle {
    font-weight: 300;
}

.hero-badge-tagline {
    font-family: var(--viella-font-body);
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 35px;
}

/* Our Collection Button (Black rounded pill) */
.viella-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--viella-font-body);
    font-weight: 700;
    font-size: 14px;
    padding: 14px 34px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 25px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.viella-hero-btn:hover {
    background-color: #333333;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Hero Right Visual Layer */
.hero-visual-layer {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    z-index: 10;
    margin-right: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease 0.35s, transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.35s;
}

.hero-slide.active .hero-visual-layer {
    opacity: 1;
    transform: translateY(0);
}

/* Rotating Badge */
.hero-rotating-badge {
    position: absolute;
    top: -65px;
    left: -65px;
    width: 200px;
    height: 200px;
    z-index: 1;
    pointer-events: none;
}

.badge-rotate-img {
    width: 100%;
    height: 100%;
    animation: spinBadge 25s linear infinite;
}

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

/* Lookbook Cards */
.hero-lookbook-card {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 2;
}

.hero-lookbook-card a {
    display: block;
    position: relative;
    text-decoration: none;
}

.hero-lookbook-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.2);
}

.hero-lookbook-card img {
    width: 250px;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-lookbook-card:hover img {
    transform: scale(1.04);
}

.lookbook-card-title {
    position: absolute;
    bottom: 22px;
    left: 22px;
    font-family: var(--viella-font-heading);
    font-size: 32px;
    font-weight: 300;
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.card-woman {
    margin-bottom: 50px;
}

.card-men {
    margin-bottom: 0;
}

/* Mobile & Tablet Responsive */
@media (max-width: 991px) {
    .viella-hero-slider,
    .hero-slides-wrapper,
    .hero-slide {
        min-height: 640px;
    }

    .hero-slide {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-slide-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .hero-side-arrows {
        display: none;
    }

    .hero-visual-layer {
        margin-right: 0;
        gap: 15px;
    }

    .hero-lookbook-card img {
        width: 180px;
        height: 250px;
    }

    .hero-rotating-badge {
        width: 140px;
        height: 140px;
        top: -40px;
        left: -40px;
    }
}

@media (max-width: 575px) {
    .hero-visual-layer {
        display: none;
    }

    .viella-hero-slider,
    .hero-slides-wrapper,
    .hero-slide {
        min-height: 520px;
    }
}

/* -------------------------------------------------------------
 * 4. Featured Weekly Deals
 * ------------------------------------------------------------- */
.viella-featured-deals-section {
    padding: 100px 0 80px;
    background-color: var(--viella-bg-soft);
}

.section-heading-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.heading-title-box .sub-tagline {
    font-family: var(--viella-font-heading);
    font-size: 15px;
    color: var(--viella-text-muted);
    display: block;
    margin-bottom: 6px;
    text-transform: capitalize;
}

.heading-title-box .main-heading {
    font-family: var(--viella-font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--viella-primary);
    margin: 0;
}

.heading-divider-line {
    flex: 1;
    height: 1px;
    background-color: #111111;
    margin-left: 40px;
    display: none;
}

@media (min-width: 768px) {
    .heading-divider-line {
        display: block;
    }
}

/* -------------------------------------------------------------
 * Product Carousel Styles (Smooth Horizontal Track & Controls)
 * ------------------------------------------------------------- */
.heading-controls-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-carousel-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}

.product-carousel-nav-btn:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.viella-product-carousel-wrapper,
.viella-swiper-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 30px;
    overflow: hidden;
}

/* -------------------------------------------------------------
 * Swiper Carousel Core & Slide Layout
 * ------------------------------------------------------------- */
.viella-product-swiper {
    width: 100%;
    padding: 10px 4px 35px !important;
    overflow: hidden;
}

.viella-product-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
    box-sizing: border-box;
}

.viella-product-swiper .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.viella-product-swiper .swiper-slide.woocommerce {
    list-style: none;
    margin: 0;
    padding: 0;
}

.viella-product-swiper .swiper-slide .viella-product-card,
.viella-product-swiper .swiper-slide li.product {
    width: 100% !important;
    max-width: 100% !important;
    height: 100%;
    margin: 0 !important;
    float: none !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box;
}

.viella-product-swiper .swiper-slide li.product::before,
.viella-product-swiper .swiper-slide li.product::after {
    display: none !important;
    content: none !important;
}

/* Swiper Pagination Dots */
.viella-product-swiper .swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.viella-product-swiper .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #bbb;
    opacity: 0.6;
    border-radius: 50%;
    margin: 0 !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
    outline: none;
}

.viella-product-swiper .swiper-pagination-bullet-active {
    background: #111111;
    opacity: 1;
    width: 26px;
    border-radius: 12px;
}

/* Navigation Buttons Disabled State */
.product-carousel-nav-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
    transform: none !important;
    box-shadow: none !important;
}

.woocommerce ul.products.viella-product-carousel-track,
ul.products.viella-product-carousel-track,
.viella-product-carousel-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 24px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    padding: 10px 4px 25px !important;
    margin: 0 !important;
    list-style: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.woocommerce ul.products.viella-product-carousel-track::before,
.woocommerce ul.products.viella-product-carousel-track::after,
ul.products.viella-product-carousel-track::before,
ul.products.viella-product-carousel-track::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
}

.viella-product-carousel-track::-webkit-scrollbar {
    display: none !important;
}

.woocommerce ul.products.viella-product-carousel-track > li.product,
ul.products.viella-product-carousel-track > li.product,
.viella-product-carousel-track > li.product,
.viella-product-carousel-track .viella-product-card {
    flex: 0 0 calc(25% - 18px) !important;
    width: calc(25% - 18px) !important;
    min-width: 270px !important;
    max-width: 320px !important;
    scroll-snap-align: start;
    margin: 0 !important;
    margin-bottom: 0 !important;
    float: none !important;
    display: block !important;
    box-sizing: border-box !important;
}

@media (max-width: 1199px) {
    .woocommerce ul.products.viella-product-carousel-track > li.product,
    ul.products.viella-product-carousel-track > li.product,
    .viella-product-carousel-track > li.product,
    .viella-product-carousel-track .viella-product-card {
        flex: 0 0 calc(33.333% - 16px) !important;
        width: calc(33.333% - 16px) !important;
        min-width: 250px !important;
    }
}

@media (max-width: 768px) {
    .woocommerce ul.products.viella-product-carousel-track > li.product,
    ul.products.viella-product-carousel-track > li.product,
    .viella-product-carousel-track > li.product,
    .viella-product-carousel-track .viella-product-card {
        flex: 0 0 calc(50% - 12px) !important;
        width: calc(50% - 12px) !important;
        min-width: 220px !important;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products.viella-product-carousel-track > li.product,
    ul.products.viella-product-carousel-track > li.product,
    .viella-product-carousel-track > li.product,
    .viella-product-carousel-track .viella-product-card {
        flex: 0 0 85% !important;
        width: 85% !important;
        min-width: 220px !important;
    }
}

/* 4-column Product Grid (For Catalog / Shop) */
.viella-demo-products-grid,
ul.products.columns-4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (min-width: 576px) {
    .viella-demo-products-grid,
    ul.products.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .viella-demo-products-grid,
    ul.products.columns-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.viella-product-card {
    text-align: center;
}

.product-thumb-frame {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
    margin-bottom: 18px;
    border-radius: 2px;
}

.image-aspect-box {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.image-aspect-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.viella-product-card:hover .image-aspect-box img {
    transform: scale(1.06);
}

.viella-sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #ffffff;
    color: var(--viella-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.product-hover-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    transition: bottom 0.3s ease;
}

.viella-product-card:hover .product-hover-actions {
    bottom: 0;
}

.hover-action-btn {
    background-color: #ffffff;
    color: var(--viella-primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: var(--viella-transition);
}

.hover-action-btn:hover {
    background-color: var(--viella-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.product-details .product-title {
    font-family: var(--viella-font-heading);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px 0;
}

.product-details .product-title a {
    color: var(--viella-primary);
}

.product-details .product-price {
    font-family: var(--viella-font-body);
    font-size: 15px;
    color: #666666;
}

.product-details .old-price {
    color: #999999;
    margin-right: 8px;
}

.see-all-wrapper {
    text-align: center;
    margin-top: 55px;
}

.viella-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--viella-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--viella-primary);
    padding: 12px 28px;
    border: 1px solid var(--viella-primary);
    border-radius: 25px;
    transition: var(--viella-transition);
}

.viella-btn-secondary:hover {
    background-color: var(--viella-primary);
    color: #ffffff;
}

/* -------------------------------------------------------------
 * 5. Who We Are / Our Story Section
 * ------------------------------------------------------------- */
.viella-story-section {
    padding: 110px 0;
    background-color: #ffffff;
}

.story-header-title {
    text-align: center;
    margin-bottom: 50px;
}

.story-header-title h2 {
    font-family: var(--viella-font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--viella-primary);
    margin: 0;
}

.story-split-box {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 500px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

@media (min-width: 992px) {
    .story-split-box {
        grid-template-columns: 1fr 1fr;
    }
}

.story-image-side {
    background-size: cover;
    background-position: center;
    min-height: 350px;
}

.story-content-side {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
}

@media (min-width: 768px) {
    .story-content-side {
        padding: 70px 60px;
    }
}

.story-card-inner {
    max-width: 480px;
    text-align: center;
}

.story-card-inner h3 {
    font-family: var(--viella-font-heading);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.story-card-inner h4 {
    font-family: var(--viella-font-body);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: #444444;
    margin-bottom: 20px;
}

.story-card-inner p {
    font-family: var(--viella-font-body);
    font-size: 14px;
    color: var(--viella-text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.story-btn {
    border-radius: 25px;
    padding: 12px 32px;
}

/* -------------------------------------------------------------
 * 6. Four Features Proposition Bar
 * ------------------------------------------------------------- */
.viella-features-bar {
    padding: 80px 0 60px;
    background-color: #fafbfc;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}

@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-item {
    text-align: center;
    padding: 15px;
}

.feature-icon {
    margin-bottom: 18px;
    color: var(--viella-primary);
}

.feature-item h4 {
    font-family: var(--viella-font-heading);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--viella-primary);
}

.feature-item p {
    font-family: var(--viella-font-body);
    font-size: 14px;
    color: var(--viella-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* -------------------------------------------------------------
 * 7. Promotional 3-Column Banner
 * ------------------------------------------------------------- */
.viella-promo-banner-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.promo-banner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    .promo-banner-grid {
        grid-template-columns: 1fr 1.2fr 1fr;
    }
}

.promo-image-column {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.promo-highlight-card {
    background-color: var(--viella-bg-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    text-align: center;
    border-radius: 4px;
}

.promo-card-content .discount-title {
    font-family: var(--viella-font-heading);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    color: var(--viella-primary);
}

.promo-card-content .discount-sub {
    font-family: var(--viella-font-body);
    font-size: 15px;
    color: #444444;
    margin-bottom: 25px;
}

.promo-btn {
    background-color: var(--viella-primary);
    color: #ffffff;
    border-radius: 25px;
    padding: 12px 30px;
}

/* -------------------------------------------------------------
 * 8. Page Header (Subheader)
 * ------------------------------------------------------------- */
.viella-page-header {
    background-color: var(--viella-bg-soft);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
}

.viella-page-header .page-title {
    font-family: var(--viella-font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--viella-primary);
    margin: 0;
}

/* -------------------------------------------------------------
 * 9. Search Modal & Mobile Drawer
 * ------------------------------------------------------------- */
.viella-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.viella-search-modal.is-active {
    display: flex;
}

.search-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.search-modal-box {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 650px;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.search-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #666666;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--viella-primary);
    padding-bottom: 10px;
    gap: 15px;
}

.search-field {
    border: none;
    outline: none;
    font-size: 20px;
    font-family: var(--viella-font-heading);
    width: 100%;
    color: var(--viella-primary);
}

/* Mobile Slide Drawer */
.viella-side-slide {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 99998;
    display: none;
}

.viella-side-slide.is-open {
    display: block;
}

.side-slide-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.side-slide-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    padding: 30px 25px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.side-slide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.side-slide-title {
    font-family: var(--viella-font-heading);
    font-size: 20px;
    font-weight: 700;
}

.side-slide-close {
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-items li a {
    display: block;
    padding: 12px 0;
    font-family: var(--viella-font-heading);
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f8f8f8;
}

.side-slide-contact {
    margin-top: auto;
    padding-top: 30px;
    font-size: 13px;
    color: var(--viella-text-muted);
}

/* -------------------------------------------------------------
 * 10. Footer (BeClothing 2 Style)
 * ------------------------------------------------------------- */
.viella-footer {
    background-color: #ffffff;
    border-top: 1px solid #eeeeee;
    padding-top: 80px;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 576px) {
    .footer-columns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-columns-grid {
        grid-template-columns: 1.3fr 1fr 1fr 1fr;
    }
}

.footer-column .widget-title {
    font-family: var(--viella-font-heading);
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--viella-primary);
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-contacts p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 14px;
    color: var(--viella-text-muted);
}

.footer-payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
}

.pay-badge {
    border: 1px solid #e0e0e0;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    color: #666666;
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: var(--viella-text-muted);
}

.footer-links li a:hover {
    color: var(--viella-primary);
    padding-left: 4px;
}

.footer_copy {
    border-top: 1px solid #f0f0f0;
    padding: 25px 0;
    font-size: 13px;
    color: var(--viella-text-muted);
}

.footer-copy-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-copy-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.social-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.social-menu li a {
    color: var(--viella-text-muted);
}

.social-menu li a:hover {
    color: var(--viella-primary);
}

/* Back to Top */
#back_to_top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background-color: var(--viella-primary);
    color: #ffffff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 99;
    transition: var(--viella-transition);
}

#back_to_top.is-visible {
    display: flex;
}

#back_to_top:hover {
    background-color: #333333;
    transform: translateY(-3px);
}

/* ==========================================================================
   Product Card Circular Hover Action Buttons (BeClothing 2 Style)
   ========================================================================== */
.product-hover-actions {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translate(-50%, 15px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
    width: auto;
}

.viella-product-card:hover .product-hover-actions,
.product-thumb-frame:hover .product-hover-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

@media (hover: none), (max-width: 768px) {
    .product-hover-actions {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translate(-50%, 0) !important;
        bottom: 10px !important;
    }
}

.hover-action-btn,
.product-hover-actions .hover-action-btn,
.product-hover-actions a.button,
.product-hover-actions button,
.woocommerce ul.products li.product a.button.add_to_cart_button,
.woocommerce ul.products li.product a.button.ajax_add_to_cart,
.woocommerce ul.products li.product .viella-round-cart-btn {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    border-radius: 50% !important; /* STRICT CIRCULAR ROUND BUTTON */
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    color: #111111 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14) !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-decoration: none !important;
    line-height: 1 !important;
    position: relative !important;
    overflow: hidden !important;
    vertical-align: middle !important;
    font-size: 0 !important;
}

.hover-action-btn:hover,
.product-hover-actions .hover-action-btn:hover,
.product-hover-actions a.button:hover,
.product-hover-actions button:hover,
.woocommerce ul.products li.product a.button.add_to_cart_button:hover,
.woocommerce ul.products li.product a.button.ajax_add_to_cart:hover,
.woocommerce ul.products li.product .viella-round-cart-btn:hover {
    background: #111111 !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.06) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
}

.hover-action-btn svg,
.product-hover-actions a.button svg,
.woocommerce ul.products li.product a.button svg,
.viella-round-cart-btn svg,
svg.cart-btn-icon {
    width: 18px !important;
    height: 18px !important;
    stroke: currentColor !important;
    fill: none !important;
    display: block !important;
    margin: auto !important;
    pointer-events: none !important;
}

.product-hover-actions a.button span.screen-reader-text,
.woocommerce ul.products li.product a.button span.screen-reader-text,
.viella-round-cart-btn span.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

/* -------------------------------------------------------------
 * 12. About Us & Contact Pages Styles (BeClothing 2 Luxury)
 * ------------------------------------------------------------- */
.viella-page-title-banner {
    padding: 70px 0 50px;
    background: #f7f9fa;
    border-bottom: 1px solid #eeeeee;
    text-align: center;
}

.sub-breadcrumb {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 12px;
    display: inline-block;
}

.sub-breadcrumb a {
    color: #444444;
    text-decoration: none;
}

.sub-breadcrumb a:hover {
    color: #111111;
}

.page-main-title {
    font-family: var(--viella-font-heading);
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 300;
    letter-spacing: -1px;
    color: #111111;
    margin: 0 0 14px;
}

.page-title-desc {
    font-size: 16px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

/* Milestone Counters */
.viella-milestones-section {
    padding: 90px 0;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .milestones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .milestones-grid {
        grid-template-columns: 1fr;
    }
}

.milestone-box {
    text-align: center;
    padding: 20px;
}

.milestone-number {
    font-family: var(--viella-font-heading);
    font-size: 56px;
    font-weight: 300;
    color: #111111;
    display: block;
    line-height: 1;
    margin-bottom: 16px;
}

.milestone-title {
    font-family: var(--viella-font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 10px;
}

.milestone-box p {
    font-size: 14px;
    color: #777777;
    margin: 0;
    line-height: 1.6;
}

/* Brand Values Section */
.viella-values-section {
    padding: 100px 0;
    background: #fbfbfc;
}

.section-heading-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading-center .sub-tagline {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888888;
    display: block;
    margin-bottom: 8px;
}

.section-heading-center .main-heading {
    font-family: var(--viella-font-heading);
    font-size: 40px;
    font-weight: 400;
    color: #111111;
    margin: 0;
}

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

@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #eeeeee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.value-num {
    font-family: var(--viella-font-heading);
    font-size: 32px;
    font-weight: 300;
    color: #999999;
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: var(--viella-font-heading);
    font-size: 22px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

/* Contact Page Split Section */
.viella-contact-main-section {
    padding: 100px 0;
    background: #ffffff;
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 70px;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.contact-info-card .sub-tagline {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888888;
    display: block;
    margin-bottom: 8px;
}

.contact-info-card .contact-heading {
    font-family: var(--viella-font-heading);
    font-size: 36px;
    font-weight: 400;
    color: #111111;
    margin: 0 0 20px;
    line-height: 1.2;
}

.contact-info-card .contact-intro {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.info-block {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f7f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    flex-shrink: 0;
}

.info-content h5 {
    font-family: var(--viella-font-heading);
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    margin: 0 0 6px;
}

.info-content p {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

.info-content p a {
    color: #111111;
    font-weight: 500;
    text-decoration: none;
}

/* Styled Form Card */
.contact-form-card {
    background: #fbfbfc;
    border: 1px solid #eeeeee;
    padding: 45px 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.contact-form-card h3 {
    font-family: var(--viella-font-heading);
    font-size: 26px;
    font-weight: 600;
    color: #111111;
    margin: 0 0 10px;
}

.contact-form-card .form-desc {
    font-size: 14px;
    color: #666666;
    margin-bottom: 30px;
}

.viella-styled-form .form-group {
    margin-bottom: 20px;
}

.viella-styled-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.viella-styled-form input[type="text"],
.viella-styled-form input[type="email"],
.viella-styled-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 3px;
    font-size: 14px;
    color: #111111;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    box-sizing: border-box;
}

.viella-styled-form input[type="text"]:focus,
.viella-styled-form input[type="email"]:focus,
.viella-styled-form textarea:focus {
    border-color: #111111;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 575px) {
    .form-row-split {
        grid-template-columns: 1fr;
    }
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    border-radius: 3px;
    margin-top: 10px;
}

/* FAQ Accordion */
.viella-faq-section {
    padding: 80px 0 100px;
    background: #f7f9fa;
    border-top: 1px solid #eeeeee;
}

.faq-accordion-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    margin-bottom: 16px;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq-item[open] {
    border-color: #111111;
}

.faq-question {
    padding: 22px 26px;
    font-family: var(--viella-font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question svg {
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 26px 24px;
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

