/* =================================
    Author  : Vastraa Theme
    Version : 1.0
================================== */

/* ==========================================================================
   CSS TABLE OF CONTENTS
   ==========================================================================
   01. Variables & Global Reset
   02. Typography & Core Layout
   03. Header, Announcements & Sticky State
   04. Navigation Menu & Megamenu
   05. Hero Slider (Swiper Styles)
   06. Promo Banners & Categories Grid
   07. Product Grid, Badges & Quick View
   08. Blog List & Single Post Layout
   09. Checkout, Multi-step Form & Payment Options
   10. Cart, Order Confirmation & Steppers
   11. Account Dashboard & Sidebar Navigation
   12. Testimonials & Slider
   13. Footer & Social Elements
   14. Utility Classes & Responsive Utilities
   ========================================================================== */

@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&display=swap");

/* ===================================
Root Variables
=================================== */

:root {
    --primary-color: #ec0e4d;
    --secondary-color: #000000;
    --dark-color: #000000;
    --text-color: #000000;
    --white-color: #ffffff;
    --bg-color: #F6F3F0;
    --light-gray: #f9f7f4;
    --border-gray: #e7e7e7;
    --heading-font: "Jost", sans-serif;
    --body-font: "Poppins", sans-serif;
    --transition: all 0.3s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-color: #e7e7e7;
    --footer-bg: #1a1a1a;
    --scrollbar-track: #f1f1f1;
    --border-btn-color: #808080;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background: var(--white-color);
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

/* =========================
Theme scrollbar
========================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--scrollbar-track);
}

.overflow-wrapper {
    width: 100%;
    overflow-x: clip;
    position: relative;
}

.header {
    isolation: isolate;
}

.container {
    width: 90% !important;
    max-width: 1680px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* =================================
    Pre-loader
================================== */
.vastraa-loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-logo img {
    height: 70px;
    object-fit: contain;
}

.loader-progress-bar {
    width: 200px;
    height: 3px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--primary-color);
    animation: progressFill 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.loader-text {
    font-family: var(--body-font);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
}

@keyframes progressFill {
    0% {
        width: 0;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

.vastraa-loader.loaded {
    transform: translateY(-100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--dark-color);
}

.site-title,
.section-title,
.product-title,
.btn,
.navbar a {
    font-family: var(--heading-font);
}

/*** Section Styles ***/
section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
}

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-family: var(--heading-font);
    font-size: 50px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.section-description {
    font-family: var(--body-font);
    color: var(--text-color);
    margin: 0 auto;
}

.eyebrow {
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: inline-block;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    margin-right: 12px;
    vertical-align: middle;
}

/* =========================
    Breadcrumb Section
========================= */
.breadcrumb-section-premium {
    position: relative;
    padding: 50px 0;
    background-color: var(--primary-color);
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.bc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 3;
}

.bc-content .eyebrow {
    margin-bottom: 15px;
    color: var(--white-color);
}

.bc-content .eyebrow::before {
    background: linear-gradient(90deg, var(--white-color), transparent);
}

.bc-content .page-title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white-color);
}

