/*=========================================================
MK Bags
Version: 2.0 — Screenshot Match
=========================================================*/

:root {
    --navy: #0F172A;
    --brown:#31231E;
    --navy-dark: #020617;
    --brown-dark: #2b1f02;
    --primary: #54413B;
    --primary-hover: #453530;
    --text: #333438;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --border: #E2E8F0;
    --surface: #F8FAFC;
    --white: #FFFFFF;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(51, 52, 56, 0.08);
    --shadow-md: 0 4px 20px rgba(51, 52, 56, 0.08);
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.btn-check:checked + .btn, .btn.active, .btn.show,
 .btn:first-child:active, :not(.btn-check) + .btn:active {
  color: var(--white) !important;
  background-color: var(--brown) !important;
  border-color: var(--brown) !important;
  box-shadow: none !important;
}
.btn:focus-visible {
   color: var(--white) !important;
  background-color: var(--brown) !important;
  border-color: var(--brown) !important;
  box-shadow: none !important;
}
/*=========================================================
TOP BAR
=========================================================*/

.top-bar {
    background: var(--navy);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.top-bar p {
    color: var(--white);
    margin: 0;
}

.top-bar-close {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    opacity: 0.7;
    font-size: 14px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

.top-bar-close:hover {
    opacity: 1;
}

.top-bar.hidden {
    display: none;
}

/*=========================================================
NAVBAR
=========================================================*/

.navbar {
    background: var(--white) !important;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: none;
}

.navbar > .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    min-height: 56px;
    gap: 8px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy) !important;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 44px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.logo-img-desktop {
    display: block;
}

.logo-img-mobile {
    display: none;
    height: 40px;
    max-width: 140px;
}

@media (max-width: 991px) {
    .logo-img-desktop {
        display: none;
    }

    .logo-img-mobile {
        display: block;
    }
}

.footer-logo {
    height: 40px;
    width: auto;
}

.navbar-nav {
    align-items: center;
    flex-wrap: nowrap;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px !important;
    line-height: 1.2;
    white-space: nowrap;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    color: var(--navy);
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.icon-btn:hover {
    background: var(--surface);
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

@media (min-width: 992px) {
    .navbar > .container {
        display: grid;
        grid-template-columns: minmax(140px, 1fr) auto minmax(140px, 1fr);
        align-items: center;
        column-gap: 20px;
        flex-wrap: nowrap;
    }

    .navbar-brand {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
    }

    .navbar-collapse {
        grid-column: 2;
        grid-row: 1;
        display: flex !important;
        flex-basis: auto;
        flex-grow: 0;
        align-items: center;
        justify-content: center;
        height: auto !important;
    }

    .navbar-nav {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        margin: 0 !important;
        gap: 2px;
    }

    .navbar-actions {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        margin-left: 0;
    }
}

.navbar-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.navbar-toggler:hover {
    background: var(--surface);
    border-color: var(--primary);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(84, 65, 59, 0.15);
}

.navbar-toggler-icon {
    width: 22px;
    height: 2px;
    background-color: var(--navy) !important;
    background-image: none !important;
    border-radius: 2px;
    position: relative;
    transition: background-color var(--transition);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform var(--transition), top var(--transition), background-color var(--transition);
}

.navbar-toggler-icon::before {
    top: -7px;
}

.navbar-toggler-icon::after {
    top: 7px;
}

.navbar-toggler:hover .navbar-toggler-icon,
.navbar-toggler:hover .navbar-toggler-icon::before,
.navbar-toggler:hover .navbar-toggler-icon::after {
    background: var(--primary);
}

.navbar-toggler[aria-expanded="true"] {
    background: var(--primary);
    border-color: var(--primary);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent !important;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    background: var(--white);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }
}

/*=========================================================
BUTTONS
=========================================================*/

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 12px 28px;
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 12px 28px;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

/*=========================================================
HERO
=========================================================*/

.hero-section {
    position: relative;
    min-height: 560px;
    overflow: hidden;
}

.hero-swiper,
.hero-swiper .swiper-slide {
    min-height: 560px;
}

.hero-slide {
    position: relative;
    background: #1a1412 center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.45) 55%, rgba(15, 23, 42, 0.15) 100%);
}

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

.hero-pagination {
    bottom: 8px !important;
    z-index: 3;
}

.hero-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 8px;
    border-radius: 0px;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
    transition: background 0.3s ease, transform 0.3s ease;
}
.hero-pagination.swiper-pagination{
    text-align: right;
}
.hero-pagination .swiper-pagination-bullet-active {
    background: var(--white);
    transform: scale(1.15);
}

.hero-content .hero-tag,
.hero-content .hero-title,
.hero-content .hero-description,
.hero-content .hero-buttons {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.swiper-slide-active .hero-content .hero-tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.swiper-slide-active .hero-content .hero-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.swiper-slide-active .hero-content .hero-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

.swiper-slide-active .hero-content .hero-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.min-vh-hero {
    min-height: 560px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin: 24px 0 20px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 0;
}

.hero-buttons {
    margin-top: 32px;
}

/*=========================================================
FEATURES BAR
=========================================================*/

.features-bar {
    padding: 48px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    flex-shrink: 0;
}

.feature-item h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/*=========================================================
TRENDING SECTION
=========================================================*/

.trending-section {
    padding: 40px 0;
    background: var(--white);
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.section-subtitle-text {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
    /* max-width: 420px; */
}

.view-all-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

.view-all-link:hover {
    color: var(--primary-hover);
}

/*=========================================================
PRODUCT CARD
=========================================================*/

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
    border-color: rgba(84, 65, 59, 0.2);
}

.product-image-wrap {
    position: relative;
    background: var(--surface);
    padding: 0;
    display: block;
    min-height: auto;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 45%, rgba(15, 23, 42, 0.55) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image-overlay {
    opacity: 1;
}

.product-overlay-btn {
    width: 100%;
    max-width: 220px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 16px;
    cursor: pointer;
    transform: translateY(12px);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.product-card:hover .product-overlay-btn {
    transform: translateY(0);
}

.product-overlay-btn:hover:not(:disabled) {
    background: var(--primary);
    color: var(--white);
}

.product-image.is-swapping {
    opacity: 0.72;
}

.product-overlay-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.product-badge {
    position: absolute;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-badge.category {
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(4px);
}

.product-badge.promo {
    top: 16px;
    right: 16px;
}

.product-badge.sale {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FDE68A;
}

.product-badge.bestseller {
    background: #DBEAFE;
    color: #1E40AF;
    border: 1px solid #BFDBFE;
}

.product-badge.waterproof {
    background: #E0F2FE;
    color: #0369A1;
    border: 1px solid #BAE6FD;
}

.product-badge.stock {
    top: 14px;
    right: 14px;
    left: auto;
    z-index: 2;
}

.product-badge.low-stock {
    background: #FFEDD5;
    color: #C2410C;
    border: 1px solid #FED7AA;
}

.product-badge.out-of-stock {
    background: #FEE2E2;
    color: #B91C1C;
    border: 1px solid #FECACA;
}

.product-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0;
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 6px;
}

.product-title {
    flex: 1;
    min-width: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--primary);
}

.product-price-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
    text-align: right;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    line-height: 1.2;
}

.product-discounted-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0.75;
    line-height: 1.2;
}

.btn-add-cart {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    padding: 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
}

.btn-add-cart:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/*=========================================================
COMMITMENT SECTION
=========================================================*/

.commitment-section {
    padding: 80px 0;
    background: var(--brown);
}

.commitment-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.commitment-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 480px;
}

.commitment-image {
    border-radius: var(--radius-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
}

/*=========================================================
FOOTER
=========================================================*/

.footer {
    background: var(--brown-dark);
    color: rgba(255, 255, 255, 0.7);
    padding:36px 0 0;
}

.footer-brand {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.footer-about {
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 24px;
}

.footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--white);
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer-bottom {
    margin-top: 48px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

/*=========================================================
CART OFFCANVAS
=========================================================*/

.offcanvas {
    width: 400px !important;
}

.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 6px;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.cart-empty i {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

/*=========================================================
INNER PAGES
=========================================================*/

.page-hero {
    background: var(--navy);
    color: var(--white);
    padding: 64px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 0 auto;
    font-size: 16px;
}

.page-label {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.page-heading {
    font-size: 34px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.page-subheading {
    color: var(--text-muted);
    font-size: 16px;
}

.about-intro-section,
.products-page-section,
.contact-section,
.values-section {
    padding: 80px 0;
}

.about-image {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.values-section {
    background: var(--surface);
}

.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    height: 100%;
}

.value-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.value-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.product-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: help;
}

.product-filters .form-control,
.product-filters .form-select {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-btn {
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.empty-products {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-products i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.contact-lead {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-item i {
    font-size: 20px;
    color: var(--primary);
    margin-top: 4px;
}

.contact-info-item h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.contact-form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

.contact-form-card .form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
}

.contact-form-card .form-control {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

/*=========================================================
FLOATING ELEMENTS
=========================================================*/

.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 1050;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.floating-whatsapp:hover {
    background: #1FAF57;
    color: var(--white);
    transform: scale(1.08);
}

.back-to-top {
    position: fixed;
    bottom: 92px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-hover);
}

#loader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/*=========================================================
PRODUCTS PAGE
=========================================================*/

.products-page-header {
    padding:24px;
    background: var(--brown);
    background-size:  50% 50%;
    color: var(--white);
}

.seo-breadcrumb {
    background: var(--surface, #f8fafc);
    border-bottom: 1px solid var(--border, #e2e8f0);
    padding: 12px 0;
}

.seo-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: #64748b;
}

.seo-breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.seo-breadcrumb li:not(:last-child)::after {
    content: "/";
    color: #94a3b8;
}

.seo-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.seo-breadcrumb a:hover {
    text-decoration: underline;
}

.seo-breadcrumb [aria-current="page"] {
    color: var(--navy, #0f172a);
    font-weight: 600;
}

.error-404-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.error-404-code {
    font-size: 96px;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.error-404-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy, #0f172a);
    margin-bottom: 12px;
}

.error-404-text {
    max-width: 480px;
    margin: 0 auto 28px;
    color: #64748b;
    line-height: 1.7;
}

.products-page-header h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.products-page-header p {
    color: var(--white);
    font-size: 16px;
    margin: 0;
}

.products-toolbar {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    margin-bottom: 40px;
    align-items: center;
}

.search-field-wrap {
    position: relative;
}

.search-field-wrap i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
}

.search-field-wrap .form-control {
    padding-left: 44px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
}

.toolbar-select {
    height: 48px;
    min-width: 180px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2354413B' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6' fill='none' stroke='%2354413B' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding: 0 40px 0 14px;
    font-size: 14px;
    color: var(--text);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.toolbar-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(84, 65, 59, 0.12);
    outline: none;
}

.toolbar-select::-ms-expand {
    display: none;
}

.catalog-card .product-info,
.trending-card .product-info {
    margin-bottom: 4px;
}

.catalog-card .product-description,
.trending-card .product-description {
    margin: 0 0 12px;
    min-height: calc(1.45em * 2);
    max-height: calc(1.45em * 2);
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-muted);
}

.tooltip.product-desc-tooltip .tooltip-inner {
    max-width: 280px;
    text-align: left;
    font-size: 13px;
    line-height: 1.45;
    padding: 10px 12px;
}

.product-color-field {
    margin-bottom: 14px;
}

.product-color-text {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.4;
}

.product-color-text span {
    color: var(--text);
    font-weight: 700;
}

.color-option-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.color-option {
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.color-option:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
}

.color-option.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.color-option:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-field-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.product-color-select {
    height: 42px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 0;
}

.product-actions-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: auto;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.qty-control button {
    width: 40px;
    height: 44px;
    border: none;
    background: var(--white);
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.qty-control button:hover:not(:disabled) {
    background: var(--surface);
    color: var(--primary);
}

.qty-control input,
.qty-control span {
    width: 40px;
    height: 44px;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-control.disabled {
    opacity: 0.5;
}

.catalog-add-btn {
    flex: 1;
    background: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--primary) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 44px;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.3s ease, border-color 0.3s ease;
}

.catalog-add-btn:hover:not(:disabled) {
    background: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    transform: translateY(-1px);
}

.catalog-add-btn:active:not(:disabled) {
    transform: translateY(0);
}

.product-card.sold-out {
    opacity: 0.88;
}

.product-card.sold-out .product-image {
    filter: grayscale(0.35);
}

.catalog-card.sold-out .catalog-add-btn {
    background: var(--surface) !important;
    color: var(--text-muted) !important;
    border-color: var(--border) !important;
    cursor: not-allowed;
}

.btn-add-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.products-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
}

.page-btn {
    min-width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0 14px;
    transition: var(--transition);
}

.page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.page-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/*=========================================================
CART DRAWER (SCREENSHOT)
=========================================================*/

.cart-offcanvas {
    width: 420px !important;
}

.cart-offcanvas .offcanvas-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid var(--border);
}

.cart-offcanvas .offcanvas-header h4 {
    font-size: 20px;
    color: var(--navy);
}

.cart-offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-drawer-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.cart-drawer-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 0;
    flex-shrink: 0;
    display: block;
}

.cart-drawer-details {
    flex: 1;
    min-width: 0;
}

.cart-drawer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
}

.cart-drawer-top h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 4px;
}

.cart-drawer-color {
    font-size: 12px;
    color: var(--text-muted);
}

.cart-remove-btn {
    border: none;
    background: none;
    color: var(--text-muted);
    padding: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.cart-remove-btn:hover {
    color: #DC2626;
}

.cart-drawer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.cart-footer {
    padding: 20px 24px 24px;
    border-top: 1px solid var(--border);
    background: var(--white);
}

.whatsapp-checkout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.whatsapp-checkout-btn.is-loading,
.whatsapp-checkout-btn:disabled {
    --bs-btn-bg: #19A84C;
    --bs-btn-border-color: #19A84C;
    --bs-btn-disabled-bg: #19A84C;
    --bs-btn-disabled-border-color: #19A84C;
    --bs-btn-disabled-opacity: 1;
    background: #19A84C !important;
    border-color: #19A84C !important;
    color: #fff !important;
    opacity: 1;
    cursor: not-allowed;
    pointer-events: none;
}

.whatsapp-btn-spinner {
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    animation: whatsapp-spin 0.7s linear infinite;
}

@keyframes whatsapp-spin {
    to {
        transform: rotate(360deg);
    }
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--navy);
}

.cart-subtotal strong {
    font-size: 22px;
    color: var(--navy);
}

.cart-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin: 12px 0 0;
}

.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    text-align: center;
    padding: 40px 24px;
}

.cart-empty-state p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.continue-shopping {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}

.continue-shopping:hover {
    color: var(--primary-hover);
}

/*=========================================================
ABOUT PAGE
=========================================================*/

.about-hero {
    position: relative;
    background: url('../images/hero/about-bg.jpg') center/cover no-repeat;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
}

.about-hero .container {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.about-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto;
}

.about-journey-section {
    padding: 80px 0;
}

.about-journey-section p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 32px;
}

.about-stats strong {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.about-stats span {
    font-size: 14px;
    color: var(--text-muted);
}

.mission-vision-section {
    padding: 0 0 80px;
}

.mission-card,
.vision-card {
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
}

.mission-card {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.vision-card {
    background: var(--brown);
    color: var(--white);
}

.mission-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(76, 58, 52, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.vision-card .mission-icon {
    background: rgba(76, 58, 52, 0.1);
    color: var(--white);
}

.mission-card h3,
.vision-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.mission-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.8;
}

.vision-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.8;
}

.difference-section {
    padding: 80px 0;
    background: var(--surface);
}

.difference-item {
    text-align: center;
    padding: 24px 16px;
}

.difference-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 14px;
    background: rgba(76, 58, 52, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.difference-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.difference-item p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

.page-subheading {
    max-width: 640px;
}

/*=========================================================
CONTACT PAGE
=========================================================*/

.contact-hero {
    background: var(--brown);
    padding: 72px 0 120px;
}

.contact-hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto;
}

.contact-main-section {
    margin-top: -80px;
    padding-bottom: 80px;
}

.contact-main-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--border);
}

