/* ======================================================
   APPAREL THEME – SKY BLUE + WHITE
   Clean, slightly larger type, Bootstrap-based layout
   ====================================================== */

/* -------------------------
   ROOT VARIABLES
------------------------- */
:root {
    --primary: #0ea5e9;           /* sky blue */
    --primary-dark: #0369a1;      /* deeper sky */
    --primary-light: #e0f2fe;     /* light blue */
    --primary-xlight: #f0f9ff;    /* very light blue */

    --primary-gradient: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 45%, #2563eb 100%);
    --primary-gradient-soft: linear-gradient(135deg, #e0f2fe 0%, #eff6ff 100%);

    --accent: #38bdf8;
    --accent-soft: #e0f7ff;

    --black: #020617;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border-subtle: #e2e8f0;
    --bg-page: #f4f7fb;
    --bg-surface: #ffffff;
    --bg-subtle: #eff6ff;

    --shadow-soft: 0 14px 30px rgba(15, 23, 42, 0.08);
    --shadow-strong: 0 20px 50px rgba(15, 23, 42, 0.18);

    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-pill: 999px;

    --transition-base: all 0.24s ease-out;
}

/* -------------------------
   GLOBAL RESET & BASE
------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 1rem; /* thoda bada text */
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
    color: var(--primary-dark);
    transition: var(--transition-base);
}
a:hover {
    color: #1d4ed8;
}

/* Utility spacing */
.section-padding {
    padding: 80px 0;
}
.section-padding-small {
    padding: 50px 0;
}

@media (min-width: 992px) {
    .section-padding {
        padding: 96px 0;
    }
    .section-padding-small {
        padding: 60px 0;
    }
}

.bg-subtle {
    background-color: var(--bg-subtle);
}

.letter-spaced {
    letter-spacing: 0.08em;
}

/* Gradient text */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-white {
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.02em;
}
.section-title {
    font-size: clamp(1.8rem, 3.1vw, 2.4rem);
    font-weight: 700;
}
.section-lead {
    color: var(--text-muted);
    font-size: 0.98rem;
}

/* Theme mappings */
.text-primary {
    color: var(--primary-dark) !important;
}
.bg-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

/* -------------------------
   BUTTONS
------------------------- */
.btn-gradient {
    background-image: var(--primary-gradient);
    border: none;
    color: #ffffff !important;
    border-radius: var(--radius-pill);
    padding-inline: 1.7rem;
    padding-block: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
}
.btn-gradient:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.35);
}

/* Primary */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary-dark);
    font-size: 0.9rem;
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: #1d4ed8;
}

/* Outline primary */
.btn-outline-primary {
    border-radius: var(--radius-pill);
    border-color: rgba(37, 99, 235, 0.4);
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.9rem;
    padding-inline: 1.3rem;
    padding-block: 0.6rem;
}
.btn-outline-primary:hover {
    background-image: var(--primary-gradient);
    border-color: transparent;
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}

/* Outline secondary – for dark backgrounds */
.btn-outline-secondary {
    border-radius: var(--radius-pill);
    border-color: #9ca3af;
    color: #e5e7eb;
    font-size: 0.9rem;
}
.btn-outline-secondary:hover {
    background-color: #020617;
    border-color: #020617;
    color: #ffffff;
}

/* Community buttons */
.btn-discord,
.btn-whatsapp {
    border-radius: var(--radius-pill);
    border: none;
    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding-inline: 1.6rem;
    padding-block: 0.7rem;
    box-shadow: var(--shadow-soft);
}
.btn-discord {
    background: #4f46e5;
}
.btn-discord:hover {
    background: #4338ca;
    transform: translateY(-1px);
}
.btn-whatsapp {
    background: #10b981;
}
.btn-whatsapp:hover {
    background: #059669;
    transform: translateY(-1px);
}

