/* Default shop theme — Khilung ecommerce (logo-matched) */

:root {
    --theme-primary-color: #c41e3a;
    --theme-secondary-color: #5c6670;
    --theme-accent-color: #0094d9;
    --theme-accent-light: #4ec8f0;
    --theme-nav: #0b3d7a;
    --theme-dark: #1a1a1a;
    --theme-light: #eef3f7;
    --theme-white: #ffffff;
    --theme-border: #dce5ee;
}

/* Global Styles */
body.shop-theme-body {
    font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
    margin: 0;
}

.shop-main {
    min-height: 40vh;
}

/* Header Styles */
.ecommerce-header {
    background: var(--theme-white);
    box-shadow: none;
}

/* Top Bar */
.top-bar {
    background: var(--theme-white);
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 0;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.top-bar .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 768px) {
    .top-bar .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.official-store-text {
    color: #4a4a4a;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.2px;
}

.top-bar-logo {
    max-height: 26px;
    width: auto;
}

.top-bar-brand {
    display: flex;
    align-items: center;
    gap: 3px;
}

.top-bar-brand-t {
    font-size: 22px;
    font-weight: 900;
    color: #0066cc;
    line-height: 1;
    font-family: Arial, sans-serif;
}

.top-bar-brand-name {
    color: #0066cc;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

.top-bar-link {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    transition: color 0.2s ease;
    letter-spacing: 0.1px;
}

.top-bar-link:hover {
    color: #333;
}

/* Main Header */
.main-header {
    padding: 18px 0;
    border-bottom: 1px solid #e5e5e5;
    background: var(--theme-white);
}

.main-header .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 768px) {
    .main-header .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.main-logo {
    display: inline-block;
    text-decoration: none;
    color: var(--theme-dark);
}

.shop-header-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.shop-back-link {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(11, 61, 122, 0.18);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--theme-nav, #0b3d7a);
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.shop-back-link:hover,
.shop-back-link:focus {
    background: rgba(11, 61, 122, 0.06);
    border-color: rgba(11, 61, 122, 0.3);
    color: var(--theme-nav, #0b3d7a);
}

.main-logo-image {
    max-height: 65px;
    width: auto;
}

.main-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo-letter {
    font-size: 58px;
    font-weight: 900;
    color: #000;
    line-height: 0.9;
    font-family: Arial, sans-serif;
    letter-spacing: -2px;
    display: block;
}

.logo-text-below {
    font-size: 12px;
    font-weight: 400;
    color: #4a4a4a;
    margin-top: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    display: block;
}

.search-section {
    padding: 0 25px;
}

.header-search {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
}

.search-input-header {
    border-radius: 25px;
    border: 1px solid #d0d0d0;
    padding: 11px 45px 11px 18px;
    font-size: 14px;
    width: 100%;
    background: #fff;
    transition: border-color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #4a4a4a;
}

.search-input-header::placeholder {
    color: #999;
    font-weight: 400;
}

.search-input-header:focus {
    border-color: #999;
    box-shadow: none;
    outline: none;
}

.search-btn-header {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #666;
    border: none;
    padding: 7px 10px;
    border-radius: 50%;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn-header:hover {
    background: #f5f5f5;
    color: #333;
}

.search-btn-header i {
    font-size: 15px;
}

.user-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.user-action-link {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.2s ease;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.user-action-link:hover {
    color: #333;
}

.user-action-link i {
    font-size: 18px;
    color: #4a4a4a;
    width: 18px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
}

.user-action-link i.fa-user,
.user-action-link i.fas.fa-user {
    font-size: 18px;
    width: 18px;
}

.user-action-link i.fa-shopping-cart,
.user-action-link i.fas.fa-shopping-cart {
    font-size: 18px;
    width: 18px;
}

.user-action-text {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1px;
}

.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--theme-primary-color);
    color: white;
    border-radius: 50%;
    padding: 1px 5px;
    font-size: 10px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Category Navigation Bar */
.category-navbar {
    background: var(--theme-white);
    border-bottom: 1px solid #e5e5e5;
    padding: 0;
}

.category-navbar .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 768px) {
    .category-navbar .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.category-navbar .navbar-toggler {
    width: 100%;
    border: none;
    padding: 12px 15px;
    background: var(--theme-light);
    color: var(--theme-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.category-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    align-items: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
}

.category-nav-menu::-webkit-scrollbar {
    display: none;
}

.category-navbar .navbar-collapse {
    width: 100%;
}

@media (max-width: 767.98px) {
    .category-nav-menu {
        flex-direction: column;
        align-items: stretch;
        overflow-x: visible;
        padding: 0.35rem 0 0.75rem;
    }

    .category-nav-item {
        width: 100%;
        flex-shrink: 1;
    }

    .category-nav-link {
        white-space: normal;
        padding: 0.75rem 0.25rem;
        border-bottom: 1px solid #eef2f6;
    }

    .category-nav-item:last-child .category-nav-link {
        border-bottom: none;
    }

    .category-nav-link--all {
        margin: 0.35rem 0 0.5rem;
        border-radius: 0.75rem;
        justify-content: flex-start;
    }

    .category-navbar .navbar-toggler[aria-expanded="true"] .category-toggler-chevron {
        transform: rotate(180deg);
    }

    .category-toggler-chevron {
        transition: transform 0.2s ease;
    }
}

@media (min-width: 768px) {
    .category-navbar .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        height: auto !important;
    }

    .category-navbar .navbar-toggler {
        display: none;
    }
}

.category-nav-item {
    margin: 0;
    flex-shrink: 0;
}

.category-nav-link {
    display: block;
    padding: 14px 16px;
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.2s ease;
    border-bottom: none;
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.1px;
}

.category-nav-link:hover {
    color: #333;
    background: transparent;
}

/* Promotional Banner Carousel */
.promo-banner-carousel {
    background: #f5f5f5;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.promo-banner-carousel .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 768px) {
    .promo-banner-carousel .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.promo-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 100%;
}

.promo-carousel-content {
    flex: 1;
    overflow: hidden;
    margin: 0 40px;
}

.promo-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    will-change: transform;
}

.promo-carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    text-align: center;
    padding: 0 10px;
    box-sizing: border-box;
}

.promo-text {
    color: #4a4a4a;
    font-size: 13px;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.1px;
}

.promo-carousel-btn {
    background: transparent;
    border: none;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    padding: 4px 6px;
    transition: color 0.2s ease;
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.promo-carousel-btn:hover {
    color: #333;
}

.promo-carousel-btn i {
    font-size: 12px;
}

.promo-carousel-prev {
    left: 5px;
}

.promo-carousel-next {
    right: 5px;
}

/* Hero Banner */
.hero-banner {
    margin-top: 0;
}

.hero-slide {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

/* Section Titles */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--theme-dark);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--theme-primary-color);
}

/* Buttons */
.btn-primary {
    background-color: var(--theme-primary-color);
    border-color: var(--theme-primary-color);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c82333;
    border-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

/* Footer */
.mansa-footer {
    background: #1a1a1a;
    color: #fff;
    margin-top: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.footer-main {
    padding: 50px 0 40px;
    background: #1a1a1a;
}

.footer-main .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

.footer-column {
    margin-bottom: 30px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.footer-heading-social {
    margin-top: 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #fff;
}

.footer-text {
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 16px;
}

.footer-social-icon:hover {
    background: #3a3a3a;
    color: #fff;
    transform: translateY(-2px);
}

/* Footer Bottom Bar */
.footer-bottom {
    background: #1a1a1a;
    border-top: 1px solid #2a2a2a;
    padding: 20px 0;
}

.footer-bottom .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-copyright-text {
    color: #e0e0e0;
    font-size: 13px;
    font-weight: 400;
}

.footer-gift-icon {
    position: relative;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
}

.gift-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-payment-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-payment-icon {
    font-size: 28px;
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    width: 40px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-payment-icon:hover {
    opacity: 1;
}

/* Custom payment icon text */
.payment-google-pay,
.payment-shop-pay,
.payment-unionpay {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    width: 40px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.payment-google-pay:hover,
.payment-shop-pay:hover,
.payment-unionpay:hover {
    opacity: 1;
}

.footer-whatsapp-icon {
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.footer-whatsapp-icon:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.footer-bottom-logo {
    max-height: 40px;
    width: auto;
}

/* Primary navigation */
.top-bar-brand-line {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 0.5rem;
}

.top-bar .top-bar-logo {
    max-height: 22px;
    width: auto;
}

.primary-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem 1.25rem;
}

.primary-nav-link {
    color: var(--theme-nav);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 0;
    border-bottom: 3px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.primary-nav-link:hover,
.primary-nav-link.is-active {
    color: var(--theme-nav);
    border-bottom-color: var(--theme-accent-color);
}

.shop-header-row {
    margin-bottom: 0.75rem;
}

.shop-search-row {
    padding-top: 0.25rem;
}

.shop-header-actions .user-actions {
    justify-content: flex-end;
}

@media (min-width: 992px) {
    .shop-header-nav .primary-nav {
        justify-content: flex-end;
    }

    .shop-header-actions {
        margin-left: 1rem !important;
    }

    .shop-search-row .search-section {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
    }

    .shop-header-row {
        margin-bottom: 0.85rem;
    }
}

.user-action-text {
    line-height: 1.15;
    font-size: 0.8rem;
}

.user-action-text strong {
    font-size: 0.95rem;
    font-weight: 700;
}

.category-nav-link--all {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 148, 217, 0.12), rgba(78, 200, 240, 0.18));
    border-radius: 999px;
    padding: 0.55rem 1rem;
    margin: 0.45rem 0.5rem 0.45rem 0;
    font-weight: 600;
    color: var(--theme-nav);
}

.category-nav-link--all:hover {
    background: linear-gradient(135deg, rgba(0, 148, 217, 0.2), rgba(78, 200, 240, 0.28));
    color: var(--theme-nav);
}

.footer-brand-logo {
    max-height: 52px;
    width: auto;
}

/* Full-width ecommerce hero */
.shop-hero {
    width: 100%;
    margin: 0;
    background: #0b3d7a;
}

.shop-hero .carousel-inner,
.shop-hero .carousel-item,
.shop-hero .carousel-item.active {
    width: 100%;
    height: 100%;
}

.shop-hero__slide {
    position: relative;
    width: 100%;
    height: clamp(360px, 58vh, 620px);
    overflow: hidden;
    background: #0b3d7a;
}

.shop-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.shop-hero__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(110deg, rgba(11, 61, 122, 0.78) 0%, rgba(11, 61, 122, 0.42) 48%, rgba(196, 30, 58, 0.22) 100%);
}

.shop-hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 720px;
    padding: clamp(2rem, 6vw, 5rem) clamp(1.25rem, 6vw, 5rem);
    color: #fff;
}

@media (max-width: 768px) {
    .shop-hero__slide {
        height: clamp(300px, 70vh, 480px);
    }

    .shop-hero__content {
        padding: 1.5rem 1rem 1.75rem;
        max-width: 100%;
    }

    .shop-hero__title {
        font-size: clamp(1.45rem, 6vw, 2rem);
    }

    .shop-hero__lead {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

.shop-hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: var(--theme-accent-light);
}

.shop-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.shop-hero__lead {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    max-width: 34rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.shop-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.shop-btn-primary {
    background: var(--theme-primary-color);
    border: 1px solid var(--theme-primary-color);
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
}

.shop-btn-primary:hover {
    background: #9a1830;
    border-color: #9a1830;
    color: #fff;
}

.shop-btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
}

.shop-btn-ghost:hover {
    background: #fff;
    color: var(--theme-nav);
}

.shop-hero .carousel-control-prev,
.shop-hero .carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: rgba(11, 61, 122, 0.45);
    border-radius: 50%;
    opacity: 1;
}

.shop-hero .carousel-control-prev { left: 1rem; }
.shop-hero .carousel-control-next { right: 1rem; }

.shop-hero .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.55);
}

.shop-hero .carousel-indicators .active {
    background-color: var(--theme-accent-light);
}

.shop-trust {
    border-bottom: 1px solid var(--theme-border);
    background: #fff;
}

.shop-trust .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

.shop-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.25rem 0;
}

.shop-trust__item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.shop-trust__item i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 148, 217, 0.12);
    color: var(--theme-nav);
}

