/* ==========================================================================
   AL-MUKHTAR - Luxury Menswear Stylesheet (100% English)
   Color Palette: Deep Royal Blue (#0F2C59), Metallic Gold (#D4AF37), Off-White (#FAF8F5)
   ========================================================================== */

:root {
    --primary-blue: #0F2C59;
    --primary-blue-dark: #091C3A;
    --primary-blue-light: #1A3E75;
    --gold-accent: #D4AF37;
    --gold-hover: #B89320;
    --gold-light: #F4E8C1;
    --gold-border: rgba(212, 175, 55, 0.4);
    --off-white: #FAF8F5;
    --white: #FFFFFF;
    --dark-text: #1C1917;
    --muted-text: #666666;
    --light-gray: #F0EDE8;
    --border-color: #E2DDD5;
    --shadow-sm: 0 2px 8px rgba(15, 44, 89, 0.08);
    --shadow-md: 0 4px 20px rgba(15, 44, 89, 0.12);
    --shadow-lg: 0 10px 30px rgba(15, 44, 89, 0.2);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --transition: all 0.3s ease-in-out;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--dark-text);
    line-height: 1.6;
    direction: ltr;
    text-align: left;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

button, input, select, textarea {
    font-family: inherit;
    outline: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A880 100%);
    color: var(--primary-blue-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #C5A880 0%, #B89320 100%);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
    transform: translateY(-2px);
}

.btn-royal {
    background-color: var(--primary-blue);
    color: var(--gold-accent);
}

.btn-royal:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
}

.btn-outline-light {
    border-color: var(--gold-accent);
    color: var(--gold-accent);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--gold-accent);
    color: var(--primary-blue-dark);
}

.btn-outline-dark {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-outline-dark:hover {
    background: var(--primary-blue);
    color: var(--gold-accent);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
}

.btn-whatsapp:hover {
    background-color: #1EBE5D;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary-blue-dark);
    color: var(--gold-light);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--gold-border);
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-phone {
    color: var(--gold-accent);
    font-weight: 600;
}

/* Header & Nav */
.site-header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold-accent);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-emblem {
    width: 44px;
    height: 44px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold-accent);
    box-shadow: 0 2px 10px rgba(15, 44, 89, 0.2);
}

.gold-shield {
    color: var(--gold-accent);
    font-size: 1.4rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.english-brand-main {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-blue);
    letter-spacing: 1px;
    line-height: 1;
}

.english-sub-tag {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--gold-hover);
    font-weight: 700;
    margin-top: 2px;
}

.main-nav ul {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-weight: 600;
    color: var(--primary-blue-dark);
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-accent);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.search-box {
    position: relative;
    width: 220px;
}

.search-box input {
    width: 100%;
    padding: 8px 12px 8px 36px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background-color: var(--off-white);
    font-size: 0.85rem;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--gold-accent);
    background-color: var(--white);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-text);
    pointer-events: none;
}

.icon-btn {
    background: var(--off-white);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-blue);
    font-size: 1.1rem;
    position: relative;
    transition: var(--transition);
}

.icon-btn:hover {
    background: var(--primary-blue);
    color: var(--gold-accent);
    border-color: var(--primary-blue);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--gold-accent);
    color: var(--primary-blue-dark);
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Tabs */
.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background-color: var(--primary-blue-dark);
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 44, 89, 0.9) 0%, rgba(9, 28, 58, 0.6) 50%, rgba(15, 44, 89, 0.2) 100%);
}

.hero-container {
    position: relative;
    z-index: 10;
    padding: 60px 20px;
}

.hero-card {
    max-width: 600px;
    background: rgba(15, 44, 89, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid var(--gold-border);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-accent);
    border: 1px solid var(--gold-accent);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 25px;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--white);
}

.feature-item i {
    color: var(--gold-accent);
}

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

/* Store Meta Banner */
.store-meta-banner {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    margin-top: -30px;
    position: relative;
    z-index: 20;
    border-radius: var(--radius-md);
}

.store-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 24px;
}