/* -------------------------
   NAVBAR
------------------------- */
#mainNavbar {
    transition: background-color 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
    border-bottom: 1px solid transparent;
    z-index: 1030;
}
#mainNavbar.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    border-bottom-color: rgba(148, 163, 184, 0.4);
}
.navbar-brand {
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: var(--text-main);
}
.brand-icon {
    width: 34px;
    height: 34px;
    background-image: var(--primary-gradient-soft);
    color: var(--primary-dark);
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.24);
}
.navbar-nav .nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: #6b7280;
    padding-inline: 0.9rem;
    position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--text-main);
}
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 16%;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background-image: var(--primary-gradient);
    transition: width 0.18s ease-out;
}
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
    width: 68%;
}
.navbar-toggler {
    border: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.nav-actions .btn-sm {
    font-size: 0.82rem;
}

/* -------------------------
   SEARCH (NAV + HERO)
------------------------- */
.search-box {
    max-width: 280px;
}
.search-box .form-control {
    padding-left: 2.05rem;
    padding-right: 1.1rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(148, 163, 184, 0.6);
    background-color: #f9fafb;
    font-size: 0.86rem;
    height: 2.4rem;
    box-shadow: none;
}
.search-box .form-control:focus {
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}
.hero-search-wrapper .form-control {
    border-radius: var(--radius-pill);
    border-color: rgba(148, 163, 184, 0.8);
    background-color: #f9fafb;
    font-size: 0.9rem;
    padding-left: 2.05rem;
}
.search-box .search-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    color: #9ca3af;
}

/* Suggestions dropdown */
.search-suggestions {
    margin-top: 0.35rem;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
    background-color: #ffffff;
    max-height: 260px;
    overflow-y: auto;
    z-index: 1050;
}
.search-suggestions .list-group-item {
    border: none;
    font-size: 0.9rem;
    padding-block: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.search-suggestions .result-type {
    font-size: 0.78rem;
    color: #9ca3af;
}
.search-suggestions .list-group-item:hover,
.search-suggestions .list-group-item.active {
    background-color: var(--accent-soft);
}

/* -------------------------
   HERO SECTION
------------------------- */
.hero-section {
    padding-top: 104px;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.22) 0, transparent 55%),
        radial-gradient(circle at 80% 0, rgba(37, 99, 235, 0.2) 0, transparent 60%),
        #ffffff;
    position: relative;
    overflow: hidden;
}
.hero-badge {
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
    border: 1px solid rgba(37, 99, 235, 0.4);
    font-size: 0.8rem;
    font-weight: 500;
    padding-inline: 1rem;
    padding-block: 0.25rem;
}
.hero-title {
    font-size: clamp(2.3rem, 4.2vw, 3.1rem);
    font-weight: 800;
    margin-bottom: 0.85rem;
}
.hero-subtitle {
    color: #4b5563;
    max-width: 32rem;
    font-size: 1rem;
}
.hero-stats .stat {
    padding-top: 0.25rem;
}
.stat-value {
    font-weight: 700;
    font-size: 1.25rem;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* -------------------------
   IMAGE SLOT SYSTEM
   (placeholder text + image fade/scale)
------------------------- */
.image-slot {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 220px;
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(148, 163, 184, 0.8);
    background-color: #f9fafb;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.4s ease-out,
        transform 0.4s ease-out,
        border-color 0.25s ease-out,
        box-shadow 0.25s ease-out,
        background-color 0.25s ease-out;
}
.image-slot-hero {
    min-height: 320px;
}
.image-slot-placeholder {
    text-align: center;
    padding: 1rem 1.2rem;
    color: #6b7280;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}
.image-slot-label {
    font-size: 0.9rem;
    font-weight: 600;
}
.image-slot-size {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* show when intersecting */
.image-slot.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* If image added */
.image-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transform: scale(1.01);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.image-slot.has-image {
    border-style: solid;
    border-color: rgba(37, 99, 235, 0.75);
    background-color: #ffffff;
    box-shadow: var(--shadow-soft);
}
.image-slot.has-image img {
    opacity: 1;
    transform: scale(1.0);
}
.image-slot.has-image:hover img {
    transform: scale(1.03);
}
.image-slot.has-image .image-slot-placeholder {
    opacity: 0;
    visibility: hidden;
}

/* Hero image container */
.hero-media {
    max-width: 520px;
}

/* Floating badges */
.floating-badge {
    position: absolute;
    padding-inline: 0.9rem;
    padding-block: 0.4rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    background-color: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(148, 163, 184, 0.28);
    color: #0f172a;
}
.floating-badge svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}
.badge-top {
    top: 18%;
    left: -4%;
    animation: float1 7s ease-in-out infinite;
}
.badge-bottom {
    bottom: 12%;
    right: -3%;
    animation: float2 9s ease-in-out infinite;
}
@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -8px); }
}
@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, 8px); }
}