.contact-form-side {
    padding: 40px;
}

.contact-form-side h2,
.contact-info-side h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-form-sub {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 28px;
}

.contact-form-side .form-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact-form-side .form-control {
    height: 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    font-size: 14px;
}

.contact-form-side textarea.form-control {
    height: auto;
    min-height: 140px;
    resize: vertical;
}

.contact-info-side {
    background: var(--surface);
    padding: 40px;
    height: 100%;
    border-left: 1px solid var(--border);
}

.contact-info-block {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(86, 74, 60, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-block h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.contact-info-block p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.contact-info-block p span {
    font-size: 13px;
    color: var(--text-light);
}

.btn-whatsapp {
    background: #22C55E;
    color: var(--white);
    border: none;
    font-weight: 600;
    padding: 14px;
    border-radius: var(--radius-sm);
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: #16A34A;
    color: var(--white);
}

.contact-map {
    margin-top: 32px;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    background: var(--surface);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

/*=========================================================
LEGAL PAGES
=========================================================*/

.legal-hero {
    background: var(--navy);
    padding: 72px 0 64px;
    text-align: center;
}

.legal-hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.legal-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    max-width: 720px;
    margin: 0 auto 24px;
}

.legal-hero-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
}

.legal-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.legal-hero-points i {
    color: var(--white);
}

.legal-section {
    padding: 64px 0 80px;
    background: var(--surface);
}

.legal-toc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px;
}

