/* ==========================================================================
   BZAN COFFEE - GLOBAL STYLESHEET (MOBILE-FIRST)
   ========================================================================== */

/* 1. IMPORTS & FONT CONFIGURATION */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* 2. DESIGN SYSTEM & ROOT VARIABLES */
:root {
    /* Brand Colors */
    --gold-hex: 212, 175, 55;      /* #D4AF37 */
    --gold-dark-hex: 184, 134, 70; /* #B88646 */
    --brown-hex: 59, 38, 22;       /* #3B2616 */
    
    --gold: rgb(var(--gold-hex));
    --gold-dark: rgb(var(--gold-dark-hex));
    --gold-light: #EAD078;
    --brown: rgb(var(--brown-hex));
    --brown-dark: #1F140B;
    --brown-light: #5A3E29;
    --black: #0D0D0D;
    --black-light: #1A1A1A;
    --cream: #F3EFE9;
    --cream-light: #FAF8F5;
    --cream-dark: #E5DDD3;
    --white: #FFFFFF;
    
    /* Semantic Theme Mappings (Default: Light Mode) */
    --bg-primary: var(--cream-light);
    --bg-secondary: var(--cream);
    --bg-card: var(--white);
    --bg-header: rgba(250, 248, 245, 0.92);
    --text-primary: var(--brown-dark);
    --text-secondary: #5C4A3E;
    --text-muted: #8E7C70;
    --border-color: var(--cream-dark);
    --shadow-color: rgba(59, 38, 22, 0.06);
    --glow-color: rgba(var(--gold-hex), 0.15);
    
    /* Typography */
    --font-main: 'Montserrat', sans-serif;
    
    /* UI Sizing & Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --container-width: 1200px;
    
    /* Sticky header placeholder helper */
    --header-height: 70px;
}

/* Dark Theme Override for Branding Pages */
body.page-dark, .theme-dark {
    --bg-primary: var(--black);
    --bg-secondary: var(--black-light);
    --bg-card: var(--black-light);
    --bg-header: rgba(13, 13, 13, 0.9);
    --text-primary: var(--cream-light);
    --text-secondary: var(--cream-dark);
    --text-muted: #99938C;
    --border-color: #33261C;
    --shadow-color: rgba(0, 0, 0, 0.4);
    --glow-color: rgba(var(--gold-hex), 0.25);
}

/* 3. CSS RESET & BASICS */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

body.no-scroll {
    overflow: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.05em;
    color: inherit;
    text-transform: uppercase;
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

/* 4. LAYOUT SYSTEM */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    max-width: var(--container-width);
}

.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.text-center { text-align: center; }

/* Grid helper */
.grid {
    display: grid;
    gap: 20px;
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

/* Flex helper */
.flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-column { flex-direction: column; }

/* 5. TYPOGRAPHY & BRAND TITLES */
.brand-title {
    font-weight: 300;
    letter-spacing: 0.15em;
    font-size: 1.8rem;
    color: var(--gold);
}

.section-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--gold);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* 6. BUTTONS & INTERACTIVES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background-color: var(--gold-dark);
    box-shadow: 0 4px 15px var(--glow-color);
}

.btn-secondary {
    border: 1px solid var(--gold);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--black);
}

.btn-text {
    padding: 5px 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid transparent;
}

.btn-text:hover {
    color: var(--gold-light);
    border-color: var(--gold-light);
}

/* 7. GLOBAL HEADER & MENU NAVIGATION */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: all var(--transition-normal);
    height: var(--header-height);
}

#main-header.scrolled {
    background-color: var(--bg-header);
    border-color: var(--border-color);
    box-shadow: 0 4px 20px var(--shadow-color);
    backdrop-filter: blur(10px);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform var(--transition-fast);
}

@media (min-width: 992px) {
    .logo-icon {
        height: 65px;
        width: 65px;
    }
}

.logo-icon:hover {
    transform: scale(1.05);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-btn {
    font-size: 1.2rem;
    color: inherit;
    position: relative;
    padding: 5px;
    transition: color var(--transition-fast);
}

.icon-btn:hover {
    color: var(--gold);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--gold);
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Nav Drawer */
#nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-secondary);
    z-index: 1002;
    padding: 80px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: 5px 0 25px rgba(0,0,0,0.15);
    transition: left var(--transition-normal);
}