/* -------------------------
   LOGO GRID
------------------------- */
.logo-grid {
    max-width: 960px;
    margin: 0 auto;
}
.logo-chip {
    border-radius: 999px;
    border: 1px dashed rgba(148, 163, 184, 0.9);
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    color: #6b7280;
    background-color: #f9fafb;
}

/* -------------------------
   FEATURE LIST & PILLS
------------------------- */
.feature-list li {
    font-size: 0.94rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}
.feature-list svg {
    width: 17px;
    height: 17px;
    color: var(--primary);
}
.feature-pill {
    background-image: var(--primary-gradient-soft);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.1rem;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}
.feature-pill svg {
    width: 22px;
    height: 22px;
    color: var(--primary-dark);
    margin-bottom: 0.4rem;
}
.feature-pill h3 {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.feature-pill p {
    font-size: 0.84rem;
    color: var(--text-muted);
}

/* -------------------------
   WHY APPAREL FEATURE BOX
------------------------- */
.feature-box {
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.3rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.03);
    transition: var(--transition-base);
}
.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.25);
    border-color: rgba(37, 99, 235, 0.65);
}
.feature-box h3 {
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
}
.feature-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Icon circle */
.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background-image: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    color: #ffffff;
    box-shadow: 0 14px 26px rgba(37, 99, 235, 0.45);
}
.icon-circle svg {
    width: 18px;
    height: 18px;
}

/* -------------------------
   HOW IT WORKS – STEPS
------------------------- */
.step-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.3rem;
    border: 1px dashed rgba(148, 163, 184, 0.65);
    transition: var(--transition-base);
}
.step-card:hover {
    border-style: solid;
    border-color: rgba(37, 99, 235, 0.6);
    box-shadow: var(--shadow-soft);
    transform: translateY(-3px);
}
.step-card h3 {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.step-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
}
.step-number {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    background-color: var(--primary-light);
    border-radius: var(--radius-pill);
    padding-inline: 0.8rem;
    padding-block: 0.18rem;
    display: inline-block;
    margin-bottom: 0.45rem;
}

/* -------------------------
   CATALOG TAGS
------------------------- */
.catalog-tags .tag-chip {
    background-color: #dbeafe;
    color: #1d4ed8;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}
.catalog-filter-btn.active {
    background-image: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: var(--shadow-soft);
}

/* -------------------------
   PRODUCT CARDS (SWIPER)
------------------------- */
.product-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(229, 231, 235, 0.9);
    transition: transform 0.22s ease-out, box-shadow 0.22s ease-out, border-color 0.22s ease-out;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(37, 99, 235, 0.7);
}
.card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.card-image .image-slot {
    border-radius: 0;
    border-width: 0;
    min-height: 260px;
}
.card-image .image-slot-placeholder {
    color: #6b7280;
}

/* Hover overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.85),
        rgba(15, 23, 42, 0.1)
    );
    opacity: 0;
    transition: opacity 0.28s ease-out;
}
.product-card:hover .overlay {
    opacity: 1;
}
.overlay .btn {
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.4);
}

/* Discount badge */
.discount-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    border-radius: 999px;
    padding: 0.25rem 0.65rem;
    font-size: 0.78rem;
    font-weight: 600;
    background-image: var(--primary-gradient);
    color: #ffffff;
}

/* Card body */
.card-details {
    padding: 1.05rem 1.2rem 1.25rem;
}
.card-details .category {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
}
.card-details .card-title {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    margin-top: 0.15rem;
}
.price {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
}
.old-price {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: #9ca3af;
}
.new-price {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Highlighted card from search */
.searchable-card.search-match {
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.85), 0 18px 40px rgba(37, 99, 235, 0.3);
}