.legal-toc-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.legal-toc-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.legal-toc-list a {
    display: block;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.legal-toc-list a:hover,
.legal-toc-list a:focus {
    background: var(--surface);
    color: var(--primary);
}

.legal-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 32px;
    margin-bottom: 24px;
    scroll-margin-top: 110px;
}

.legal-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.legal-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-card p,
.legal-card li {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.legal-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.legal-card ul li {
    margin-bottom: 8px;
}

.legal-card ul li:last-child {
    margin-bottom: 0;
}

.legal-updated {
    margin-top: 20px;
    padding: 14px 16px;
    background: var(--surface);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--navy);
    font-size: 14px;
}

.legal-alert {
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    line-height: 1.6;
}

.legal-alert.info {
    background: rgba(37, 99, 235, 0.08);
    color: var(--navy);
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.legal-alert.success {
    background: rgba(34, 197, 94, 0.08);
    color: #166534;
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.legal-feature-grid .legal-feature-item {
    height: 100%;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}

.legal-info-grid .legal-info-item {
    height: 100%;
    padding: 24px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    background: var(--surface);
}

.legal-info-grid .legal-info-item i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}

.legal-info-grid .legal-info-item h5 {
    margin-top: 0;
    margin-bottom: 8px;
}

.legal-info-grid .legal-info-item p {
    margin-bottom: 0;
}

.legal-security-grid .legal-security-item {
    height: 100%;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
}

.legal-security-grid .legal-security-item h5 {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-security-grid .legal-security-item h5 i {
    color: var(--primary);
}

.legal-security-grid .legal-security-item p {
    margin-bottom: 0;
}

.legal-toc-sticky {
    position: sticky;
    top: 100px;
}
.product-image-wrap{
    position: relative; 
}
.product-brand-identity{
    position: absolute;
    right:10px;
    bottom:10px;
    z-index: 9;
}

.product-badge.type {
    top: 14px;
    right: 14px;
    z-index: 2;
    background: rgba(15, 23, 42, 0.88);
    color: var(--white);
    border: none;
}

/*=========================================================
SEO CONTENT SECTIONS
=========================================================*/

.seo-categories-section,
.seo-reviews-section,
.seo-faq-section {
    padding: 40px 0;
}

.seo-categories-section {
    background: var(--surface);
}

.seo-reviews-section {
    background: var(--white);
}

.seo-faq-section {
    background: var(--surface);
}

.seo-categories-section .section-subtitle-text,
.seo-reviews-section .section-subtitle-text,
.seo-faq-section .section-subtitle-text {
    max-width: 640px;
}

.seo-category-card {
    display: block;
    height: 100%;
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.seo-category-card:hover {
    border-color: rgba(84, 65, 59, 0.35);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.seo-category-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 8px;
}

.seo-category-card p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}

.seo-review-card {
    height: 100%;
    padding: 28px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.seo-review-stars {
    color: #D4A017;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    gap: 2px;
}

.seo-review-card p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 16px;
}

.seo-review-card strong {
    font-size: 14px;
    color: var(--navy);
}

.seo-faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.seo-faq-accordion {
    max-width: 860px;
    margin: 0 auto;
}

.seo-faq-accordion .seo-faq-item,
.seo-faq-accordion .accordion-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
    padding: 0;
}

.seo-faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.seo-faq-accordion .accordion-header {
    margin: 0;
}

.seo-faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 16px;
    color: var(--navy);
    background: var(--white);
    box-shadow: none !important;
    padding: 18px 20px;
    gap: 12px;
    width: 100%;
    border-radius: 0 !important;
}

.seo-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: #faf8f7;
}

.seo-faq-accordion .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 22px;
    font-weight: 400;
    width: auto;
    height: auto;
    line-height: 1;
    transform: none;
    color: var(--primary);
    margin-left: auto;
    flex-shrink: 0;
}

.seo-faq-accordion .accordion-button:not(.collapsed)::after {
    content: "−";
    transform: none;
}

.seo-faq-accordion .accordion-body {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 4px 20px 18px;
}

.seo-faq-accordion .accordion-body a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.seo-faq-item:not(.accordion-item) {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0 20px;
}

.seo-faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--navy);
    padding: 18px 0;
    list-style: none;
}

.seo-faq-item summary::-webkit-details-marker {
    display: none;
}

.seo-faq-item p {
    margin: 0 0 18px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
    margin-left: 0px !important;
  }
}
.spinner-border{
    border: 5px solid var(--primary);
}
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom,8px);
  top: var(--swiper-pagination-top,auto);
  right: 12px;
  width: 100%;
  left: auto;
}