#nav-menu.active {
    left: 0;
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-link.active, .nav-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* Hamburger toggle */
.menu-toggle-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: none;
    border: none;
    z-index: 1003;
}

.menu-toggle-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: currentColor;
    transition: all var(--transition-fast);
}

.menu-toggle-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle-btn.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

#menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

#menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* 8. MINICART DRAWER */
#minicart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background-color: var(--bg-card);
    z-index: 1005;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    transition: right var(--transition-normal);
    display: flex;
    flex-direction: column;
}

#minicart-drawer.active {
    right: 0;
}

#minicart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1004;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

#minicart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.minicart-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.minicart-title {
    font-size: 1.1rem;
    font-weight: 500;
}

.minicart-close-btn {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.minicart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.minicart-item {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.minicart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background-color: var(--bg-secondary);
}

.minicart-item-info {
    flex: 1;
}

.minicart-item-title {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: none;
    letter-spacing: 0;
}

.minicart-item-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.minicart-item-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-dark);
}

.minicart-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
}

.minicart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.minicart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.minicart-actions .btn {
    width: 100%;
}

/* 9. SEARCH OVERLAY */
#search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

#search-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.search-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--white);
}

.search-form {
    width: 90%;
    max-width: 600px;
    text-align: center;
}

.search-input {
    width: 100%;
    border-bottom: 2px solid var(--gold);
    padding: 15px 0;
    font-size: 1.5rem;
    color: var(--white);
    text-align: center;
    font-weight: 300;
}

.search-input::placeholder {
    color: #555;
}

/* 10. PRODUCT CARD COMPONENT */
.product-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 8px 25px var(--shadow-color), 0 0 10px var(--glow-color);
}

.product-img-wrapper {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background-color: var(--bg-secondary);
    overflow: hidden;
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.product-badge.sale {
    background-color: #C0392B;
    color: var(--white);
}

.product-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(var(--bg-card === var(--white) ? '255,255,255' : '26,26,26'), 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 2;
    backdrop-filter: blur(5px);
    transition: all var(--transition-fast);
}

.product-wishlist-btn:hover, .product-wishlist-btn.active {
    color: #E74C3C;
    background-color: var(--white);
}

.product-actions-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 10px;
    display: flex;
    gap: 8px;
    z-index: 3;
    transform: translateY(102%);
    transition: transform var(--transition-normal);
}

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

.btn-card-action {
    flex: 1;
    padding: 10px 4px;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* Tăng độ tương phản nổi bật cho nút chi tiết dạng viền trên nền ảnh */
.product-actions-overlay .btn-secondary {
    border-color: var(--white);
    color: var(--white);
    background-color: rgba(13, 13, 13, 0.55);
    backdrop-filter: blur(4px);
}

.product-actions-overlay .btn-secondary:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-cat {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.4;
}

.product-title a:hover {
    color: var(--gold-dark);
}

.product-rating {
    font-size: 0.75rem;
    color: var(--gold-dark);
    margin-bottom: 12px;
}

.product-price-row {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-dark);
}

.product-price-old {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

/* 11. HOMEPAGE SPECIFIC SECTIONS */
/* Hero Banner */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--black);
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    z-index: 1;
}