.bc-content .page-title span.text-highlight {
    background: var(--secondary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bc-subtitle {
    color: var(--white-color);
}

.bc-nav-box {
    justify-self: end;
    padding: 20px 40px;
}

.breadcrumb-list-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bc-item {
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
}

.bc-item a {
    color: var(--secondary-color);
    transition: var(--transition-smooth);
}

.bc-item a:hover {
    color: var(--secondary-color);
}

.bc-item+.bc-item::before {
    content: '/';
    margin-right: 15px;
    color: var(--border-color);
    font-weight: 300;
}

.bc-item.active {
    color: var(--white-color);
}

/*** Button Styles ***/
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
    padding: 16px 30px;
    border-radius: 0;
    background: var(--white-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    line-height: 1;
    text-align: center;
}

.btn-primary::before {
    content: "";
    background-color: var(--primary-color);
    width: 0;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.btn-primary::after {
    content: "";
    background-color: var(--primary-color);
    width: 0;
    height: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.btn-primary i {
    margin-left: 10px;
}

.btn-primary.theme-btn2 {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary.theme-btn3 {
    background-color: var(--white-color);
}

.btn-primary.theme-btn3:hover {
    color: var(--white-color);
}

.btn-primary.theme-btn4 {
    background-color: var(--primary-color);
}

.btn-primary.hover-white::before,
.btn-primary.hover-white::after {
    background-color: var(--white-color);
}

.btn-primary.hover-white:hover {
    color: var(--dark-color);
}

.btn-primary.border-btn {
    background: transparent;
    border: 1px solid var(--border-btn-color);
}

.btn-primary.border-btn::before,
.btn-primary.border-btn::after {
    background-color: var(--primary-color);
}

.btn-primary.border-btn:hover {
    border: 1px solid var(--primary-color);
    color: var(--dark-color);
}

.btn-primary.border-btn2 {
    background: transparent;
    border: 1px solid var(--primary-color);
}

.btn-primary.border-btn2::before,
.btn-primary.border-btn2::after {
    background-color: var(--primary-color);
}

.btn-primary.border-btn2:hover {
    border: 1px solid var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    color: var(--white-color);
}

.btn-primary:hover::before,
.btn-primary:hover::after {
    width: 100%;
}

.btn-primary.hover-black::before,
.btn-primary.hover-black::after {
    background-color: var(--secondary-color) !important;
}

.btn-primary.hover-black:hover {
    color: var(--white-color) !important;
    border-color: var(--secondary-color) !important;
}

@keyframes slideRight {
    49% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes slideUp {
    49% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

/* ====================
Top announcement bar
======================= */
.announcement-bar-wrap {
    overflow: hidden;
    background: var(--primary-color);
    padding: 8px 0;
}

.announcement-bar-track {
    display: flex;
    gap: 80px;
    animation: announcement-bar-scroll 30s linear infinite;
    width: max-content;
}

.announcement-bar-item {
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white-color);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 80px;
}

.announcement-bar-item::after {
    content: '';
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg,
            transparent 0%,
            var(--white-color) 50%,
            transparent 100%);
    flex-shrink: 0;
}

@keyframes announcement-bar-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.text-highlight {
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================
Header 
========================= */
.header {
    background: var(--white-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    overflow: visible;
}

/* Header top row */
.header-top-row {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    background: var(--light-gray);
    overflow: visible;
    max-height: 120px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: max-height, opacity, transform;
    backface-visibility: hidden;
    position: relative;
    z-index: 100;
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header-top-inner .top-left,
.header-top-inner .top-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-top-inner .top-right {
    justify-content: flex-end;
    gap: 15px;
    position: relative;
    z-index: 10;
}

.header-top-inner .top-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-weight: 500;
}

.header-top-inner .top-link i {
    font-size: 16px;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.header-top-inner .top-link:hover {
    color: var(--primary-color);
}

.header-top-inner .top-link:hover i {
    transform: scale(1.2);
}

.divider-vertical {
    width: 1px;
    height: 18px;
    background: var(--border-color);
}

/* Header main navbar row */
.navbar-main-row {
    padding: 12px 0;
    background: var(--white-color);
    transition: padding 0.35s ease;
    overflow: visible;
    position: relative;
    z-index: 50;
}

.header.is-compact .header-top-row {
    max-height: 0;
    opacity: 0;
    transform: translateY(-20px);
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-color: transparent;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.is-compact .navbar-main-row {
    padding: 8px 0;
}

.header.is-compact .brand-logo img {
    height: 54px;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Header logo */
.brand-logo {
    flex-shrink: 0;
}

.brand-logo img {
    height: 60px;
    object-fit: contain;
    transition: var(--transition);
}

.brand-logo:hover img {
    opacity: 0.85;
}

/* Search Wrapper Container */
.search-wrapper {
    flex: 0 0 auto;
    max-width: 350px;
    width: 350px;
    position: relative;
    z-index: 100;
}

/* Main Search Box */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-color);
    border: 1.5px solid var(--border-color);
    border-radius: 50px;
    padding: 12px 20px;
    transition: var(--transition-smooth);
    cursor: text;
}

.search-box:hover {
    border-color: var(--primary-color);
    background: var(--white-color);
    box-shadow: 0 4px 16px rgba(236, 14, 77, 0.12);
}

.search-box:focus-within {
    border-color: var(--primary-color);
    background: var(--white-color);
    box-shadow: 0 6px 20px rgba(236, 14, 77, 0.15);
}

/* Search Icon */
.search-icon {
    color: var(--primary-color);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    margin-right: 8px;
}

.search-box:hover .search-icon {
    color: var(--secondary-color);
}

/* Search Input Field */
.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-color);
    font-size: 14px;
    font-family: var(--body-font);
    font-weight: 400;
    padding: 0;
    min-width: 0;
}

.search-input::placeholder {
    font-family: var(--body-font);
    color: #999;
    font-weight: 400;
}

/* Clear Search Button */
.search-clear-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    margin-left: 8px;
    transition: var(--transition);
    display: none;
    flex-shrink: 0;
}

.search-clear-btn:hover {
    color: var(--primary-color);
}

.search-input:not(:placeholder-shown)~.search-clear-btn {
    display: block;
}

/* Header action buttons */
.action-btn {
    position: relative;
    background: var(--white-color);
    border: 1.5px solid var(--border-color);
    color: var(--primary-color);
    cursor: pointer;
    font-size: 17px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    flex-shrink: 0;
}

.action-btn i {
    transition: var(--transition);
    line-height: 1;
}

.action-btn:hover {
    color: var(--white-color);
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Badge Counter */
.badge-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    border: 2px solid var(--white-color);
    pointer-events: none;
}

.action-btn:hover .badge-count {
    background: var(--secondary-color);
    border-color: var(--primary-color);
}

/* language & currency buttons */
.top-select-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--white-color);
    border: 1.5px solid var(--border-color);
    border-radius: 50px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.top-select-btn i {
    font-size: 13px;
    color: var(--primary-color);
    transition: var(--transition);
}

.top-select-btn:hover,
.top-select-btn[aria-expanded="true"] {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(236, 14, 77, 0.06);
}

.top-select-btn::after {
    border: none !important;
    content: '\f078';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    font-size: 9px;
    margin-left: 2px;
    color: #aaa;
    transition: var(--transition);
}

.top-select-btn[aria-expanded="true"]::after {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.top-select-dropdown {
    min-width: 180px !important;
    padding: 6px 0 !important;
    top: calc(100% + 8px) !important;
    bottom: auto !important;
    margin-top: 0 !important;
    position: absolute !important;
    left: auto !important;
    right: 0 !important;
}

.top-select-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px !important;
    padding: 9px 16px !important;
}

.top-select-dropdown .dropdown-item.active {
    background: rgba(236, 14, 77, 0.08) !important;
    color: var(--primary-color) !important;
}

.top-select-dropdown .dropdown-item:hover {
    padding-left: 20px !important;
}

.lang-flag {
    font-size: 16px;
    line-height: 1;
}

.currency-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(236, 14, 77, 0.12);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* NAVIGATION MENU */
.nav-menu-desktop {
    align-items: center;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* DROPDOWN MENU  */
.nav-item.dropdown {
    position: relative;
    z-index: 1001;
}

.dropdown-menu {
    background: var(--white-color) !important;
    border: 1px solid var(--border-color) !important;
    z-index: 9999;
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 0 !important;
    top: 100% !important;
    min-width: 220px;
    left: 0 !important;
    right: auto !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition-smooth);
    pointer-events: none;
    will-change: opacity, transform;
    position: absolute;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.dropdown-item {
    font-family: var(--body-font);
    color: var(--text-color) !important;
    padding: 10px 24px !important;
    transition: var(--transition);
    position: relative;
    font-weight: 500;
    font-size: 14px;
}

.dropdown-item:hover {
    background: var(--light-gray) !important;
    color: var(--primary-color) !important;
    padding-left: 29px !important;
}

.dropdown-item i {
    margin-right: 8px;
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 16px;
}

.dropdown-divider {
    background: var(--border-color) !important;
    margin: 8px 0;
    opacity: 1;
}

/* MOBILE MENU */
.mobile-menu-wrap {
    padding: 16px;
    border-top: 1px solid var(--border-color);
    background: var(--white-color);
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu .nav-item {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-menu .nav-link {
    padding: 12px 0 !important;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-menu .nav-item:last-child {
    border: none;
}

.mobile-sub-menu {
    list-style: none;
    padding: 4px 0 8px 16px;
    margin: 0;
}

.mobile-sub-menu li a {
    font-family: var(--body-font);
    display: block;
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    transition: var(--transition);
}

.mobile-sub-menu li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.mobile-sub-menu li a i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 13px;
}

.btn-reset {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--body-font);
    color: var(--text-color) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 12px 20px !important;
    transition: var(--transition);
    position: relative;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.navbar-menu>.nav-item:not(.dropdown)>.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transition: var(--transition);
}

.navbar-menu>.nav-item:not(.dropdown)>.nav-link:hover::after,
.navbar-menu>.nav-item:not(.dropdown)>.nav-link.active::after {
    width: 30px;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

/* MOBILE TOGGLE */
.navbar-toggler {
    border: 1px solid var(--border-color) !important;
    border-radius: 6px;
    padding: 8px 12px;
    transition: var(--transition);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ec0e4d' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* DROPDOWN TOGGLE ICON */
.dropdown-toggle::after {
    border: none !important;
    content: '\f078';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    font-size: 10px;
    margin-left: 6px;
    transition: var(--transition);
    color: var(--primary-color);
    vertical-align: middle;
}

.action-btn.dropdown-toggle::after {
    display: none !important;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* ==========================
Back to top button
============================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--white-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top i {
    font-size: 18px;
    transition: var(--transition);
    z-index: 2;
}

.back-to-top:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.progress-circle {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.progress-circle path {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 4;
    box-sizing: border-box;
    transition: var(--transition);
    stroke-dasharray: 307.919;
    stroke-dashoffset: 307.919;
}

.back-to-top:hover .progress-circle path {
    stroke: var(--white-color);
}

/* ==========================
FOOTER SECTION 
============================ */
.footer-section {
    background-color: var(--secondary-color);
    padding: 100px 0 0;
    color: #a1a1a1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand-logo img {
    height: 90px;
    margin-bottom: 10px;
}

.footer-brand-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.social-icon-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    border-radius: 4px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    color: var(--white-color) !important;
}

.footer-col-title {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-col-list {
    list-style: none;
    padding: 0;
}

.footer-col-list li {
    margin-bottom: 15px;
}

.footer-col-list a {
    color: #a1a1a1;
    font-size: 14px;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-col-list a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

/* Contact Info */
.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact-item a {
    color: #a1a1a1;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--white-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.397);
    padding: 30px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-copyright p {
    font-size: 13px;
    margin: 0;
}

.footer-payment-methods {
    display: flex;
    align-items: center;
}

.payment-img {
    height: 25px;
    opacity: 0.6;
    transition: 0.3s;
}

.payment-img:hover {
    opacity: 1;
}

.footer-legal-links {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 0;
    margin: 0;
}

.footer-legal-links a {
    font-size: 13px;
    color: #666;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--white-color);
}

/* =================================
    Slider Section
================================== */
.slider-section {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    min-height: 640px;
    height: min(100vh, 840px);
    background: var(--bg-color);
    overflow: hidden;
    padding: 0;
}

.slider-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 18%, rgba(236, 14, 77, 0.22) 0%, rgba(236, 14, 77, 0) 55%);
    pointer-events: none;
    z-index: 1;
}

.slider-section .swiper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
}

.slider-section .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.slider-section .slide-background {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.06);
    transition: transform 6s ease, filter 1s ease;
    filter: saturate(1.08) contrast(1.04);
}

.slider-section .swiper-slide-active .slide-background {
    transform: scale(1);
}

.slider-section .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.53) 48%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
}

.slide-watch .slide-background {
    background-image: url("../images/slider/slide1.jpg");
}

.slide-handbag .slide-background {
    background-image: url("../images/slider/slide2.jpg");
}

.slide-perfume .slide-background {
    background-image: url("../images/slider/slide3.jpg");
}

.slider-section .slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 4;
    display: flex;
    align-items: center;
    padding: 140px 7vw 95px;
}

.slider-section .content-left {
    max-width: 650px;
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    opacity: 0;
}

.slider-section .eyebrow {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 10px;
}

.slider-section .eyebrow::before {
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.slider-section .content-title {
    font-family: var(--heading-font);
    font-size: 84px;
    font-weight: 700;
    line-height: 1.04;
    margin-bottom: 18px;
    color: var(--white-color);
    word-break: break-word;
    overflow-wrap: break-word;
}

.slider-section .content-description {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 30px;
    font-weight: 400;
    max-width: 560px;
    opacity: 0;
}

.slider-section .content-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
}

.slider-section .content-cta .btn-primary {
    min-width: 190px;
    padding: 15px 32px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white-color);
}

.slider-section .content-cta .btn-primary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.slider-section .btn-link-minimal {
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.slider-section .btn-link-minimal::after {
    content: '';
    width: 30px;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.slider-section .btn-link-minimal:hover {
    color: var(--primary-color);
}

.slider-section .btn-link-minimal:hover::after {
    width: 44px;
}

.slider-section .swiper-slide-active .content-left {
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s forwards;
}

.slider-section .swiper-slide-active .content-description {
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.45s forwards;
}

.slider-section .swiper-slide-active .content-cta {
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.65s forwards;
}

/* NAVIGATION & CONTROLS */
.slider-section .swiper-button-prev,
.slider-section .swiper-button-next {
    width: 54px;
    height: 54px;
    top: 50% !important;
    margin-top: -27px !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--white-color);
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.slider-section .swiper-button-prev {
    left: 24px !important;
}

.slider-section .swiper-button-next {
    right: 24px !important;
}

.slider-section .swiper-button-prev::after,
.slider-section .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}

.slider-section .swiper-button-prev:hover,
.slider-section .swiper-button-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.slider-section .swiper-pagination {
    bottom: 30px !important;
    z-index: 20;
}

.slider-section .swiper-pagination-bullet {
    width: 28px;
    height: 4px;
    border-radius: 999px;
    margin: 0 5px !important;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: var(--transition);
}

.slider-section .swiper-pagination-bullet-active {
    width: 44px;
    background: var(--primary-color);
    box-shadow: 0 0 18px rgba(236, 14, 77, 0.45);
}

.slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff7fa6);
    z-index: 25;
    transition: width 0.1s linear;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-background.loading {
    animation: backgroundFade 0.7s ease-out;
}

@keyframes backgroundFade {
    from {
        opacity: 0.45;
    }

    to {
        opacity: 1;
    }
}

.img-hover-zoom {
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.img-hover-zoom:hover {
    transform: scale(1.15) rotate(2deg);
}

.img-hover-zoom-smooth {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-hover-zoom-smooth:hover {
    transform: scale(1.1);
}

/* =================================
    Category Section
================================== */
.category-section {
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.category-section .container {
    position: relative;
    z-index: 1;
}

.vastraa-bento-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 1.25fr;
    gap: 20px;
    height: 620px;
    margin-top: 0;
}

.bento-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bento-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.45s ease, transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.bento-item:hover {
    transform: translateY(-6px) scale(1.012);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22), 0 0 0 2px rgba(236, 14, 77, 0.25);
}

.bento-large {
    height: 100%;
}

.bento-half {
    flex: 1;
    min-height: 0;
}

.bento-img-box {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bento-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.bento-item:hover .bento-img-box img {
    transform: scale(1.1);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.25) 55%,
            transparent 100%);
    padding: 32px;
    display: flex;
    align-items: flex-end;
    z-index: 2;
    transition: background 0.45s ease;
}

.bento-item:hover .bento-overlay {
    background: linear-gradient(to top,
            rgba(236, 14, 77, 0.72) 0%,
            rgba(0, 0, 0, 0.18) 60%,
            transparent 100%);
}

.bento-text {
    width: 100%;
}

.bento-badge {
    display: inline-block;
    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 700;
    color: var(--white-color);
    background: var(--primary-color);
    padding: 5px 13px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.4s ease 0.05s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s;
}

.bento-item:hover .bento-badge {
    opacity: 1;
    transform: translateY(0);
}

.bento-title {
    font-family: var(--heading-font);
    font-size: 34px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 8px;
    line-height: 1.15;
    transform: translateY(8px);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.bento-item:hover .bento-title {
    transform: translateY(0);
}

.bento-title-small {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 10px;
    line-height: 1.2;
    transform: translateY(8px);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.bento-item:hover .bento-title-small {
    transform: translateY(0);
}

.bento-desc {
    font-family: var(--body-font);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s;
    line-height: 1.5;
}

.bento-item:hover .bento-desc {
    opacity: 1;
    transform: translateY(0);
}

.bento-cta {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease 0.15s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
    font-size: 12px !important;
    padding: 12px 24px !important;
}

.bento-item:hover .bento-cta {
    opacity: 1;
    transform: translateY(0);
}

.bento-link {
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s, color 0.25s ease;
}

.bento-item:hover .bento-link {
    opacity: 1;
    transform: translateY(0);
    color: var(--white-color);
}

.bento-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.bento-item:hover .bento-link i {
    transform: translateX(5px);
}

.category-view-all {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

/* =================================
    Best Seller Product Section
================================== */
.best-seller-products-section {
    background: linear-gradient(135deg, var(--white-color) 0%, #fafafa 100%);
}

.products-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.product-card [data-aos] {
    transition-property: transform, opacity;
}

.product-card {
    background: var(--white-color);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s ease, border 0.3s ease;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-media {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
}

.product-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.product-media .main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Product Tags */
.product-tag-new,
.product-tag-sale {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 4px;
    animation: pulse 2s ease-in-out infinite;
}

.product-tag-new {
    background: var(--primary-color);
    color: var(--white-color);
}

.product-tag-sale {
    background: #ff7f00;
    color: var(--white-color);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Floating Actions */
.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 4;
}

.action-btn {
    width: 44px;
    height: 44px;
    background: var(--white-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.action-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 6px 20px rgba(236, 14, 77, 0.3);
    transform: scale(1.15);
}

/* Add to Cart Overlay Button */
.add-to-cart-premium {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100% !important;
    padding: 18px !important;
    border: none !important;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    display: flex;
    justify-content: center;
    border-radius: 0;
}

.product-card:hover .add-to-cart-premium {
    transform: translateY(0);
}

.product-media {
    overflow: hidden;
}

.product-info {
    padding: 20px;
}

.info-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.p-cat {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.p-rating {
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f5f5f5;
    padding: 4px 8px;
    border-radius: 4px;
}

.p-rating i {
    color: #FFB800;
    font-size: 10px;
}

.p-title {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.p-title a {
    color: var(--dark-color);
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.p-price-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.current-price {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 18px;
}

.old-price {
    color: #bbb;
    text-decoration: line-through;
    font-size: 13px;
}

.product-card:hover .main-img {
    transform: scale(1.08);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-card:hover .add-to-cart-overlay {
    transform: translateY(0);
}

.product-card:hover .p-title a {
    color: var(--primary-color);
}

.best-seller-view-all {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.best-seller-view-all .btn-primary,
.best-seller-view-all .border-btn2 {
    padding: 16px 50px;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.best-seller-view-all .btn-primary:hover,
.best-seller-view-all .border-btn2:hover {
    transform: translateY(-3px);
}

/* =================================
    Quick View Model Section
================================== */
.premium-qv-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.premium-qv-modal.show {
    display: flex;
    animation: backdropFadeIn 0.3s ease-out;
}

@keyframes backdropFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.qv-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    animation: backdropBlur 0.4s ease-out;
}

@keyframes backdropBlur {
    from {
        backdrop-filter: blur(0px);
        background: rgba(0, 0, 0, 0);
    }

    to {
        backdrop-filter: blur(6px);
        background: rgba(0, 0, 0, 0.6);
    }
}

.qv-modal-content {
    position: relative;
    width: 95%;
    max-width: 960px;
    background: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
    animation: qvSlideUp 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

@keyframes qvSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.qv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.qv-image-side {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    position: relative;
    overflow: hidden;
}

.qv-image-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(236, 14, 77, 0.05), transparent 70%);
    pointer-events: none;
}

.qv-image-container {
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.qv-image-container img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    animation: imageFloat 0.8s ease-out;
}

@keyframes imageFloat {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.qv-details-side {
    padding: 40px 50px;
    background: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.qv-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary-color);
    font-weight: 800;
    display: inline-block;
    animation: slideDown 0.5s ease-out 0.1s both;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qv-title {
    font-size: 26px;
    margin: 10px 0 14px;
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.25;
    animation: slideDown 0.5s ease-out 0.15s both;
}

.qv-rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    animation: slideDown 0.5s ease-out 0.2s both;
}

.qv-stars {
    display: flex;
    gap: 4px;
}

.qv-stars i {
    color: #FFB800;
    font-size: 13px;
}

.qv-reviews {
    font-size: 12px;
    color: #888;
}

.qv-price-row {
    margin: 14px 0 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideDown 0.5s ease-out 0.25s both;
}

.qv-current-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
}

.qv-old-price {
    font-size: 16px;
    color: #aaa;
    text-decoration: line-through;
}

.qv-desc {
    color: #666;
    line-height: 1.75;
    font-size: 13.5px;
    margin-bottom: 20px;
    animation: slideDown 0.5s ease-out 0.3s both;
    display: block;
    width: 100%;
}

.qv-selection-area {
    animation: slideDown 0.5s ease-out 0.35s both;
    margin-bottom: 18px;
}

.qv-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.qty-stepper {
    display: inline-flex;
    border: 2px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    background: #f9f9f9;
    margin-top: 8px;
}

.qty-stepper button {
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-stepper button:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.qty-stepper input {
    width: 60px;
    border: none;
    border-left: 2px solid #eee;
    border-right: 2px solid #eee;
    background: transparent;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--dark-color);
}

.qty-stepper input:focus {
    outline: none;
}

/* Actions */
.qv-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    animation: slideDown 0.5s ease-out 0.4s both;
}

.qv-actions .btn-primary {
    flex: 1;
    padding: 16px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.qv-actions .btn-primary:hover {
    transform: translateY(-2px);
}

.qv-wishlist-btn {
    width: 55px;
    height: 55px;
    border: 2px solid #eee;
    background: var(--white-color);
    border-radius: 6px;
    font-size: 20px;
    color: var(--dark-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qv-wishlist-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #fff5f8;
    transform: scale(1.08);
}

/* Trust List */
.qv-trust-list {
    list-style: none;
    margin-top: 20px;
    padding: 16px 0;
    border-top: 1px solid #eee;
    animation: slideDown 0.5s ease-out 0.45s both;
}

.qv-trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.qv-trust-list li:last-child {
    margin-bottom: 0;
}

.qv-trust-list i {
    font-size: 16px;
    color: var(--primary-color);
}

/* Close Button */
.qv-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
}

.qv-close-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: rotate(90deg) scale(1.1);
}

/* =================================
    Promo Section
================================== */
.promo-banner-section {
    padding: 60px 0;
    background: var(--white-color);
}

.promo-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.promo-card {
    position: relative;
    height: 380px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    background: #f8f8f8;
}

.promo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.promo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Content Card */
.promo-content {
    position: relative;
    z-index: 2;
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 70%;
    transition: var(--transition-smooth);
}

.promo-eyebrow {
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-title {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

/* Link Animation */
.btn-link-premium {
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-bottom: 5px;
}

.btn-link-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.promo-card:hover .promo-img {
    transform: scale(1.1);
}

.promo-card:hover .btn-link-premium {
    color: var(--primary-color);
}

.promo-card:hover .btn-link-premium::after {
    width: 100%;
}

.promo-card:hover .btn-link-premium i {
    transform: translateX(5px);
}

.btn-link-premium i {
    transition: transform 0.3s ease;
}

/* =================================
    Product Tabbing Section
================================== */
.tabbed-products-section {
    background: var(--light-gray);
}

.product-tabs {
    gap: 30px;
    margin-top: 25px;
}

.product-tabs .nav-item .nav-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color) !important;
    background: transparent !important;
    border: none !important;
    padding: 10px 0 !important;
    position: relative;
    transition: var(--transition-smooth);
}

.product-tabs .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transition: var(--transition-smooth);
}

.product-tabs .nav-item .nav-link.active {
    color: var(--primary-color) !important;
}

.product-tabs .nav-item .nav-link.active::after {
    width: 40px;
}

.product-tabs .nav-item .nav-link:hover {
    color: var(--primary-color) !important;
}

.tab-pane.fade {
    transition: opacity 0.4s linear, transform 0.4s ease-out;
    transform: translateY(10px);
}

.tab-pane.fade.show {
    transform: translateY(0);
}

/* =================================
    Deal of the Day Section
================================== */
.deal-section {
    padding: 0;
    overflow: hidden;
}

.deal-wrapper {
    display: flex;
    min-height: 600px;
}

.deal-image-side {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.deal-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deal-sale-badge {
    position: absolute;
    top: 10%;
    left: 90%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: var(--white-color);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--white-color);
    z-index: 5;
}

.deal-content-side {
    flex: 1;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    padding: 80px;
    position: relative;
}

.deal-title {
    color: var(--white-color);
    font-size: 45px;
    margin: 20px 0;
}

.deal-desc {
    color: #888;
    margin-bottom: 40px;
}

/* Timer Layout */
.countdown-timer {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.timer-item {
    text-align: center;
}

.timer-item span {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--white-color);
    font-family: var(--heading-font);
}

.timer-item small {
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
}

/* Interactive Hotspots */
.hotspot {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(236, 14, 77, 0.7);
    animation: pulseHotspot 2s infinite;
}

@keyframes pulseHotspot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(236, 14, 77, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(236, 14, 77, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(236, 14, 77, 0);
    }
}

.item-1 {
    top: 45%;
    left: 25%;
}

.item-2 {
    top: 18%;
    left: 33%;
}

.item-3 {
    top: 75%;
    left: 50%;
}

/* =================================
   TESTIMONIAL SECTION
================================= */
.testimonial-section {
    padding: 100px 0;
    background: #f8f8f8;
    overflow: hidden;
}

.testimonial-wrapper {
    position: relative;
    width: 100%;
    padding: 0 70px;
}

.testimonial-swiper {
    overflow: hidden;
    width: 100%;
}

.testimonial-swiper .swiper-wrapper {
    align-items: stretch;
}

.testimonial-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 35px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 36px;
    color: var(--primary-color);
    opacity: 0.25;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.85;
    color: #444;
    font-style: italic;
    flex-grow: 1;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-color);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--dark-color);
}

.author-role {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 28px;
    border-radius: 6px;
}

/* =================================
    Newsletter Section
================================== */
.newsletter-premium-section {
    padding: 0;
    background: var(--white-color);
}

.newsletter-inner-wrapper {
    background: var(--white-color);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
}

.newsletter-visual {
    position: relative;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
}

.news-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.newsletter-inner-wrapper:hover .news-bg {
    transform: scale(1.1);
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.discount-circle {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(236, 14, 77, 0.3);
}

.discount-circle strong {
    font-size: 28px;
    line-height: 1;
}

/* Form Content Side */
.newsletter-form-content {
    padding: 60px 80px;
}

.news-title {
    font-size: 38px;
    margin: 15px 0 20px;
    line-height: 1.2;
}

.news-form-premium {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group-custom {
    position: relative;
    width: 100%;
}

.input-group-custom i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.input-group-custom input {
    width: 100%;
    padding: 18px 20px 18px 50px;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 0;
    font-family: var(--body-font);
    transition: var(--transition);
}

.input-group-custom input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.news-privacy {
    margin-top: 25px;
    font-size: 12px;
    color: #999;
}

.news-privacy a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* =================================
    About Page Hero Section
================================== */
.about-elite-section {
    padding: 120px 0;
    background-color: var(--white-color);
    overflow: hidden;
}

.about-elite-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-main-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 25px 0 35px;
    color: var(--secondary-color);
}

.about-lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 480px;
    margin-bottom: 50px;
}

.about-stats-premium {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat-val {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border-color);
}

.about-elite-images {
    position: relative;
    padding-right: 60px;
}

.main-img-frame {
    width: 100%;
    height: 600px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.img-reveal {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.about-elite-images:hover .img-reveal {
    transform: scale(1.08);
}

.sub-img-frame {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 280px;
    height: 350px;
    border: 12px solid var(--white-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    border-radius: 4px;
    overflow: hidden;
}

.sub-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.est-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 6px 15px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.shape-blob {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(236, 14, 77, 0.08) 0%, transparent 70%);
    z-index: -1;
}

/* =================================
    Philosophy Section
================================= */
.philosophy-elite-section {
    background: var(--bg-color);
    overflow: hidden;
}

.philosophy-stack {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.philosophy-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.philosophy-row.row-reverse {
    flex-direction: row-reverse;
}

.philo-image {
    flex: 1.2;
    position: relative;
}

.philo-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.philo-number {
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.80;
    z-index: 1;
    font-family: var(--heading-font);
}

.row-reverse .philo-number {
    left: auto;
    right: 0px;
}

.philo-content {
    flex: 1;
}

.philo-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.philo-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.philo-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.philo-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.philo-features li {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.philo-features i {
    color: var(--primary-color);
    font-size: 14px;
}

/* =================================
    Team Section
================================= */
.about-team-section {
    background-color: var(--light-gray);
}

.team-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--white-color);
    padding: 15px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    text-align: center;
}

.member-img-wrap {
    position: relative;
    height: 380px;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 25px;
}

.member-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glassmorphism Social Reveal */
.member-social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 3;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.member-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.member-info .member-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.member-info .member-role {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 700;
}

/* Team Hover Effects */
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.team-card:hover .member-img-wrap img {
    transform: scale(1.1);
}

.team-card:hover .member-social {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* =================================
    Timeline Section
================================= */
.about-timeline-section {
    background: var(--white-color);
    position: relative;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 80px auto 0;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

/* Shimmering effect for the timeline line */
.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    animation: timelineShimmer 4s linear infinite;
}

@keyframes timelineShimmer {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 60px 20px 0;
    text-align: right;
}

.timeline-item.item-reverse {
    margin-left: 50%;
    padding: 20px 0 20px 60px;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 25px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: var(--white-color);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item.item-reverse .timeline-dot {
    right: auto;
    left: -10px;
}

.timeline-date {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.milestone-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.milestone-text {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
}

.timeline-item:hover .timeline-dot {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(236, 14, 77, 0.4);
}

/* =================================
    Global Presence Section
================================= */
.about-global-section {
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.global-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.global-map-side {
    position: relative;
}

.world-map {
    width: 100%;
    filter: grayscale(1);
}

.map-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(236, 14, 77, 0.5);
    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(236, 14, 77, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(236, 14, 77, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(236, 14, 77, 0);
    }
}

.ny {
    top: 34%;
    left: 30%;
}

.london {
    top: 27%;
    left: 49%;
}

.paris {
    top: 31%;
    left: 52%;
}

.tokyo {
    top: 40%;
    left: 85%;
}

.contact-glass-card {
    background: var(--white-color);
    padding: 60px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    position: relative;
}

.contact-glass-card::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--primary-color);
    border-left: 2px solid var(--primary-color);
    z-index: -1;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.btn-link-premium {
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.btn-link-premium:hover {
    color: var(--primary-color);
}

/* =================================
    Shop Page
================================= */
.shop-page-wrapper {
    padding: 80px 0;
    background: var(--white-color);
}

/* Sidebar Widgets */
.shop-sidebar {
    position: sticky;
}

#product-container.list-view {
    display: block !important;
}

#product-container.list-view>.product-item {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 24px;
}

#product-container.list-view>.product-item:last-child {
    margin-bottom: 0;
}

#product-container.list-view .product-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    min-height: 220px;
    border-radius: 8px;
    overflow: hidden;
}

#product-container.list-view .product-media {
    width: 260px !important;
    min-width: 260px !important;
    max-width: 260px !important;
    flex-shrink: 0 !important;
    aspect-ratio: unset !important;
    height: auto !important;
    border-radius: 0 !important;
}

#product-container.list-view .product-info {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 24px 28px !important;
}

#product-container.list-view .p-title {
    font-size: 17px;
    margin-bottom: 8px;
}

#product-container.list-view .p-desc {
    display: block !important;
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 14px;
}

#product-container.list-view .p-price-row {
    margin-top: 4px;
    margin-bottom: 0;
}

#product-container.list-view .add-to-cart-premium {
    display: none !important;
}

#product-container.list-view .add-to-cart-list {
    display: inline-flex !important;
    width: fit-content !important;
    margin-top: 16px;
}

.widget {
    margin-bottom: 35px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 28px;
}

.widget:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.widget-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 12px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--primary-color);
}

/* Sidebar search */
.widget .input-group-custom input {
    font-size: 13px;
    padding: 12px 16px 12px 44px;
}

/* Custom Checkbox */
.filter-check-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.custom-check {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    color: #555;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.custom-check:hover {
    color: var(--primary-color);
}

.custom-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: #f0f0f0;
    border-radius: 3px;
    border: 1.5px solid #ddd;
    transition: 0.3s;
}