.shop-trust__item strong {
    display: block;
    color: var(--theme-nav);
    font-size: 0.95rem;
}

.shop-trust__item span {
    display: block;
    color: #667;
    font-size: 0.82rem;
}

.shop-section {
    padding: 2.75rem 0;
}

.shop-section--products {
    background: linear-gradient(180deg, #f7fafc 0%, #fff 100%);
    border-top: 1px solid var(--theme-border);
}

.shop-section .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

.shop-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.shop-section__eyebrow {
    margin: 0 0 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--theme-accent-color);
}

.shop-section__title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--theme-nav);
}

.shop-section__link {
    color: var(--theme-nav);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.shop-section__link:hover {
    color: var(--theme-primary-color);
}

.category-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    padding: 1rem 0.75rem;
    border: 1px solid var(--theme-border);
    border-radius: 1rem;
    background: #fff;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(11, 61, 122, 0.12);
    border-color: rgba(0, 148, 217, 0.35);
    color: inherit;
}

.category-tile img {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(0, 148, 217, 0.15);
}

.category-tile__name {
    font-size: 0.92rem;
    font-weight: 700;
    text-align: center;
    color: var(--theme-nav);
}

.product-card {
    border: 1px solid var(--theme-border);
    border-radius: 0.85rem;
    background: #fff;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(11, 61, 122, 0.12);
}