.meta-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.meta-icon {
    font-size: 1.8rem;
    color: var(--gold-accent);
    background: rgba(212, 175, 55, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meta-card h4 {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.meta-card p {
    font-size: 0.85rem;
    color: var(--muted-text);
}

.meta-phone-num {
    font-weight: 700;
    color: var(--primary-blue-dark);
}

/* About Teaser */
.about-teaser-section {
    padding: 80px 0;
}

.about-teaser-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.section-subtitle {
    display: block;
    color: var(--gold-hover);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-blue-dark);
    margin-bottom: 15px;
}

.about-teaser-text p {
    color: var(--muted-text);
    margin-bottom: 25px;
}

.about-highlights {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.hl-box {
    display: flex;
    flex-direction: column;
}

.hl-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-accent);
    font-family: var(--font-heading);
    line-height: 1;
}

.hl-label {
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.visual-card-frame {
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.visual-placeholder {
    height: 360px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.craft-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue-dark);
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
}

.craft-badge i {
    color: var(--gold-accent);
}

/* Categories Section */
.categories-section {
    padding: 60px 0 80px;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.section-header {
    margin-bottom: 45px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cat-card {
    position: relative;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.cat-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.cat-card:hover .cat-bg {
    transform: scale(1.08);
}

.shirt-bg { background-color: #1A3E75; }
.pants-bg { background-color: #2D3748; }
.tee-bg { background-color: #1A202C; }
.all-bg { background-color: #0F2C59; }

.cat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 44, 89, 0.2) 0%, rgba(9, 28, 58, 0.88) 100%);
}

.cat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    color: var(--white);
    z-index: 5;
}

.cat-count {
    font-size: 0.75rem;
    color: var(--gold-accent);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.cat-content h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.cat-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.cat-link {
    font-size: 0.85rem;
    color: var(--gold-accent);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Featured Products */
.featured-products-section {
    padding: 80px 0;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Product Card Component with Real Image Styling */
.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-border);
}

.product-img-wrapper {
    position: relative;
    height: 300px;
    background-color: #F8F6F0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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

.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-blue);
    color: var(--gold-accent);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 5;
}

.quick-view-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(15, 44, 89, 0.85);
    backdrop-filter: blur(4px);
    transition: var(--transition);
    display: flex;
    justify-content: center;
    z-index: 6;
}

.product-card:hover .quick-view-overlay {
    bottom: 0;
}

.product-details {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.75rem;
    color: var(--gold-hover);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-price-row {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--light-gray);
}

.product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.product-price span {
    font-size: 0.8rem;
    color: var(--gold-hover);
}

.add-cart-btn {
    background: var(--off-white);
    color: var(--primary-blue);
    border: 1px solid var(--border-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.add-cart-btn:hover {
    background: var(--gold-accent);
    color: var(--primary-blue-dark);
    border-color: var(--gold-accent);
}

/* Home Location Section */
.home-location-section {
    padding: 80px 0;
}

.location-teaser-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.loc-teaser-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.loc-teaser-info h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.loc-teaser-info p {
    color: var(--muted-text);
    margin-bottom: 20px;
}

.store-quick-list {
    margin-bottom: 25px;
}

.store-quick-list li {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--primary-blue-dark);
}

.gold-check {
    color: var(--gold-accent);
    margin-right: 8px;
}

.loc-btns {
    display: flex;
    gap: 15px;
}

.loc-teaser-map {
    height: 100%;
    min-height: 350px;
}

.map-embed-box {
    width: 100%;
    height: 100%;
}

/* Page Header Banner */
.page-header-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    padding: 50px 0;
    border-bottom: 2px solid var(--gold-accent);
}

.gold-tag {
    color: var(--gold-accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 6px;
}

.page-header-banner h1 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    margin-bottom: 8px;
}

.page-header-banner p {
    color: var(--gold-light);
    font-size: 1.05rem;
}

/* Shop Layout */
.shop-hero-bar {
    background: var(--primary-blue);
    color: var(--white);
    padding: 30px 0;
    margin-bottom: 40px;
    text-align: center;
}

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

.shop-sidebar {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
}

.filter-group {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.filter-group h3 {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.filter-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--dark-text);
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-blue);
    font-weight: 700;
}

.price-range-wrapper input[type="range"] {
    width: 100%;
    accent-color: var(--gold-accent);
    margin-bottom: 10px;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--muted-text);
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
}

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

.sort-select-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.styled-select {
    padding: 8px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--primary-blue-dark);
    font-weight: 600;
    cursor: pointer;
}

/* About Page */
.about-page-content {
    padding: 60px 20px 80px;
}

.about-story-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.story-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.story-text p {
    color: var(--muted-text);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.story-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gold-border);
}