.custom-check:hover input~.checkmark {
    border-color: var(--primary-color);
}

.custom-check input:checked~.checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-check input:checked~.checkmark:after {
    display: block;
}

.custom-check small {
    color: #aaa;
    font-size: 12px;
    margin-left: auto;
    padding-left: 6px;
}

/* Price Range */
.price-range-container {
    padding: 4px 0;
}

.sidebar-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 100%, #e0e0e0 100%);
    outline: none;
    cursor: pointer;
    margin-bottom: 14px;
}

.sidebar-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--white-color);
    box-shadow: 0 0 0 2px var(--primary-color);
    cursor: pointer;
    transition: transform 0.2s;
}

.sidebar-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.sidebar-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--white-color);
    box-shadow: 0 0 0 2px var(--primary-color);
    cursor: pointer;
}

.range-values {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.range-values strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
}

/* Size Filter */
.filter-size-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-btn {
    cursor: pointer;
    position: relative;
}

.size-btn input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.size-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 38px;
    border: 1.5px solid var(--border-color);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #555;
    transition: 0.25s;
    background: var(--white-color);
    letter-spacing: 0.5px;
}

.size-btn:hover span,
.size-btn input:checked~span {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

/* Color Swatches */
.filter-color-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.color-swatch {
    position: relative;
    cursor: pointer;
    display: inline-flex;
}

.color-swatch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.color-dot {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg, #ccc);
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.color-swatch:hover .color-dot {
    transform: scale(1.15);
}

.color-swatch input:checked~.color-dot {
    transform: scale(1.15);
    box-shadow: 0 0 0 2px var(--white-color), 0 0 0 4px var(--primary-color);
}

/* Toolbar & View Buttons */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-gray);
    padding: 14px 22px;
    border-radius: 6px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 12px;
    border: 1px solid var(--border-color);
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.results-count {
    margin: 0;
    font-size: 13px;
    color: #666;
    white-space: nowrap;
}

/* Sort wrapper with label */
.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sort-label i {
    color: var(--primary-color);
    font-size: 14px;
}

.sort-select-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.sorting-select {
    -webkit-appearance: none;
    appearance: none;
    font-size: 13px;
    font-family: var(--body-font);
    font-weight: 500;
    padding: 9px 38px 9px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: 4px;
    background: var(--white-color);
    color: var(--text-color);
    cursor: pointer;
    min-width: 170px;
    transition: border-color 0.25s;
    outline: none;
}

.sorting-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(236, 14, 77, 0.08);
}