.hero-overlay-radial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 40%, rgba(13,13,13,0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 700px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
    animation: pulse 3s infinite alternate;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-desc {
    font-size: 0.95rem;
    color: var(--cream-dark);
    margin-bottom: 35px;
    font-weight: 300;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* Coffee Journey (Timeline) */
.journey-timeline {
    position: relative;
    padding: 20px 0;
}

.journey-step {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
}

.journey-step-img-box {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.journey-step-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.journey-step:hover .journey-step-img {
    transform: scale(1.05);
}

.journey-step-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.journey-step-num {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(var(--gold-hex), 0.15);
    line-height: 1;
    font-family: inherit;
    margin-bottom: 5px;
}

.journey-step-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.journey-step-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Essence / Features Grid */
.essence-card {
    padding: 30px 20px;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.essence-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.essence-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.essence-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.essence-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* 12. BRAND STORY PAGE (`about.html`) */
.about-hero {
    height: 45vh;
    min-height: 320px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--black);
    color: var(--white);
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-intro-grid {
    align-items: center;
}

.about-intro-text {
    font-size: 1rem;
    color: var(--text-secondary);
}

.about-intro-text p {
    margin-bottom: 15px;
}

.about-intro-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.values-section {
    background-color: var(--bg-secondary);
}

.value-box {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
}

.value-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.shop-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Shop Sidebar Filter Drawer on Mobile */
.shop-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-card);
    z-index: 1010;
    padding: 30px;
    overflow-y: auto;
    box-shadow: 5px 0 25px rgba(0,0,0,0.1);
    transition: left var(--transition-normal);
}

.shop-sidebar.active {
    left: 0;
}

.sidebar-close-btn {
    display: block;
    margin-left: auto;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.filter-widget {
    margin-bottom: 30px;
}

.filter-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-link {
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
}

.filter-link:hover, .filter-link.active {
    color: var(--gold-dark);
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.filter-checkbox-label input {
    accent-color: var(--gold);
}

/* Active Filters bar */
.shop-control-bar {
    background-color: var(--bg-secondary);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
}

.results-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.sort-select {
    padding: 8px 15px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

.btn-mobile-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-card);
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

/* 14. PRODUCT DETAIL PAGE (`product-detail.html`) */
.detail-grid {
    align-items: flex-start;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image-container {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
    padding-top: 100%;
}

.main-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.gallery-thumb {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    cursor: pointer;
    transition: border-color var(--transition-fast);
}

.gallery-thumb.active, .gallery-thumb:hover {
    border-color: var(--gold);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Detail info content */
.detail-info {
    padding: 10px 0;
}

.detail-cat {
    font-size: 0.8rem;
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.detail-title {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.detail-price-row {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
}

.detail-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.detail-price-old {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.detail-short-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

/* Custom Product Options Selector */
.option-group {
    margin-bottom: 20px;
}

.option-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    display: block;
}

.option-selector-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-btn {
    padding: 8px 20px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.option-btn:hover {
    border-color: var(--gold);
}

.option-btn.active {
    border-color: var(--gold);
    background-color: var(--gold);
    color: var(--black);
    font-weight: 500;
}

/* Purchase row */
.purchase-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    border-radius: var(--radius-sm);
    height: 48px;
}

.btn-qty {
    width: 40px;
    height: 100%;
    font-size: 1rem;
}

.qty-input {
    width: 50px;
    height: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.purchase-row .btn-primary {
    flex-grow: 1;
    height: 48px;
}

.purchase-row .product-wishlist-btn {
    position: static;
    width: 48px;
    height: 48px;
    box-shadow: none;
    border: 1px solid var(--border-color);
}

/* Detail tabs info */
.detail-tabs-section {
    margin-top: 40px;
}

.tab-headers {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
    overflow-x: auto;
}

.tab-btn {
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
    color: var(--gold-dark);
    border-color: var(--gold-dark);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn var(--transition-normal);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--text-secondary);
    width: 35%;
}

/* 15. CART PAGE (`cart.html`) */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.cart-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Mobile cart layout: Stack of cards */
.cart-card-item {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 15px;
    display: flex;
    gap: 15px;
    position: relative;
    box-shadow: 0 2px 8px var(--shadow-color);
}

.cart-card-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background-color: var(--bg-secondary);
}

.cart-card-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cart-card-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.cart-card-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cart-card-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

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

.btn-cart-remove {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.btn-cart-remove:hover {
    color: var(--red);
}

/* Cart Summary Section */
.cart-summary-box {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 25px;
}

.summary-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    border-top: 1px dashed var(--border-color);
    padding-top: 15px;
    margin-top: 15px;
}

.coupon-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.coupon-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.btn-apply-coupon {
    padding: 0 15px;
    font-size: 0.8rem;
}

/* 16. CHECKOUT PAGE (`checkout.html`) */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.checkout-section-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

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

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: border-color var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--gold);
}

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

.payment-method-box {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--bg-card);
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.payment-method-box:hover {
    border-color: var(--gold);
}

.payment-method-box.active {
    border-color: var(--gold);
    box-shadow: 0 0 8px var(--glow-color);
    background-color: var(--bg-secondary);
}

.payment-radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
}

.payment-radio-label input {
    accent-color: var(--gold);
}

.payment-desc {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-left: 26px;
    display: none;
}

.payment-method-box.active .payment-desc {
    display: block;
}

/* Order Summary Box */
.order-summary-box {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--bg-secondary);
    padding: 25px;
}

.order-item-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.order-item-name {
    font-weight: 500;
}

.order-item-qty {
    color: var(--text-muted);
    margin-left: 5px;
}

.order-item-price {
    font-weight: 600;
}

/* 17. CONTACT PAGE (`contact.html`) */
.contact-info-block {
    background-color: var(--bg-secondary);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 3px;
}

.contact-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.map-container {
    height: 350px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 18. NEWS & BLOG PAGE (`news.html`) */
.blog-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: all var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.blog-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-info {
    padding: 25px;
}

.blog-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
}

.blog-card-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0;
}

.blog-card-title a:hover {
    color: var(--gold-dark);
}

.blog-excerpt {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* 19. POLICY PAGES (`privacy.html`, `sales-policy.html`) */
.policy-content h2 {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.policy-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.policy-content li {
    margin-bottom: 8px;
}

/* 20. TOAST NOTIFICATION */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 320px;
    width: 90%;
}

.toast-item {
    background-color: var(--black-light);
    color: var(--white);
    border-left: 4px solid var(--gold);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-normal);
}

.toast-item.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-message {
    font-size: 0.85rem;
    font-weight: 500;
}

.toast-close {
    font-size: 1.1rem;
    color: var(--text-muted);
    padding-left: 10px;
}

/* Quickview Modal */
#quickview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

#quickview-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.quickview-container {
    background-color: var(--bg-card);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    position: relative;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.quickview-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* 21. FOOTER SECTION */
#main-footer {
    background-color: var(--black);
    color: var(--white);
    border-top: 1px solid var(--brown);
}

.footer-top {
    padding-top: 60px;
    padding-bottom: 40px;
}

.footer-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--cream-dark);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--black-light);
    border: 1px solid var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-light);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.social-btn:hover {
    background-color: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.footer-title {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--gold);
    font-weight: 600;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: var(--cream-dark);
}

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