.story-img-placeholder {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.story-icon {
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 15px;
}

/* Location Page */
.location-page-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 30px;
    padding: 60px 20px 80px;
}

.store-info-panel {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

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

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-block h3 {
    font-size: 1.05rem;
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.info-block p {
    font-size: 0.9rem;
    color: var(--muted-text);
}

.hours-list {
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.open-status-badge {
    display: inline-block;
    background: #E6F4EA;
    color: #137333;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
}

.phone-link {
    color: var(--primary-blue);
    font-weight: 700;
}

.map-view-panel {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

/* Contact Page */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    padding: 60px 20px 80px;
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.contact-form-container h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--primary-blue-dark);
    font-size: 0.85rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--off-white);
    font-size: 0.95rem;
}

.contact-direct-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.contact-direct-card h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.direct-link-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.direct-icon { font-size: 1.8rem; }
.wa-color { color: #25D366; }
.phone-color { color: var(--primary-blue); }

/* Cart Drawer */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90%;
    height: 100%;
    background: var(--white);
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    padding: 20px;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--gold-accent);
}

.close-drawer-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
}

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

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

.empty-icon {
    font-size: 3.5rem;
    color: var(--light-gray);
    margin-bottom: 15px;
}

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

.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--gold-hover);
    font-weight: 700;
}

.cart-qty-ctrl {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border: 1px solid var(--border-color);
    background: var(--off-white);
    border-radius: 4px;
    cursor: pointer;
}

.remove-cart-item {
    color: #DC2626;
    background: none;
    border: none;
    font-size: 0.85rem;
    cursor: pointer;
    margin-left: auto;
}

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

.delivery-option-selector {
    margin-bottom: 15px;
    background: var(--white);
    padding: 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.85rem;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
    margin-bottom: 15px;
}

.total-price {
    color: var(--gold-hover);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--white);
    border-radius: var(--radius-md);
    max-width: 800px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gold-border);
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--off-white);
    border: 1px solid var(--border-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.1rem;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 30px;
    gap: 30px;
}

.modal-img-box {
    background: #F8F6F0;
    border-radius: var(--radius-sm);
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal-info-box h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.modal-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-hover);
    margin-bottom: 15px;
}

.modal-desc {
    color: var(--muted-text);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.size-selector {
    margin-bottom: 20px;
}

.size-selector label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-btn {
    padding: 6px 14px;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.size-btn.active {
    background: var(--primary-blue);
    color: var(--gold-accent);
    border-color: var(--primary-blue);
}

/* Checkout Modal */
.checkout-modal-card {
    max-width: 540px;
    padding: 30px;
    text-align: center;
}

.checkout-summary-box {
    background: var(--off-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 15px;
    margin: 20px 0;
    text-align: left;
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Toast */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 4000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--primary-blue-dark);
    color: var(--gold-light);
    border: 1px solid var(--gold-accent);
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideUp 0.3s ease;
}

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

/* Footer */
.site-footer {
    background-color: var(--primary-blue-dark);
    color: var(--white);
    border-top: 3px solid var(--gold-accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding: 60px 20px;
}

.footer-logo .en-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold-accent);
    letter-spacing: 1px;
}

.footer-tagline {
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 12px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.footer-col h4 {
    font-size: 1.05rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-accent);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--gold-accent);
    padding-left: 6px;
}

.gold-icon {
    color: var(--gold-accent);
    margin-right: 8px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .categories-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
    .shop-layout { grid-template-columns: 1fr; }
    .about-teaser-grid, .location-teaser-card, .location-page-grid, .contact-page-grid { grid-template-columns: 1fr; }
    .modal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: block; }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow-md);
        display: none;
        padding: 20px;
    }
    .main-nav.active { display: block; }
    .main-nav ul { flex-direction: column; gap: 15px; }
    .search-box { display: none; }
    .hero-title { font-size: 2.2rem; }
    .store-meta-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