.sort-arrow {
    position: absolute;
    right: 12px;
    font-size: 11px;
    color: var(--primary-color);
    pointer-events: none;
    transition: transform 0.25s;
}

.view-toggles {
    display: flex;
    gap: 6px;
}

.view-btn {
    background: var(--white-color);
    border: 1.5px solid var(--border-color);
    width: 38px;
    height: 38px;
    border-radius: 4px;
    color: #999;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.view-btn i {
    pointer-events: none;
    line-height: 1;
}

.view-btn.active,
.view-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

/* Product description — hidden in grid, shown in list */
.p-desc {
    display: none;
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* Add to cart button for list view — hidden in grid */
.add-to-cart-list {
    display: none;
    margin-top: 16px;
}

.product-display-grid.list-view .add-to-cart-premium {
    display: none !important;
}

.product-display-grid.list-view .add-to-cart-list {
    display: inline-flex;
    width: fit-content;
}

.product-display-grid.list-view .p-desc {
    display: block;
}

/* Pagination */
.shop-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.pagination {
    gap: 8px;
    border: none;
}

.pagination .page-link {
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    border: 1px solid var(--border-color);
    font-weight: 700;
    transition: 0.4s;
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.pagination .page-link:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

/* ========================
    Product Details Page
=========================== */
.product-gallery-wrapper {
    position: sticky;
    top: 120px;
}

.product-info-sticky {
    position: sticky;
    top: 120px;
    padding-left: 30px;
}

.detail-header {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.detail-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 8px 0 0;
    line-height: 1.15;
}

.detail-price-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.detail-price-row .current-price {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-color);
}

.detail-price-row .old-price {
    font-size: 17px;
    color: #999;
    text-decoration: line-through;
}

.sale-badge {
    background: #ff7f00;
    color: #fff;
    font-size: 11px;
    padding: 5px 12px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.detail-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* Variant Styles */
.variant-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.size-selector {
    display: flex;
    gap: 10px;
}

.size-btn input {
    display: none;
}

.size-btn span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.size-btn input:checked+span {
    background: var(--secondary-color);
    color: var(--white-color);
    border-color: var(--secondary-color);
}

/* Detail Actions */
.detail-actions {
    flex-wrap: wrap;
    gap: 14px !important;
}

/* Gallery Thumbs */
.thumb-item {
    border: 2px solid var(--border-color);
    padding: 4px;
    background: var(--white-color);
    transition: var(--transition-smooth);
    border-radius: 6px;
    cursor: pointer;
    overflow: hidden;
}

.thumb-item.active,
.thumb-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(236, 14, 77, 0.18);
}

.main-image-box {
    border-radius: 10px;
    overflow: hidden;
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    position: relative;
}

.main-image-box .main-display {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.main-image-box:hover .main-display {
    transform: scale(1.03);
}

.thumb-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
    transition: 0.3s;
}

.thumb-item:hover img {
    opacity: 0.85;
}

/* Trust Items */
.detail-trust-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

.trust-item i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

/* ========================
    Product Specs / Tabs Section
=========================== */
.product-specs-section {
    background: var(--light-gray);
}

.specs-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.product-tabs.nav-tabs {
    gap: 0;
    margin-bottom: 0;
}

.product-tabs .nav-item .nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #666 !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    padding: 12px 28px !important;
    margin-bottom: -2px;
    position: relative;
    transition: var(--transition-smooth);
    letter-spacing: 0.3px;
}