.footer-newsletter p {
    font-size: 0.85rem;
    color: var(--cream-dark);
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex: 1;
    background-color: var(--black-light);
    border: 1px solid var(--brown);
    padding: 10px 15px;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--white);
    font-size: 0.85rem;
}

.newsletter-btn {
    background-color: var(--gold);
    color: var(--black);
    padding: 0 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-weight: 600;
}

.newsletter-btn:hover {
    background-color: var(--gold-dark);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-bottom-flex {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

/* 22. KEYFRAME ANIMATIONS */
@keyframes pulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(var(--gold-hex), 0.3)); }
    100% { transform: scale(1.05); filter: drop-shadow(0 0 10px rgba(var(--gold-hex), 0.6)); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE VIEWPORT BREAKPOINTS)
   ========================================================================== */

/* Medium Devices (Tablets, 768px and up) */
@media (min-width: 768px) {
    .section-padding {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }
    
    /* Grid overrides */
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); } /* 2x2 on tablet */
    
    /* Timelines */
    .journey-step {
        flex-direction: row;
        gap: 30px;
    }
    .journey-step:nth-child(even) {
        flex-direction: row-reverse;
    }
    .journey-step-img-box {
        width: 50%;
    }
    .journey-step-info {
        width: 50%;
    }
    
    .shop-layout {
        grid-template-columns: 240px 1fr;
    }
    
    .blog-layout {
        grid-template-columns: 320px 1fr;
    }
    .blog-layout main {
        grid-column: 2;
        grid-row: 1;
    }
    .blog-layout aside {
        grid-column: 1;
        grid-row: 1;
    }
    
    .shop-sidebar {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        box-shadow: none;
        background: none;
        z-index: 1;
    }
    
    .sidebar-close-btn, .btn-mobile-filter {
        display: none;
    }
    
    /* Desktop table layout for cart items */
    .cart-layout {
        grid-template-columns: 1fr 340px;
    }
    
    .checkout-layout {
        grid-template-columns: 1fr 360px;
    }
    
    .detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 40px;
    }
    
    .footer-bottom-flex {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Large Devices (Desktops, 1024px and up) */
@media (min-width: 1024px) {
    :root {
        --header-height: 80px;
    }
    
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    
    /* Nav Menu Desktop */
    #nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        padding: 0;
        flex-direction: row;
        gap: 30px;
        background: none;
        box-shadow: none;
        z-index: 1;
    }
    
    .nav-link {
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 0.15em;
        padding: 5px 0;
        border-bottom: 2px solid transparent;
        transition: all var(--transition-fast);
    }
    
    .menu-toggle-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 40px;
    }
}