/* -------------------------
   SWIPER NAV & PAGINATION
------------------------- */
.swiper {
    padding-bottom: 40px;
}
.swiper-button-next,
.swiper-button-prev {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background-color: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
    color: var(--primary-dark);
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 0.85rem;
    font-weight: 700;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-image: var(--primary-gradient);
    color: #ffffff;
}
.swiper-pagination-bullet {
    background: rgba(148, 163, 184, 0.9);
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: var(--primary);
    width: 18px;
    border-radius: 999px;
}

/* -------------------------
   BANNER SECTION
------------------------- */
.banner-section {
    position: relative;
    background-image: linear-gradient(135deg, #0f172a, #0ea5e9, #2563eb);
    color: #ffffff;
}
.banner-section .container {
    position: relative;
    z-index: 1;
}
.banner-section .section-title,
.banner-section h2,
.banner-section p,
.banner-section .lead {
    color: #f9fafb;
}
.text-accent {
    color: #bfdbfe;
}

/* -------------------------
   COLLECTION CARDS
------------------------- */
.collection-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transition: var(--transition-base);
}
.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    border-color: rgba(37, 99, 235, 0.7);
}
.collection-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.collection-thumb .image-slot {
    min-height: 200px;
    border-radius: 0;
    border-width: 0;
}
.collection-thumb .badge-soft {
    position: absolute;
    right: 0.85rem;
    top: 0.85rem;
    border-radius: var(--radius-pill);
    padding-inline: 0.7rem;
    padding-block: 0.22rem;
    font-size: 0.78rem;
    background-color: var(--primary-light);
    color: var(--primary-dark);
}
.collection-body {
    padding: 1.15rem 1.2rem 1.3rem;
}
.collection-body h3 {
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.collection-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}
.meta-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price-tag {
    font-weight: 700;
    font-size: 1.02rem;
}

/* -------------------------
   METRICS
------------------------- */
.metric-card {
    background-color: var(--bg-surface);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
}
.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.metric-value {
    font-size: 1.1rem;
    font-weight: 700;
}

/* -------------------------
   IMAGE PLACEHOLDER CARDS
------------------------- */
.image-placeholder-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px dashed rgba(148, 163, 184, 0.9);
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-inline: 1.3rem;
    transition: var(--transition-base);
}
.image-placeholder-card svg {
    width: 30px;
    height: 30px;
    margin-bottom: 0.45rem;
    color: #9ca3af;
}
.image-placeholder-card p {
    margin-bottom: 0.12rem;
    font-size: 0.9rem;
}
.image-placeholder-card small {
    font-size: 0.8rem;
}
.image-placeholder-card:hover {
    border-style: solid;
    border-color: rgba(37, 99, 235, 0.8);
    box-shadow: var(--shadow-soft);
    transform: translateY(-3px);
}
.card-large {
    min-height: 280px;
}
@media (max-width: 768px) {
    .card-large {
        min-height: 190px;
    }
}

/* -------------------------
   FABRIC STRIP
------------------------- */
.fabric-strip {
    background-color: #eff6ff;
    border-top: 1px solid rgba(209, 213, 219, 0.7);
    border-bottom: 1px solid rgba(209, 213, 219, 0.7);
}
.strip-title {
    font-size: 1.15rem;
    font-weight: 600;
}
.strip-items {
    justify-content: flex-start;
}
.strip-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-pill);
    background-color: #ffffff;
    border: 1px solid rgba(209, 213, 219, 0.8);
}
.strip-item svg {
    width: 17px;
    height: 17px;
    color: var(--primary-dark);
}