.product-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.product-card__media {
    aspect-ratio: 1;
    background: #f3f7fb;
    overflow: hidden;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card:hover .product-card__media img {
    transform: scale(1.04);
}

.product-card__body {
    padding: 0.95rem 1rem 1.15rem;
}

.product-card__category {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--theme-accent-color);
    margin-bottom: 0.35rem;
}

.product-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.45rem;
    color: var(--theme-nav);
}

.product-card__price {
    margin: 0 0 0.55rem;
    font-weight: 800;
    color: var(--theme-primary-color);
}

.product-card__cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--theme-nav);
}

.shop-featured-loadmore {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.shop-featured-loadmore__btn {
    min-width: 10.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(11, 61, 122, 0.25);
    background: #fff;
    color: var(--theme-nav);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.shop-featured-loadmore__btn:hover:not(:disabled) {
    background: rgba(0, 148, 217, 0.08);
    border-color: rgba(0, 148, 217, 0.45);
    color: var(--theme-nav);
    box-shadow: 0 8px 18px rgba(11, 61, 122, 0.08);
}

.shop-featured-loadmore__btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

.shop-featured-loadmore__sentinel {
    width: 100%;
    height: 1px;
    pointer-events: none;
}

.shop-auth {
    padding: 3.5rem 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 148, 217, 0.1), transparent 40%),
        radial-gradient(circle at 90% 0%, rgba(196, 30, 58, 0.08), transparent 35%),
        #f7fafc;
}