.product-tabs .nav-item .nav-link:hover {
    color: var(--primary-color) !important;
}

.product-tabs .nav-item .nav-link.active {
    color: var(--primary-color) !important;
    border-bottom-color: var(--primary-color) !important;
    font-weight: 700;
}

.product-tabs .nav-item .nav-link::after {
    display: none;
}

.tab-content.pt-5 {
    padding-top: 40px !important;
}

/* Description tab */
#desc h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

#desc p {
    font-size: 14px;
    line-height: 1.85;
    color: #555;
}

#desc .img-fluid.rounded {
    border-radius: 8px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Additional Info table */
.product-specs-section .table {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    font-size: 14px;
}

.product-specs-section .table th {
    background: var(--white-color);
    font-weight: 700;
    color: var(--secondary-color);
    width: 35%;
    padding: 14px 20px;
    border-color: var(--border-color);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.product-specs-section .table td {
    padding: 14px 20px;
    color: #555;
    border-color: var(--border-color);
}

.product-specs-section .table tr:last-child th,
.product-specs-section .table tr:last-child td {
    border-bottom: none;
}

/* Reviews tab */
.reviews-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 36px;
    align-items: start;
}

.reviews-summary {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    position: sticky;
    top: 120px;
}

.rating-score {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
}

.score-big {
    display: block;
    font-size: 52px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--heading-font);
}