/* ==========================================================================
   CUSTOMER REVIEWS SECTION
   ========================================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: flex-start;
}

.reviews-summary {
    background-color: var(--bg-secondary);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
}

.rating-big-num {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: 10px;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.rating-bar-label {
    width: 55px;
    text-align: left;
    color: var(--text-secondary);
    font-weight: 500;
}

.rating-bar-container {
    flex: 1;
    height: 8px;
    background-color: var(--cream-dark);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background-color: var(--gold);
    border-radius: 4px;
}

.rating-bar-percent {
    width: 35px;
    text-align: right;
    color: var(--text-muted);
}

.reviews-list {
    display: flex;
    flex-direction: column;
}

.review-item {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--brown-light);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.review-author-info h4 {
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 2px;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-stars {
    font-size: 0.8rem;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.write-review-form-box {
    margin-top: 30px;
    background-color: var(--bg-secondary);
    padding: 25px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    display: none;
}

.write-review-form-box.active {
    display: block;
    animation: fadeIn var(--transition-normal);
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: 320px 1fr;
    }
}

/* ==========================================================================
   TICKET-STYLE VOUCHER TAGS & MESSAGES
   ========================================================================== */
.voucher-tag {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--bg-secondary);
    border: 1px dashed var(--gold);
    border-radius: var(--radius-sm);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: visible;
    margin: 4px;
    transition: all var(--transition-fast);
    user-select: none;
}

.voucher-tag::before, .voucher-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    background-color: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

.voucher-tag::before {
    left: -4px;
    clip-path: circle(50% at 100% 50%);
    border-left: 0;
}

.voucher-tag::after {
    right: -4px;
    clip-path: circle(50% at 0% 50%);
    border-right: 0;
}

.voucher-tag:hover {
    background-color: var(--gold);
    color: var(--black);
    border-style: solid;
}

/* Coupon Messages */
.minicart-coupon-message, .cart-coupon-message, .checkout-coupon-message {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    margin-top: 8px;
    font-size: 0.75rem;
}

.minicart-coupon-message.success, .cart-coupon-message.success, .checkout-coupon-message.success {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ECC71;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.minicart-coupon-message.error, .cart-coupon-message.error, .checkout-coupon-message.error {
    background-color: rgba(231, 76, 60, 0.1);
    color: #E74C3C;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

/* ==========================================================================
   PRODUCT DETAIL GALLERY SLIDER FIX
   ========================================================================== */
.slider-container {
    position: relative !important;
    padding-top: 100% !important;
}

.slider-wrapper {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 400% !important;
    height: 100% !important;
    display: flex !important;
    transition: transform var(--transition-normal);
}

.slide-item {
    width: 25% !important;
    height: 100% !important;
    flex-shrink: 0 !important;
    position: relative !important;
}

.slide-item img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* ==========================================================================
   SHOP HERO BANNER & BREADCRUMBS DESIGN REDESIGN
   ========================================================================== */
.shop-hero-section {
    background: linear-gradient(rgba(13, 13, 13, 0.72), rgba(13, 13, 13, 0.72)), url('../images/hero-bg.png') no-repeat center center/cover !important;
    padding-top: 140px !important;
    padding-bottom: 60px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--white);
}

.shop-hero-section .section-title {
    color: var(--white) !important;
    font-size: 2.5rem !important;
    margin-top: 5px;
    margin-bottom: 0;
    font-family: var(--font-serif);
}

.shop-hero-section .section-subtitle {
    color: var(--gold) !important;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.shop-hero-section p a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.shop-hero-section p a:hover {
    color: var(--gold);
}

/* Inline Breadcrumbs inside product detail columns */
.breadcrumbs-inline {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.breadcrumbs-inline a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.breadcrumbs-inline a:hover {
    color: var(--gold-dark);
}

/* Header Transparent on Dark Hero style */
.header-transparent-dark:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
}

.header-transparent-dark:not(.scrolled) .nav-link:hover,
.header-transparent-dark:not(.scrolled) .nav-link.active {
    color: var(--gold) !important;
}

.header-transparent-dark:not(.scrolled) .icon-btn {
    color: rgba(255, 255, 255, 0.8) !important;
}

.header-transparent-dark:not(.scrolled) .icon-btn:hover {
    color: var(--gold) !important;
}

.header-transparent-dark:not(.scrolled) .menu-toggle-btn span {
    background-color: rgba(255, 255, 255, 0.8) !important;
}