.shop-auth .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

.shop-auth__card {
    max-width: 460px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--theme-border);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 18px 40px rgba(11, 61, 122, 0.08);
}

.shop-auth__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--theme-accent-color);
}

.shop-auth__title {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--theme-nav);
    margin-bottom: 0.5rem;
}

.shop-auth__lead {
    color: #667;
    margin-bottom: 1.5rem;
}

.shop-auth__footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
}

.shop-auth__footer a {
    color: var(--theme-nav);
    font-weight: 600;
    text-decoration: none;
}

.shop-page {
    padding: 2.75rem 0 3.5rem;
    background: #fff;
}

.shop-page .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
}

.shop-page__eyebrow {
    margin: 0 0 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--theme-accent-color);
}

.shop-page__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--theme-nav);
}

.shop-page__lead {
    max-width: 42rem;
    color: #5c6670;
    margin-bottom: 1.75rem;
}

.shop-page__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.shop-page__card {
    border: 1px solid var(--theme-border);
    border-radius: 1rem;
    padding: 1.25rem;
    background: #f7fafc;
}

.shop-page__card h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--theme-nav);
    margin-bottom: 0.65rem;
}

.shop-page__card p,
.shop-page__card li {
    color: #5c6670;
}

.shop-page__card ul {
    padding-left: 1.1rem;
    margin-bottom: 0;
}