.score-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 8px;
}

.score-stars i {
    color: #FFB800;
    font-size: 15px;
}

.score-count {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bar-label {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    width: 30px;
    flex-shrink: 0;
    text-align: right;
    white-space: nowrap;
}

.bar-label i {
    color: #FFB800;
    font-size: 10px;
}

.bar-track {
    flex: 1;
    height: 6px;
    background: #f0f0f0;
    border-radius: 99px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 99px;
}

.bar-pct {
    font-size: 11px;
    color: #999;
    width: 28px;
    flex-shrink: 0;
    text-align: left;
}

.review-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.review-card {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 22px 24px;
    transition: box-shadow 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--border-color);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.review-date {
    font-size: 11px;
    color: #aaa;
}

.review-stars i {
    color: #FFB800;
    font-size: 12px;
}

.review-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    font-style: italic;
}

/* ========================
    Wishlist Page
=========================== */
.table-responsive {
    overflow-x: auto;
}

.wishlist-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.wishlist-table thead th {
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.wishlist-item {
    background: var(--white-color);
    transition: var(--transition-smooth);
}

.wishlist-item td {
    padding: 25px 20px;
    vertical-align: middle;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.wishlist-item td:first-child {
    border-left: 1px solid var(--border-color);
    border-radius: 8px 0 0 8px;
}

.wishlist-item td:last-child {
    border-right: 1px solid var(--border-color);
    border-radius: 0 8px 8px 0;
}

.wishlist-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

/* Remove Button */
.btn-remove {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
}

.btn-remove:hover {
    background: #ffeded;
    color: #ff4d4d;
    border-color: #ffcccc;
}

/* Product Info in Table */
.product-thumbnail img {
    width: 90px;
    height: 110px;
    object-fit: cover;
    border-radius: 4px;
}

.product-name a {
    display: block;
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 5px;
    transition: 0.3s;
}

.product-name a:hover {
    color: var(--primary-color);
}

/* Stock Status */
.stock-status {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stock-status.in-stock {
    color: #2ecc71;
}

.stock-status.out-of-stock {
    color: #e74c3c;
}

/* Share Links */
.social-share-wishlist {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-weight: 700;
    font-size: 13px;
    color: var(--secondary-color);
}

.share-links {
    display: flex;
    gap: 10px;
}

.share-links a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 14px;
    color: #888;
    transition: 0.3s;
}

.share-links a:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

/* ==========================
    Cart Page
============================= */
.cart-page-section {
    padding: 100px 0;
    background: var(--white-color);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table thead th {
    padding: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-color);
    color: var(--secondary-color);
}

.cart-item td {
    padding: 30px 20px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.item-meta {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
    display: flex;
    gap: 15px;
}

/* Sticky Summary Column */
.order-summary-sticky {
    position: sticky;
    top: 120px;
    background: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.summary-title {
    font-size: 22px;
    letter-spacing: -0.5px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
}

.total-row {
    font-size: 18px;
    color: var(--secondary-color);
}

.total-amount {
    font-size: 24px;
    font-weight: 800;
}

/* ===================================
Checkout Page 
=================================== */
.checkout-header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #f0ede9;
}

.checkout-step-title {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.checkout-step-subtitle {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
}

/* Form Section */
.checkout-form {
    background: var(--white-color);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.form-section {
    margin-bottom: 32px;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section-divider {
    height: 1px;
    background: #f0ede9;
    margin: 32px 0;
}

.form-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.form-section-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(236, 14, 77, 0.08);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 14px;
}

/* Input Group */
.checkout-page-section .input-group-custom {
    margin-bottom: 24px;
}

.checkout-page-section .input-group-custom label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-page-section .input-group-custom input,
.checkout-page-section .input-group-custom select,
.checkout-page-section .input-group-custom textarea {
    width: 100%;
    padding: 16px 24px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 15px;
    color: var(--text-color);
    transition: all 0.2s ease;
    background: var(--white-color);
}

.checkout-page-section .input-group-custom input:hover,
.checkout-page-section .input-group-custom select:hover,
.checkout-page-section .input-group-custom textarea:hover {
    border-color: #e0dcd8;
}

.checkout-page-section .input-group-custom input:focus,
.checkout-page-section .input-group-custom select:focus,
.checkout-page-section .input-group-custom textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(236, 14, 77, 0.08);
}

.checkout-page-section .input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Payment Methods */
.payment-methods-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.payment-selector-box {
    position: relative;
    display: flex;
    align-items: center;
    padding: 24px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    background: var(--white-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.payment-selector-box:hover {
    border-color: #e0dcd8;
    background: #fafaf9;
}

.payment-selector-box input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.payment-selector-box input[type="radio"]:checked+.payment-check {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.payment-selector-box input[type="radio"]:checked+.payment-check::after {
    opacity: 1;
}

.payment-selector-box input[type="radio"]:checked~.d-flex {
    color: var(--primary-color);
}

.payment-selector-box:has(input:checked) {
    border-color: var(--primary-color);
    background: rgba(236, 14, 77, 0.08);
}

.payment-check {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.payment-check::after {
    content: "✓";
    color: var(--white-color);
    font-size: 12px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s;
}

.payment-icon {
    font-size: 20px;
    margin-right: auto;
}

.payment-label-text {
    display: flex;
    flex-direction: column;
}

.payment-label-text strong {
    font-size: 14px;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.payment-label-text small {
    font-size: 12px;
    color: #666666;
}

/* Shipping Methods */
.shipping-methods-list {
    grid-template-columns: 1fr;
}

.shipping-method-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(236, 14, 77, 0.08);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
}

.shipping-method-price {
    margin-left: auto;
    font-weight: 700;
    color: var(--dark-color);
    font-size: 14px;
}

/* Card Details Section */
.card-details-section {
    margin-top: 20px;
}

/* Trust Badges */
.checkout-trust-badges {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 12px;
    color: #666666;
}

.trust-badge-item {
    margin-bottom: 8px;
}

.trust-badge-item:last-child {
    margin-bottom: 0;
}

.trust-badge-item i {
    color: var(--primary-color);
    margin-right: 6px;
}

/* Checkbox Item */
.checkbox-item {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    background: var(--white-color);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 16px;
}

.checkbox-item:hover {
    border-color: #e0dcd8;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 16px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-item label {
    flex: 1;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
}

/* ===================================
Order Summary Box - Sticky
=================================== */
.checkout-summary {
    background: var(--white-color);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 120px;
    height: fit-content;
}

.summary-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0ede9;
}

.summary-header-title {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
}

/* Order Items in Summary */
.summary-items {
    margin-bottom: 24px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 8px;
}

.summary-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0ede9;
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.item-image {
    width: 60px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.4;
}

.item-meta {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 4px;
}

.item-qty {
    font-size: 12px;
    color: #666666;
}

.item-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-color);
}

/* Summary Details */
.summary-details {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0ede9;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-row span:first-child {
    color: #666666;
    font-weight: 500;
}

.summary-row span:last-child {
    color: var(--dark-color);
    font-weight: 600;
}

.total-row {
    border-top: 2px solid #f0ede9;
    padding-top: 16px;
    margin-top: 16px;
    font-size: 16px !important;
}

.total-row span:first-child {
    color: var(--dark-color) !important;
    font-weight: 700 !important;
}

.total-amount {
    color: var(--primary-color) !important;
    font-size: 18px !important;
    font-weight: 800 !important;
}

.text-success {
    color: #10b981 !important;
    font-weight: 600;
}

/* Mini Image Container */
.mini-img {
    width: 60px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.mini-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-color);
}

.mini-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 14px;
}

/* ========================
    Order Confirmation Page
============================ */
.order-confirmation-section {
    padding: 100px 0;
    background: var(--white-color);
}

.success-icon-wrap {
    font-size: 80px;
    color: var(--primary-color);
    animation: successPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.order-number-text {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-top: 10px;
}

/* Status Timeline */
.order-status-timeline {
    position: relative;
    padding-left: 30px;
}

.order-status-timeline::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: #eee;
}

.status-item {
    position: relative;
    padding-bottom: 25px;
}

.status-item:last-child {
    padding-bottom: 0;
}

.status-dot {
    position: absolute;
    left: -40px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    z-index: 2;
}

.status-item.active .status-dot {
    background: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(236, 14, 77, 0.15);
}

.status-info strong {
    display: block;
    font-size: 14px;
    color: var(--dark-color);
}

.status-info small {
    font-size: 12px;
    color: #999;
}

/* =====================
    Testimonials Page
======================== */
.testimonials-page-section {
    background: #f8f8f8;
}

.testimonials-masonry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card-v2 {
    background: var(--light-gray);
    padding: 45px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.featured-card {
    grid-column: 1 / 3;
    background: var(--secondary-color);
    color: var(--white-color);
}

.featured-card .testimonial-text,
.featured-card .author-name {
    color: var(--white-color);
}

.featured-card .testimonial-text.large {
    font-size: 20px;
    line-height: 1.6;
}

.featured-author-img img {
    height: 180px;
}

.testimonial-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.qv-stars i {
    color: #FFB800;
    font-size: 12px;
}

/* =====================
    Coming Soon Page
======================== */
.coming-soon-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    overflow: hidden;
    background: var(--secondary-color);
}

.coming-soon-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    animation: slowZoom 20s linear infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.coming-soon-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    z-index: 1;
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    color: var(--white-color);
}

.cs-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--white-color);
    margin: 20px 0;
}

.max-width-600 {
    max-width: 600px;
}

.coming-soon-content .timer-item span {
    font-size: 64px;
    color: var(--white-color);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.coming-soon-content .timer-item small {
    color: var(--primary-color);
    font-weight: 700;
}

/* =====================
    FAQ Page
======================== */
.max-width-900 {
    max-width: 900px;
}

.faq-category-label {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
}

/* Accordion Customization */
.accordion-item {
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 700;
    padding: 20px 25px;
    color: var(--secondary-color) !important;
    background-color: var(--white-color) !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color) !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ec0e4d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-body {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    padding: 0 25px 25px;
}

.faq-support-card {
    background: var(--light-gray);
    transition: var(--transition-smooth);
}

.faq-support-card:hover {
    border-color: var(--primary-color) !important;
    transform: translateY(-5px);
}

/* =====================
    Terms Conditions Page
======================== */
.last-updated-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.legal-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.legal-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.legal-list {
    list-style: none;
    padding-left: 0;
}

.legal-list li {
    font-size: 15px;
    color: #555;
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.legal-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 14px;
}

.legal-support-footer {
    background: var(--light-gray);
}

/* =====================
    404 Page
======================== */
.error-page-section {
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--white-color);
    position: relative;
    overflow: hidden;
}

.error-wrapper {
    position: relative;
    z-index: 2;
}

.error-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 400px;
    font-weight: 900;
    color: var(--light-gray);
    line-height: 1;
    z-index: -1;
    user-select: none;
    opacity: 0.8;
}