/* -------------------------
   PRICING CARDS
------------------------- */
.pricing-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 1.6rem 1.5rem 1.7rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    border-color: rgba(37, 99, 235, 0.7);
}
.pricing-card-featured {
    background-image: radial-gradient(circle at top left, #dbeafe, #ffffff);
    border-width: 2px;
    border-color: rgba(37, 99, 235, 0.85);
}
.pricing-title {
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.pricing-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
}
.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 0.7rem;
}
.pricing-amount .currency {
    font-size: 0.82rem;
    color: #6b7280;
}
.pricing-amount .value {
    font-size: 1.35rem;
    font-weight: 700;
}
.pricing-list li {
    font-size: 0.86rem;
    margin-bottom: 0.35rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.pricing-list svg {
    width: 15px;
    height: 15px;
    color: var(--primary);
}
.badge-accent {
    position: absolute;
    top: 0.95rem;
    right: 1.05rem;
    background-color: #dbeafe;
    color: #1d4ed8;
    border-radius: var(--radius-pill);
    padding-inline: 0.75rem;
    padding-block: 0.2rem;
    font-size: 0.72rem;
    font-weight: 600;
}

/* -------------------------
   CASE STUDIES
------------------------- */
.case-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 1.7rem 1.6rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}
.case-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.case-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}
.case-tag {
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1d4ed8;
    margin-bottom: 0.4rem;
}
.case-metrics li {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.case-metrics span {
    font-weight: 700;
    color: var(--primary-dark);
}

/* -------------------------
   LOOKBOOK GRID
------------------------- */
.lookbook-grid {
    display: grid;
    grid-template-columns: 2fr 1.1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
}
.image-slot-lookbook-main {
    grid-row: 1 / span 2;
    grid-column: 1 / 2;
    min-height: 360px;
}
.image-slot-lookbook-small {
    min-height: 170px;
}

/* -------------------------
   SHOP THE LOOK
------------------------- */
.small-icon {
    width: 16px;
    height: 16px;
}

/* -------------------------
   REVIEWS
------------------------- */
.review-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.4rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.09);
    height: 100%;
}
.review-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-image: var(--primary-gradient);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.4);
}
.reviewer h3 {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}
.reviewer span {
    font-size: 0.8rem;
    color: #9ca3af;
}
.stars svg {
    width: 16px;
    height: 16px;
    color: #facc15;
}

/* -------------------------
   SHIPPING / SECURITY
------------------------- */
.payment-logos svg {
    width: 36px;
    height: 36px;
    color: var(--primary-dark);
    opacity: 0.7;
    transition: var(--transition-base);
}
.payment-logos svg:hover {
    opacity: 1;
    transform: translateY(-2px);
}
.custom-logo-placeholder {
    min-width: 80px;
    height: 40px;
    border-radius: 10px;
    border: 1px dashed rgba(148, 163, 184, 0.8);
    font-size: 0.8rem;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 0.35rem;
    background-color: #ffffff;
    transition: var(--transition-base);
}
.custom-logo-placeholder:hover {
    transform: translateY(-2px);
    border-style: solid;
}

/* -------------------------
   SUPPORT CARDS
------------------------- */
.support-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 1.3rem 1.2rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    text-align: left;
    transition: var(--transition-base);
}
.support-card svg {
    width: 20px;
    height: 20px;
    color: var(--primary-dark);
    margin-bottom: 0.4rem;
}
.support-card h3 {
    font-size: 0.98rem;
    margin-bottom: 0.2rem;
}
.support-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
}
.support-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(37, 99, 235, 0.65);
}

/* -------------------------
   NEWSLETTER
------------------------- */
.newsletter-section {
    background-image: linear-gradient(135deg, #0f172a, #0ea5e9, #2563eb);
    color: #f9fafb;
}
.newsletter-section .section-title,
.newsletter-section .section-lead {
    color: #f9fafb;
}
.newsletter-form {
    display: flex;
    gap: 0.7rem;
    flex-wrap: nowrap;
}
.newsletter-form .form-control {
    background-color: rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(191, 219, 254, 0.9);
    color: #eff6ff;
    border-radius: 999px;
    padding-inline: 1rem;
    font-size: 0.92rem;
}
.newsletter-form .form-control::placeholder {
    color: rgba(219, 234, 254, 0.9);
}
.newsletter-form .form-control:focus {
    background-color: rgba(15, 23, 42, 0.25);
    border-color: #bfdbfe;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.5);
}

/* -------------------------
   RESOURCES / STYLE GUIDES
------------------------- */
.resource-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.resource-card .image-slot {
    border-radius: 0;
    min-height: 180px;
    border-width: 0;
}
.resource-content {
    padding: 1.1rem 1.1rem 1.3rem;
}
.resource-content h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}
.resource-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}
.resource-link {
    font-size: 0.88rem;
    color: var(--primary-dark);
    font-weight: 500;
}
.resource-link svg {
    width: 14px;
    height: 14px;
}