.shop-page__meta {
    margin: 0 0 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--theme-accent-color);
}

.shop-page__card a {
    color: var(--theme-nav);
    font-weight: 600;
}

.shop-about {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.9fr);
    gap: 1.25rem;
    align-items: start;
    margin-bottom: 0.5rem;
}

.shop-about__aside .btn {
    width: 100%;
}

.shop-page__richtext {
    color: #526274;
    line-height: 1.7;
    font-size: 1rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.shop-page__richtext h2,
.shop-page__richtext h3 {
    color: var(--theme-nav);
    font-weight: 800;
    margin-top: 1.25rem;
    margin-bottom: 0.65rem;
}

.shop-page__richtext img,
.shop-page__richtext figure,
.shop-page__richtext video,
.shop-page__richtext iframe,
.shop-page__richtext table {
    max-width: 100%;
    height: auto;
}

.shop-page__richtext img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 0.75rem;
    object-fit: contain;
}

.shop-page__richtext figure {
    margin: 1rem 0;
}

.shop-page__richtext figure img {
    margin: 0;
}

.shop-page__richtext table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.shop-page__richtext p:last-child,
.shop-page__richtext ul:last-child,
.shop-page__richtext ol:last-child {
    margin-bottom: 0;
}

.shop-about__content,
.shop-blog-detail__content {
    overflow: hidden;
}

.shop-contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 1.25rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.shop-contact__info {
    display: grid;
    gap: 1rem;
}

.shop-contact__info .shop-page__card {
    margin: 0;
}

.shop-contact__whatsapp {
    width: 100%;
}

.shop-contact__alert {
    margin-bottom: 1.25rem;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid color-mix(in srgb, var(--theme-accent-color) 35%, #c8e6c9);
    background: color-mix(in srgb, var(--theme-accent-color) 12%, #f0fff4);
    color: var(--theme-nav);
    font-weight: 600;
}

.contact-success-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(15, 23, 42, 0.45);
}

.contact-success-overlay__card {
    width: min(100%, 420px);
    text-align: center;
    background: #fff;
    border: 1px solid var(--theme-border);
    border-radius: 1rem;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.contact-success-overlay__title {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--theme-nav);
}

.contact-success-overlay__text {
    margin: 0 0 1.25rem;
    color: #5c6670;
    line-height: 1.5;
}

.shop-contact__form-card h2 {
    margin-bottom: 1rem;
}

.shop-contact__form label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--theme-nav);
}

.shop-contact__form input,
.shop-contact__form textarea {
    width: 100%;
    margin-bottom: 0.35rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--theme-border);
    border-radius: 0.75rem;
    font: inherit;
    background: #fff;
    color: var(--theme-nav);
}

.shop-contact__form .text-danger {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.shop-contact__form textarea {
    min-height: 130px;
    resize: vertical;
}

.shop-contact__form .btn {
    margin-top: 0.35rem;
}

.shop-contact__map-block {
    margin-top: 0.5rem;
}

.shop-contact__map-title {
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.shop-contact__map {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--theme-border);
    background: #f7fafc;
}

.shop-contact__map iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.shop-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.shop-blog-card {
    position: relative;
    border: 1px solid var(--theme-border);
    border-radius: 1rem;
    background: #f7fafc;
    padding: 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.shop-blog-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 148, 217, 0.35);
    box-shadow: 0 12px 26px rgba(11, 61, 122, 0.1);
}