.error-content-box {
    position: relative;
}

/* Search Box */
.error-search-box .input-group-custom input {
    background: var(--white-color);
    border: 1.5px solid var(--border-color);
    border-radius: 50px;
}

/* =====================
    Login, Register, Forgot Password, Reset Password Page
======================== */
.auth-page-section {
    background: var(--light-gray);
    display: flex;
    align-items: center;
}

.max-width-500 {
    max-width: 500px;
}

.auth-card {
    background: var(--white-color);
    transition: var(--transition-smooth);
}

.auth-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.auth-divider {
    position: relative;
    z-index: 1;
}

.auth-divider span {
    background: var(--white-color);
    padding: 0 15px;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border-color);
    z-index: -1;
}

.auth-form .custom-check {
    font-size: 13px;
    font-weight: 500;
    gap: 5px;
    justify-content: left;
}

/* =====================
    OTP Verification Page
======================== */
.otp-field {
    width: 60px;
    height: 70px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--light-gray);
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    font-family: var(--heading-font);
    color: var(--secondary-color);
    transition: var(--transition-smooth);
}

.otp-field:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white-color);
    box-shadow: 0 10px 20px rgba(236, 14, 77, 0.1);
    transform: translateY(-3px);
}

.auth-icon-circle i {
    animation: pulseLock 2s infinite;
}

@keyframes pulseLock {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* =====================
    Dashboard Page
======================== */
.dashboard-page-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.user-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.user-avatar-large img {
    height: 100%;
    width: 100%;
}

.dashboard-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.dashboard-nav li.active a,
.dashboard-nav li a:hover {
    background: rgba(236, 14, 77, 0.08);
    color: var(--primary-color);
}

.stat-card {
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color) !important;
}

/* =====================
    Order History Page
======================== */
.order-history-card {
    transition: var(--transition-smooth);
}

.order-history-card:hover {
    border-color: var(--primary-color) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05) !important;
}

.oh-header {
    border-color: var(--border-color) !important;
}

.oh-product-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-color);
}

.oh-actions .btn-primary {
    letter-spacing: 0.5px;
}

/* =====================
    Address Book Page
======================== */
.address-card {
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.address-card:hover {
    border-color: var(--primary-color) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05) !important;
}

.address-type i {
    font-size: 18px;
}

.address-details p {
    line-height: 1.8;
}

.address-actions {
    margin-top: auto;
}

/* =====================
    Account Settings Page
======================== */
.account-settings-content .form-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.account-settings-content .form-section-icon {
    width: 35px;
    height: 35px;
    background: rgba(236, 14, 77, 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.account-settings-content .input-group-custom label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.account-settings-content .input-group-custom input {
    padding: 14px 20px;
    border-radius: 8px;
    border: 1.5px solid var(--border-color);
    font-size: 14px;
    transition: var(--transition-smooth);
}

/* =====================
    Track Order Page
======================== */
.max-width-700 {
    max-width: 700px;
}

.track-form .input-group-custom input {
    border-radius: 8px;
    padding: 16px 20px 16px 50px;
}

/* Status Timeline Reuse */
.order-status-timeline {
    position: relative;
    padding-left: 40px;
}

.order-status-timeline::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: var(--border-color);
}

.track-order-page-section .status-item.active .status-dot {
    background: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(236, 14, 77, 0.15);
}

.track-order-page-section .status-item .status-dot {
    left: -40px;
}

/* =====================
    Blog Page
======================== */
.blog-card .blog-image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.blog-card .blog-image-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image-wrap img {
    transform: scale(1.05);
}

.blog-date-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 8px 15px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.blog-title-large {
    font-size: 32px;
    line-height: 1.2;
}

.blog-title-large a,
.blog-title-small a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.blog-title-large a:hover,
.blog-title-small a:hover {
    color: var(--primary-color);
}

/* =====================
    Blog Detail Page 
======================== */
.blog-post-detail {
    background: var(--white-color);
    border-radius: 12px;
    padding: 60px 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.blog-post-detail:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.post-body-content {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.post-body-content p {
    font-size: 17px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 25px;
    transition: var(--transition);
}

.post-body-content p.lead {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--secondary-color);
    padding: 20px;
    background: linear-gradient(135deg, rgba(236, 14, 77, 0.05) 0%, rgba(236, 14, 77, 0.02) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
}

.post-body-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    margin-top: 40px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.post-body-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    margin-top: 30px;
}

.vastraa-blockquote {
    border-color: var(--primary-color) !important;
    border-left: 5px solid var(--primary-color) !important;
    background: linear-gradient(135deg, rgba(236, 14, 77, 0.08) 0%, rgba(236, 14, 77, 0.04) 100%) !important;
    border-radius: 8px;
    padding: 30px 30px 30px 40px !important;
    margin: 40px 0 !important;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(236, 14, 77, 0.1);
}

.vastraa-blockquote:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(236, 14, 77, 0.15);
}

.vastraa-blockquote::before {
    content: '"';
    position: absolute;
    left: 12px;
    top: 10px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.1;
    font-weight: 900;
}

.vastraa-blockquote p {
    font-size: 20px;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.7;
}

.vastraa-blockquote .attribution {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 15px;
    font-style: normal;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
}

/* Widget Styling */
.blog-sidebar .widget {
    background: var(--white-color);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e7e7e7;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.8s ease-out both;
}

.blog-sidebar .widget:nth-child(1) {
    animation-delay: 0.5s;
}

.blog-sidebar .widget:nth-child(2) {
    animation-delay: 0.6s;
}

.blog-sidebar .widget:nth-child(3) {
    animation-delay: 0.7s;
}

.blog-sidebar .widget:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

/* Mini Post List */
.mini-post-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mini-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    background: #f9f7f4;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.mini-item::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.mini-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    flex-shrink: 0;
}