/* -------------------------
   FAQ / ACCORDION
------------------------- */
.accordion-item {
    border: none;
    border-radius: 12px !important;
    margin-bottom: 0.6rem;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}
.accordion-button {
    background-color: #ffffff;
    font-size: 0.94rem;
    font-weight: 600;
    padding-block: 0.9rem;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-button:not(.collapsed) {
    background-image: var(--primary-gradient-soft);
    color: var(--text-main);
    box-shadow: inset 0 -1px 0 rgba(209, 213, 219, 0.7);
}
.accordion-button svg {
    width: 16px;
    height: 16px;
    color: var(--primary-dark);
}
.accordion-body {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* -------------------------
   CONTACT FORM
------------------------- */
.contact-form .form-label {
    font-size: 0.86rem;
    color: #4b5563;
    margin-bottom: 0.2rem;
}
.contact-form .form-control,
.contact-form .form-select {
    font-size: 0.9rem;
    border-radius: 12px;
    border-color: rgba(209, 213, 219, 0.9);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.22);
}
.contact-info i {
    width: 16px;
    height: 16px;
    color: var(--primary-dark);
}

/* -------------------------
   AUTH STRIP
------------------------- */
.auth-strip {
    background-color: #eff6ff;
    border-top: 1px solid rgba(209, 213, 219, 0.8);
    border-bottom: 1px solid rgba(209, 213, 219, 0.8);
}
.strip-title {
    font-size: 1.1rem;
}

/* -------------------------
   CONTACT BAR (LIVE SUPPORT)
------------------------- */
.contact-bar-section {
    background-color: #020617;
    color: #f9fafb;
    border-top: 1px solid rgba(55, 65, 81, 0.9);
}
.contact-bar-section svg {
    width: 18px;
    height: 18px;
    color: #bfdbfe;
}

/* -------------------------
   FOOTER (DARK)
------------------------- */
.footer-section {
    background-color: #020617;
    color: #e5e7eb;
    padding-top: 56px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}
.footer-section .section-title,
.footer-section h3,
.footer-section h4,
.footer-section p,
.footer-section span,
.footer-section small {
    color: #e5e7eb;
}
.footer-logo {
    font-size: 1.2rem;
}
.footer-heading {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}
.footer-links li {
    margin-bottom: 0.35rem;
}
.footer-links a {
    font-size: 0.86rem;
    color: #e5e7eb;
}
.footer-links a:hover {
    color: #ffffff;
    padding-left: 0.25rem;
}
.footer-contact li {
    font-size: 0.86rem;
    color: #e5e7eb;
}
.footer-contact i {
    width: 15px;
    height: 15px;
    color: #9ca3af;
}
.social-links a {
    color: #e5e7eb;
}
.social-links a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}
.footer-section .payment-icons {
    gap: 0.3rem;
}
.footer-section .custom-logo-placeholder {
    background-color: transparent;
    border-color: rgba(148, 163, 184, 0.8);
    color: #e5e7eb;
}
.footer-bottom {
    border-top: 1px solid rgba(31, 41, 55, 0.9);
}
.footer-section .text-muted {
    color: #d1d5db !important;
}

/* -------------------------
   EXTERNAL UNEVEN EDIT
------------------------- */
    .h-100 {
        position: relative;
        top: 8px;
    }

    .mybuttonnew {
        color: black;
    }
    .mybuttonnew:hover {
        color: white;
        background-color: black;
    }
    
/* -------------------------
   RESPONSIVE
------------------------- */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
    }
    .hero-subtitle {
        margin-inline: auto;
    }
    .hero-media {
        margin-top: 1.6rem;
    }
    .hero-stats .stat {
        text-align: center;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form .btn {
        width: 100%;
        justify-content: center;
    }
    .navbar-nav .nav-link::after {
        left: 0;
        width: 0;
    }
    .lookbook-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .image-slot-lookbook-main {
        grid-row: auto;
        grid-column: auto;
        min-height: 260px;
    }
}
@media (max-width: 575.98px) {
    .section-padding {
        padding: 64px 0;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-section {
        padding-top: 96px;
    }
    .card-image {
        height: 220px;
    }