.shop-blog-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.shop-blog-card__title {
    margin: 0 0 0.55rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--theme-nav);
    line-height: 1.35;
}

.shop-blog-card__excerpt {
    margin: 0 0 0.85rem;
    color: #5c6670;
    font-size: 0.94rem;
    line-height: 1.55;
}

.shop-blog-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--theme-accent-color);
}

.shop-blog-card__date {
    display: block;
    margin-top: 0.85rem;
    font-size: 0.78rem;
    color: #8a96a3;
}

.shop-blog-detail__nav {
    margin-bottom: 1rem;
}

.shop-blog-detail__nav a {
    color: var(--theme-secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.shop-blog-detail__nav a:hover {
    color: var(--theme-nav);
}

.shop-blog-detail__meta {
    margin: -0.35rem 0 1.25rem;
    color: #8a96a3;
    font-size: 0.88rem;
}

.shop-blog-detail__content {
    margin-bottom: 1.25rem;
}

.shop-blog-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

@media (max-width: 992px) {
    .shop-page__grid {
        grid-template-columns: 1fr;
    }

    .shop-contact,
    .shop-about,
    .shop-blog-grid {
        grid-template-columns: 1fr;
    }

    .shop-contact__map iframe {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .shop-page .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .shop-page__richtext img {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin-left: 0;
        margin-right: 0;
    }

    .shop-page__card {
        overflow: hidden;
    }
}

@media (max-width: 992px) {
    .shop-trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .primary-nav {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 0.15rem 0.85rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0.15rem 0 0.35rem;
        margin: 0 -0.15rem;
    }

    .primary-nav::-webkit-scrollbar {
        display: none;
    }

    .primary-nav-link {
        font-size: 0.78rem;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .user-action-text {
        display: none;
    }

    .main-header {
        padding: 12px 0 14px;
    }

    .main-logo-image {
        max-height: 48px;
    }

    .shop-header-row {
        margin-bottom: 0.5rem;
    }

    .shop-header-nav {
        min-width: 0;
    }

    .shop-search-row {
        padding-top: 0;
    }

    .search-section {
        padding: 0;
        margin: 0;
    }

    .search-input-header {
        font-size: 13px;
        padding: 10px 44px 10px 14px;
    }

    .user-actions {
        gap: 16px;
        justify-content: flex-end;
    }

    .user-action-link {
        min-width: 40px;
        min-height: 40px;
        justify-content: center;
    }

    .user-action-link i {
        font-size: 1.15rem;
    }

    .cart-count-badge {
        top: -4px;
        right: -6px;
    }

    .category-navbar .navbar-toggler {
        margin: 0.35rem 0;
        border-radius: 0.65rem;
        background: var(--theme-light);
        font-size: 0.92rem;
    }

    .shop-section .container-fluid,
    .shop-trust .container-fluid,
    .shop-auth .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .shop-trust__grid {
        grid-template-columns: 1fr;
    }

    .shop-hero .carousel-control-prev,
    .shop-hero .carousel-control-next {
        display: none;
    }
}

@media (max-width: 576px) {
    .shop-header-brand {
        gap: 0.5rem;
    }

    .shop-back-link {
        padding: 0.35rem 0.65rem;
        font-size: 0.72rem;
    }

    .main-logo-image {
        max-height: 42px;
    }

    .primary-nav-link {
        font-size: 0.74rem;
        letter-spacing: 0.03em;
    }

    .search-input-header {
        font-size: 12px;
        padding: 9px 42px 9px 12px;
    }

    .search-input-header::placeholder {
        font-size: 12px;
    }
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-main .container-fluid,
    .footer-bottom .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .footer-bottom-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .footer-bottom-right {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-main .container-fluid,
    .footer-bottom .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .footer-column {
        margin-bottom: 35px;
    }
    
    .footer-heading {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .footer-link,
    .footer-text {
        font-size: 13px;
    }
    
    .footer-social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-copyright-text {
        font-size: 12px;
    }
    
    .footer-payment-icon {
        font-size: 24px;
    }
    
    .footer-whatsapp-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}