.mini-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.mini-item:hover .mini-img img {
    transform: scale(1.1);
}

.mini-post-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mini-post-info h5 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.mini-post-info a {
    color: var(--secondary-color);
    transition: var(--transition);
    text-decoration: none;
}

.mini-post-info a:hover {
    color: var(--primary-color) !important;
}

.mini-post-info .text-muted {
    font-size: 12px;
    color: #888 !important;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bd-post-header {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 36px;
}

.bd-post-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--secondary-color);
    margin: 14px 0 24px;
}

.bd-post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    background: var(--light-gray);
    border-radius: 8px;
    padding: 14px 20px;
}

.bd-meta-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 20px;
}

.bd-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bd-author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
}

.bd-author-role {
    font-size: 11px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.bd-meta-divider {
    width: 1px;
    height: 30px;
    background: var(--border-color);
    margin: 0 20px;
    flex-shrink: 0;
}

.bd-meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.bd-meta-item i {
    color: var(--primary-color);
    font-size: 13px;
}

.bd-featured-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    aspect-ratio: 16/9;
    background: var(--light-gray);
}

.bd-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.bd-featured-image:hover img {
    transform: scale(1.04);
}

.bd-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-style: italic;
    padding: 20px 20px 14px;
    letter-spacing: 0.3px;
}

.bd-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 28px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-top: 40px;
}

.bd-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.bd-tags-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.bd-tags-label i {
    color: var(--primary-color);
}

.bd-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bd-tag {
    display: inline-block;
    padding: 6px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
}

.bd-tag:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.bd-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bd-share-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
}

.bd-share-links {
    display: flex;
    gap: 8px;
}

.bd-share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.bd-share-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(236, 14, 77, 0.3);
}

.bd-author-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--light-gray);
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.bd-author-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}

.bd-author-card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-color);
}

.bd-author-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bd-author-card-body {
    flex: 1;
}

.bd-author-card-role {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.bd-author-card-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.bd-author-card-bio {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 14px;
}

.bd-author-card-socials {
    display: flex;
    gap: 10px;
}

.bd-author-card-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 13px;
    transition: var(--transition);
}

.bd-author-card-socials a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.bd-post-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 0;
    margin-top: 40px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.bd-nav-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 22px 24px;
    transition: var(--transition-smooth);
    background: var(--white-color);
}

.bd-nav-item:hover {
    background: var(--light-gray);
}

.bd-nav-next {
    text-align: right;
    align-items: flex-end;
}

.bd-nav-direction {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.bd-nav-next .bd-nav-direction {
    flex-direction: row-reverse;
}

.bd-nav-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
    transition: var(--transition);
}

.bd-nav-item:hover .bd-nav-title {
    color: var(--primary-color);
}

.bd-nav-divider {
    width: 1px;
    background: var(--border-color);
}

.bd-comments {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.bd-comments-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.bd-comments-title span {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.bd-comment-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}

.bd-comment {
    display: flex;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

.bd-comment:last-child {
    border-bottom: none;
}

.bd-comment-reply-item {
    padding-left: 60px;
    background: var(--light-gray);
    border-radius: 8px;
    padding: 20px 20px 20px 80px;
    margin-left: 30px;
    border-bottom: none;
    margin-bottom: 4px;
}

.bd-comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--border-color);
}

.bd-comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bd-comment-body {
    flex: 1;
}

.bd-comment-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.bd-comment-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-color);
}

.bd-comment-author-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 3px 8px;
    border-radius: 4px;
}

.bd-comment-date {
    font-size: 12px;
    color: #999;
    margin-left: auto;
}

.bd-comment-text {
    font-size: 14px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 12px;
}

.bd-comment-reply {
    background: none;
    border: none;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
}

.bd-comment-reply:hover {
    color: var(--secondary-color);
}

/* Comment Form */
.bd-comment-form {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 36px;
    border: 1px solid var(--border-color);
    margin-top: 10px;
}

.bd-comment-form-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.bd-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.bd-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.bd-form-row .bd-form-group {
    margin-bottom: 0;
}

.bd-form-group label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
}

.bd-form-group label span {
    color: var(--primary-color);
}

.bd-form-group input,
.bd-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--text-color);
    background: var(--white-color);
    transition: var(--transition);
    resize: vertical;
}

.bd-form-group input:focus,
.bd-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(236, 14, 77, 0.08);
}

/* Sidebar: About Widget */
.bd-about-widget-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 14px;
    display: block;
}

.bd-about-widget p {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

/* Sidebar: Tags Widget */
.bd-sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bd-sidebar-tag {
    display: inline-block;
    padding: 7px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
}

.bd-sidebar-tag:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

/* Mini Post Date */
.mini-post-date {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mini-post-date i {
    color: var(--primary-color);
    font-size: 11px;
}

.mini-post-info h5 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.4;
}

.mini-post-info h5 a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.mini-post-info h5 a:hover {
    color: var(--primary-color);
}

/* =====================
    Contact Page
======================== */
.cp-section {
    background: var(--light-gray);
}

/* Trust bar */
.cp-trust-bar {
    display: flex;
    align-items: stretch;
    background: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 60px;
}

.cp-trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.cp-trust-item:last-child {
    border-right: none;
}

.cp-trust-icon {
    width: 42px;
    height: 42px;
    background: rgba(236, 14, 77, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

.cp-trust-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1.3;
    margin-bottom: 2px;
}

.cp-trust-text span {
    font-size: 11px;
    color: #888;
}

/* Info card */
.cp-info-card {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cp-info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

.cp-info-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.cp-info-card:hover::after {
    width: 100%;
}

.cp-card-icon {
    width: 46px;
    height: 46px;
    background: rgba(236, 14, 77, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 17px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.cp-info-card:hover .cp-card-icon {
    background: var(--primary-color);
    color: var(--white-color);
}

.cp-card-content {
    flex: 1;
    min-width: 0;
}

.cp-card-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: block;
}

.cp-card-body {
    font-size: 14px;
    color: #444;
    line-height: 1.65;
    margin: 0;
}

.cp-card-body a {
    color: #444;
    transition: var(--transition);
    display: block;
    line-height: 1.65;
}

.cp-card-body a:hover {
    color: var(--primary-color);
}

/* Social links */
.cp-social-links {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.cp-social-link {
    width: 34px;
    height: 34px;
    border: 1.5px solid var(--border-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 13px;
    transition: var(--transition-smooth);
}

.cp-social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

/* Map */
.cp-map-wrap {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.cp-map-wrap iframe {
    display: block;
    width: 100%;
    height: 240px;
    border: none;
    filter: grayscale(0.15);
    transition: filter 0.3s ease;
}

.cp-map-wrap:hover iframe {
    filter: grayscale(0);
}

/* Form panel */
.cp-form-panel {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 44px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.cp-form-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 6px;
}

.cp-form-subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 28px;
}

.cp-form-panel .input-group-custom {
    margin-bottom: 0;
}

.cp-form-panel .input-group-custom input,
.cp-form-panel .input-group-custom textarea {
    width: 100%;
    padding: 15px 18px 15px 48px;
    border: 1.5px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--text-color);
    background: var(--light-gray);
    transition: var(--transition);
    resize: none;
}

.cp-form-panel .input-group-custom textarea {
    padding-top: 15px;
    padding-left: 48px;
    min-height: 130px;
    resize: vertical;
}

.cp-form-panel .input-group-custom i {
    top: 18px;
    transform: none;
}

.cp-form-panel .input-group-custom input:focus,
.cp-form-panel .input-group-custom textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white-color);
    box-shadow: 0 0 0 3px rgba(236, 14, 77, 0.08);
}