/* ==============================================================================
   GUA LIVING - DESIGN SYSTEM & STYLESHEET
   ============================================================================== */

/* Theme overrides (Design 2: Daphne, etc.) */
@import url('themes.css');

:root {
    /* Color Palette */
    --color-primary: #1c2321;        /* Very dark forest black */
    --color-secondary: #7d6b58;      /* Antique gold / bronze */
    --color-accent: #a08c75;         /* Warm sand */
    --color-bg-cream: #fbfaf8;       /* Luxurious off-white */
    --color-bg-white: #ffffff;
    --color-header-bg: #fbfaf8;
    --color-footer-bg: #1c2321;
    --color-text-dark: #2f3e3a;      /* Charcoal dark slate text */
    --color-text-light: #6e7e7a;     /* Muted gray-teal */
    --color-border: #e8e4de;
    --color-success: #3c7a6b;
    --color-warning: #d97706;
    --color-danger: #b91c1c;

    /* Admin Dashboard Palette (Sleek Dark Mode) */
    --admin-bg-dark: #0e1211;
    --admin-card-bg: #19201e;
    --admin-border: #2c3835;
    --admin-text-main: #e2e8f0;
    --admin-text-muted: #94a3b8;
    --admin-accent: #c5a880;

    /* Typography */
    --font-luxury: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 10px 30px -10px rgba(28, 35, 33, 0.08);
    --shadow-dropdown: 0 20px 40px -15px rgba(28, 35, 33, 0.15);
    --border-radius: 4px;
}

/* Base Resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: clip;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-cream);
    color: var(--color-text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(217, 119, 6, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); }
}

/* ------------------------------------------------------------------------------
   STOREFRONT SECTION
   ------------------------------------------------------------------------------ */

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.storefront-header {
    background-color: var(--color-header-bg, rgba(251, 250, 248, 0.9));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.market-select {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    background: none;
    border: 1px solid var(--color-border);
    padding: 6px 12px;
    border-radius: var(--border-radius);
    cursor: pointer;
    color: var(--color-text-dark);
    outline: none;
}

.brand-logo {
    font-family: var(--font-luxury);
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    text-decoration: none;
    text-transform: uppercase;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-dark);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.nav-link:hover {
    color: var(--color-secondary);
    border-bottom: 1px solid var(--color-secondary);
}

.admin-toggle-btn {
    background-color: var(--color-primary);
    color: var(--color-bg-cream) !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px !important;
    font-weight: 600;
}

.admin-toggle-btn:hover {
    background-color: var(--color-secondary);
}

.cart-icon-container {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--color-secondary);
    color: white;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(28, 35, 33, 0.7) 30%, rgba(28, 35, 33, 0.2));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-bg-cream);
    max-width: 550px;
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #EFECE6;
    margin-bottom: 15px;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-title {
    font-family: var(--font-luxury);
    font-size: 48px;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
    color: #FFFFFF !important;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

.hero-description {
    font-size: 15px;
    margin-bottom: 35px;
    color: #F5F2EE;
    font-weight: 300;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.btn-primary {
    display: inline-block;
    background-color: var(--color-bg-white);
    color: var(--color-primary);
    padding: 16px 36px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
    transform: translateY(-2px);
}

/* Collections & Products Section */
.shop-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tagline {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-luxury);
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.1em;
}

/* Products Grid */
.product-row-stack {
    display: contents;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px 30px;
}

.product-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    transition: var(--shadow-premium);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-premium);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f3f0ec;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 10px;
    z-index: 10;
}

.product-stock-status {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: var(--color-text-dark);
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 3px;
    border: 1px solid var(--color-border);
    z-index: 10;
}

.product-stock-status.low-stock {
    background-color: rgba(217, 119, 6, 0.15);
    color: var(--color-warning);
    border-color: rgba(217, 119, 6, 0.3);
    font-weight: 600;
    animation: pulse 2s infinite;
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 5px;
}

.product-title {
    font-family: var(--font-luxury);
    font-size: 20px;
    font-weight: 300;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.product-desc {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 10px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
    max-height: 4.8em;
}

.product-more-link {
    display: inline-block;
    font-size: 12px;
    color: var(--color-secondary);
    text-decoration: underline;
    margin-bottom: 15px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.product-more-link:hover {
    color: var(--color-primary);
}

.product-meta-row {
    font-size: 12px;
    background-color: #f7f5f2;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px dashed var(--color-border);
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-family: var(--font-luxury);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-primary);
}

.btn-add-cart {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border: none;
    padding: 10px 18px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-add-cart:hover {
    background-color: var(--color-secondary);
}

.btn-add-cart:disabled {
    background-color: var(--color-border);
    color: var(--color-text-light);
    cursor: not-allowed;
}

/* Instagram Feed Section */
.instagram-section {
    padding: 80px 0;
    border-top: 1px solid var(--color-border);
    background-color: #f7f5f2;
}

.instagram-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.instagram-track {
    display: flex;
    gap: 15px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instagram-card {
    position: relative;
    aspect-ratio: unset !important;
    height: 480px !important;
    overflow: hidden;
    cursor: pointer;
    flex: 0 0 calc(25% - 11.25px); /* 4 visible items */
}

.instagram-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    display: none; /* dynamically set to flex in JS */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-smooth);
    opacity: 0.8;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.instagram-nav-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.instagram-nav-btn.prev {
    left: 10px;
}

.instagram-nav-btn.next {
    right: 10px;
}

.instagram-nav-btn.disabled {
    opacity: 0.2;
    cursor: not-allowed;
    background-color: var(--color-bg-white) !important;
    color: var(--color-primary) !important;
    pointer-events: none;
}

@media (max-width: 992px) {
    .instagram-card {
        flex: 0 0 calc(33.333% - 10px); /* 3 visible items */
    }
}

@media (max-width: 768px) {
    .instagram-track {
        gap: 10px;
    }
    .instagram-card {
        flex: 0 0 calc(50% - 5px); /* 2 visible items */
    }
}

@media (max-width: 480px) {
    .instagram-card {
        flex: 0 0 100% !important; /* 1 visible item on small mobile screens */
    }
}

.instagram-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 35, 33, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.instagram-card:hover .instagram-img {
    transform: scale(1.05);
}

.instagram-card:hover .instagram-overlay {
    opacity: 1;
}

.instagram-tag-popup {
    background-color: var(--color-bg-white);
    color: var(--color-primary);
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 12px;
    box-shadow: var(--shadow-dropdown);
    text-align: center;
}

.instagram-tag-title {
    font-family: var(--font-luxury);
    font-weight: 500;
}

.instagram-tag-price {
    font-size: 11px;
    color: var(--color-secondary);
}

/* Cart Drawer Panel */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    background-color: var(--color-bg-white);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.cart-header {
    padding: 30px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-family: var(--font-luxury);
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.cart-close {
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--color-text-dark);
}

.cart-items-list {
    flex-grow: 1;
    overflow-y: auto;
    padding: 30px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid #f7f5f2;
    padding-bottom: 20px;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    background-color: #f7f5f2;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-family: var(--font-luxury);
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 13px;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.cart-qty-btn {
    border: 1px solid var(--color-border);
    background: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove {
    font-size: 11px;
    color: var(--color-danger);
    cursor: pointer;
    margin-left: auto;
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid var(--color-border);
    background-color: var(--color-bg-cream);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-luxury);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.btn-checkout {
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    padding: 16px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-checkout:hover {
    background-color: var(--color-secondary);
}

/* Modal Checkout */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(28, 35, 33, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.checkout-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.checkout-content {
    background-color: var(--color-bg-white);
    width: 550px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 4px;
    box-shadow: var(--shadow-dropdown);
    animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    padding: 40px;
}

.checkout-form-group {
    margin-bottom: 20px;
}

.checkout-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 8px;
}

.checkout-input, .checkout-select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.payment-method-card {
    border: 1px solid var(--color-border);
    padding: 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    background-color: #faf9f6;
    font-family: var(--font-luxury);
    font-size: 14px;
    font-weight: 500;
}

.payment-method-card.selected {
    border-color: var(--color-secondary);
    background-color: rgba(125, 107, 88, 0.06);
    color: var(--color-secondary);
}

.payment-method-card svg {
    margin-bottom: 8px;
}

.checkout-loading {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.checkout-spinner {
    border: 3px solid rgba(125, 107, 88, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-left-color: var(--color-secondary);
    animation: spin 1s linear infinite;
    margin: 0 auto 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.checkout-success-view {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.checkout-success-icon {
    font-size: 48px;
    color: var(--color-success);
    margin-bottom: 20px;
}

/* Cookie Consent */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 380px;
    background-color: var(--color-primary);
    color: var(--color-bg-cream);
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-radius: 4px;
    z-index: 2000;
    transition: var(--transition-smooth);
    transform: translateY(150%);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-title {
    font-family: var(--font-luxury);
    font-size: 16px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cookie-text {
    font-size: 12px;
    line-height: 1.5;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie-accept {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border: none;
    padding: 10px 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    cursor: pointer;
    flex-grow: 1;
}

.btn-cookie-deny {
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 10px 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
}

/* ------------------------------------------------------------------------------
   ADMIN DASHBOARD SECTION (Sleek Dark Mode)
   ------------------------------------------------------------------------------ */
.admin-wrapper {
    background-color: var(--admin-bg-dark);
    color: var(--admin-text-main);
    min-height: 100vh;
    padding-bottom: 80px;
    display: none; /* Toggled via JavaScript */
}

.admin-header {
    background-color: var(--admin-card-bg);
    border-bottom: 1px solid var(--admin-border);
    padding: 20px 0;
}

.admin-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-brand h2 {
    font-family: var(--font-luxury);
    font-weight: 300;
    color: var(--admin-text-main);
    letter-spacing: 0.1em;
}

.admin-status-badge {
    background-color: rgba(197, 168, 128, 0.15);
    color: var(--admin-accent);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.admin-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

/* KPI Panel */
.kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.kpi-card {
    background-color: var(--admin-card-bg);
    border: 1px solid var(--admin-border);
    border-radius: 4px;
    padding: 20px;
}

.kpi-label {
    font-size: 11px;
    color: var(--admin-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.kpi-value {
    font-family: var(--font-luxury);
    font-size: 24px;
    font-weight: 500;
    color: var(--admin-accent);
}

.kpi-trend {
    font-size: 11px;
    color: var(--color-success);
    margin-top: 5px;
}

/* Orders Dashboard */
.admin-card {
    background-color: var(--admin-card-bg);
    border: 1px solid var(--admin-border);
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 30px;
}

.admin-card-title {
    font-family: var(--font-luxury);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--admin-border);
    padding-bottom: 10px;
    color: var(--admin-text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Orders Table */
.orders-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 13px;
}

.orders-table th {
    padding: 12px;
    color: var(--admin-text-muted);
    border-bottom: 2px solid var(--admin-border);
    font-weight: 500;
}

.orders-table td {
    padding: 15px 12px;
    border-bottom: 1px solid var(--admin-border);
}

.status-indicator {
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.status-indicator.ready {
    background-color: rgba(60, 122, 107, 0.2);
    color: #8cd6c4;
}

.status-indicator.pending {
    background-color: rgba(217, 119, 6, 0.2);
    color: #f5b041;
}

.status-indicator.unfulfilled {
    background-color: rgba(185, 28, 28, 0.2);
    color: #f1948a;
}

.btn-pack-order {
    background-color: var(--admin-accent);
    color: var(--admin-bg-dark);
    border: none;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 3px;
}

/* Packing Checklist Panel */
.packer-checklist-container {
    background-color: var(--admin-card-bg);
    border: 1px solid var(--admin-border);
    border-radius: 4px;
    padding: 25px;
    position: sticky;
    top: 100px;
}

.packer-checklist-title {
    font-family: var(--font-luxury);
    font-size: 18px;
    font-weight: 400;
    color: var(--admin-accent);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pack-step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: rgba(0,0,0,0.2);
    border: 1px solid var(--admin-border);
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.pack-step-item.checked {
    border-color: var(--color-success);
    background-color: rgba(60, 122, 107, 0.08);
}

.pack-step-item input {
    cursor: pointer;
}

.pack-step-label {
    font-size: 13px;
}

.btn-complete-pack {
    width: 100%;
    background-color: var(--color-success);
    color: white;
    padding: 12px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
    cursor: pointer;
    margin-top: 15px;
    transition: var(--transition-smooth);
}

.btn-complete-pack:disabled {
    background-color: #2c3835;
    color: var(--admin-text-muted);
    cursor: not-allowed;
}

/* Bundle Configurator */
.bundle-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    cursor: pointer;
}

.btn-save-bundle {
    background-color: var(--admin-accent);
    color: var(--admin-bg-dark);
    padding: 12px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
}

/* Stock Control Center */
.stock-badge-critical {
    background-color: var(--color-danger);
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
}

.stock-badge-low {
    background-color: var(--color-warning);
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
}

/* Mobile responsive fixes */
@media (max-width: 900px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }
    .kpi-row {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .storefront-header {
        padding: 15px 0;
    }
    .header-inner {
        flex-direction: column;
        gap: 12px;
    }
    .nav-left {
        width: 100%;
        justify-content: center;
    }
    .nav-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    .brand-logo {
        font-size: 22px;
        letter-spacing: 0.15em;
    }

    /* Footer layout adjustments on mobile */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    .footer-about-text {
        display: none !important;
    }
    .footer-contact-mobile {
        display: block !important;
        margin-top: 15px;
        margin-bottom: 10px;
    }
    .footer-service-mobile {
        display: block !important;
    }
    .footer-col-service-desktop {
        display: none !important;
    }
    .footer-col-contact-desktop {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-section {
        height: auto;
        padding: 60px 0;
        min-height: 400px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .legal-modal-content {
        padding: 30px 20px;
    }
    .checkout-content {
        padding: 30px 20px;
    }
    .admin-card {
        padding: 20px 15px;
    }
    .admin-header-inner {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
    }
    .kpi-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cookie-banner {
        left: 15px;
        right: 15px;
        width: auto;
        bottom: 15px;
        padding: 20px;
    }
}


/* ==============================================================================
   SEO-OPTIMIZED FOOTER & LEGAL MODAL STYLES
   ============================================================================== */
.storefront-footer {
    background: linear-gradient(180deg, #1b2320 0%, #111614 100%);
    color: #ffffff;
    padding: 75px 0 35px 0;
    font-size: 14px;
    border-top: 1px solid rgba(197, 160, 89, 0.25);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 1fr 1.1fr;
    gap: 45px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
}

.footer-logo {
    margin-bottom: 12px;
}

.footer-about-text {
    font-size: 13px;
    line-height: 1.65;
    color: #94a3b8;
    font-weight: 300;
    max-width: 320px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.footer-social-icons .social-link-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social-icons .social-link-icon svg {
    width: 16px;
    height: 16px;
}

.footer-social-icons .social-link-icon:hover {
    background: var(--color-accent, #c5a059);
    border-color: var(--color-accent, #c5a059);
    color: #111614;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.35);
}

.footer-col-title {
    font-family: var(--font-primary), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 6px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background-color: var(--color-accent, #c5a059);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 13.5px;
    transition: all 0.2s ease;
    font-weight: 400;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-address {
    font-style: normal;
    font-size: 13px;
    line-height: 1.6;
    color: #94a3b8;
    font-weight: 300;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.footer-address a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-address a:hover {
    color: var(--color-accent, #c5a059);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    font-size: 12px;
    color: #64748b;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 300;
    margin: 0;
}

.footer-copyright a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-copyright a:hover {
    color: var(--color-accent, #c5a059);
    text-decoration: underline;
}

.footer-trust-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-trust-badges span {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 5px 12px;
    border-radius: 20px;
    color: var(--color-accent, #c5a059);
    font-size: 11px;
    letter-spacing: 0.04em;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 600px) {
    .storefront-footer {
        padding: 50px 0 25px 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
}

/* Legal Modal */
.legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(28, 35, 33, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.legal-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.legal-modal-content {
    background-color: var(--color-bg-cream);
    width: 800px;
    max-width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 4px;
    box-shadow: var(--shadow-dropdown);
    position: relative;
    padding: 50px;
    animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 32px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--color-text-dark);
    transition: var(--transition-smooth);
}

.legal-modal-close:hover {
    color: var(--color-secondary);
}

.legal-content-rich-text h1 {
    font-family: var(--font-luxury);
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 15px;
}

.legal-content-rich-text p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}

.legal-content-rich-text strong {
    color: var(--color-primary);
}

.legal-content-rich-text a {
    color: var(--color-secondary);
    text-decoration: none;
    border-bottom: 1px solid var(--color-secondary);
}

.legal-content-rich-text a:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}


/* WYSIWYG Editor Styles */
.wysiwyg-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
    background: #1e2523;
    padding: 10px;
    border: 1px solid var(--admin-border);
    border-bottom: none;
    border-radius: 4px 4px 0 0;
}

.wysiwyg-btn {
    background: #2c3835;
    border: 1px solid var(--admin-border);
    color: var(--admin-text-main);
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 12px;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.wysiwyg-btn:hover, .wysiwyg-btn.active {
    background: var(--admin-accent);
    color: var(--admin-bg-dark);
    border-color: var(--admin-accent);
}

.wysiwyg-editor-area {
    background: #222a27;
    border: 1px solid var(--admin-border);
    color: white;
    min-height: 260px;
    padding: 20px;
    border-radius: 0 0 4px 4px;
    overflow-y: auto;
    outline: none;
    line-height: 1.7;
    font-family: var(--font-body);
    font-size: 14px;
    text-align: left;
}

.wysiwyg-editor-area h1, .wysiwyg-editor-area h2 {
    font-family: var(--font-luxury);
    color: var(--admin-accent);
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 300;
}

.wysiwyg-editor-area p {
    margin-bottom: 15px;
    color: var(--admin-text-main);
}

.wysiwyg-editor-area a {
    color: var(--admin-accent);
    text-decoration: underline;
}

/* ==============================================================================
   MAINTENANCE MODE & SWITCH TOGGLE STYLES
   ============================================================================== */

/* Switch Toggle Container */
.switch-container {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch-container input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2c3835;
    transition: .3s;
    border-radius: 24px;
    border: 1px solid var(--admin-border);
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: var(--admin-text-muted);
    transition: .3s;
    border-radius: 50%;
}

.switch-container input:checked + .switch-slider {
    background-color: var(--admin-accent);
    border-color: var(--admin-accent);
}

.switch-container input:checked + .switch-slider:before {
    transform: translateX(22px);
    background-color: var(--admin-bg-dark);
}

/* Maintenance Overlay */
.maintenance-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: #FBFAF8 !important;
    z-index: 999999 !important;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

body.maintenance-active .maintenance-overlay,
body.maintenance-active #maintenance-overlay,
.maintenance-overlay.active {
    display: flex !important;
}

.maintenance-box {
    background-color: #FFFFFF !important;
    border: 1px solid #E8E4DE !important;
    padding: 50px 40px !important;
    border-radius: 8px !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08) !important;
    width: 460px !important;
    max-width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-sizing: border-box;
}

body.maintenance-active {
    overflow: hidden !important;
}

/* Responsive Mobile Cart Modal styling to prevent offscreen elements & horizontal scrolling */
@media (max-width: 1024px) {
    .cart-drawer {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        max-width: 100vw !important;
        background-color: rgba(28, 35, 33, 0.6) !important;
        backdrop-filter: blur(8px) !important;
        z-index: 2000 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 15px !important;
        
        /* Disable slide-out offscreen translation */
        transform: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.3s ease, visibility 0.3s ease !important;
    }
    
    .cart-drawer.open {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    
    .cart-content {
        background-color: var(--color-bg-white) !important;
        width: 100% !important;
        max-width: 400px !important;
        height: auto !important;
        max-height: 80vh !important;
        border-radius: 8px !important;
        box-shadow: var(--shadow-premium) !important;
        border: 1px solid var(--color-border) !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        
        /* Smooth pop animation when cart opens */
        transform: scale(0.9) !important;
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    }
    
    .cart-drawer.open .cart-content {
        transform: scale(1) !important;
    }
    
    .cart-header {
        padding: 20px !important;
    }
    
    .cart-items-list {
        padding: 20px !important;
        max-height: 50vh !important;
    }
    
    .cart-footer {
        padding: 20px !important;
    }
}

/* Product Editor Modal */
.editor-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(15px);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.editor-modal.open {
    opacity: 1;
    pointer-events: auto;
}
.editor-modal-content {
    background-color: #1a201e;
    border: 1px solid var(--admin-border);
    width: 1120px;
    max-width: 96%;
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.editor-modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--admin-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222a27;
}
.editor-modal-body {
    padding: 25px;
    overflow-y: auto;
}
.editor-modal-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--admin-border);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: #222a27;
}

/* Tabs */
.editor-tabs-nav {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--admin-border);
    margin-bottom: 20px;
}
.editor-tab-btn {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--admin-text-muted);
    padding: 10px 16px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.editor-tab-btn:hover {
    color: white;
}
.editor-tab-btn.active {
    color: var(--admin-accent);
    border-bottom-color: var(--admin-accent);
}
.editor-tab-content {
    display: none;
}
.editor-tab-content.active {
    display: block;
}

/* Dropzone & Upload Slots */
.upload-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.upload-dropzone {
    border: 2px dashed var(--admin-border);
    border-radius: 6px;
    background: rgba(0,0,0,0.15);
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}
.upload-dropzone:hover {
    border-color: var(--admin-accent);
    background: rgba(0,0,0,0.25);
}
.upload-dropzone-inner {
    text-align: center;
    pointer-events: none;
}
.upload-dropzone-inner svg {
    width: 32px;
    height: 32px;
    color: var(--admin-text-muted);
    margin-bottom: 8px;
}
.upload-dropzone-inner span {
    display: block;
    font-size: 12px;
    color: var(--admin-text-muted);
}
.upload-dropzone-inner strong {
    color: var(--admin-accent);
}
.upload-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.upload-change-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    color: white;
    font-size: 12px;
    font-weight: bold;
}
.upload-dropzone:hover .upload-change-overlay {
    opacity: 1;
}

/* 12-Slot Admin Gallery Manager */
.admin-gallery-section {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--admin-border);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}
.admin-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-gallery-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--admin-text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.admin-gallery-count-badge {
    background: rgba(197, 160, 89, 0.2);
    color: var(--admin-accent);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}
.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.admin-gallery-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--admin-border);
    border-radius: 6px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    transition: all 0.2s ease;
}
.admin-gallery-card:hover {
    border-color: rgba(197, 160, 89, 0.5);
    background: rgba(255, 255, 255, 0.05);
}
.admin-gallery-card.is-main {
    border: 1.5px solid var(--admin-accent);
    background: rgba(197, 160, 89, 0.06);
}
.admin-gallery-card-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--admin-text-muted);
}
.admin-gallery-card.is-main .admin-gallery-card-badge {
    color: var(--admin-accent);
}
.admin-gallery-thumb-box {
    width: 100%;
    height: 165px;
    background: #111;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.admin-gallery-thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.admin-gallery-thumb-box:hover img {
    transform: scale(1.04);
}
.admin-gallery-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.admin-gallery-btn {
    flex: 1;
    padding: 5px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid var(--admin-border);
    background: rgba(0, 0, 0, 0.3);
    color: var(--admin-text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.15s ease;
}
.admin-gallery-btn:hover {
    background: var(--admin-accent);
    color: black;
    border-color: var(--admin-accent);
}
.admin-gallery-btn.btn-crop {
    background: rgba(52, 152, 219, 0.15);
    border-color: rgba(52, 152, 219, 0.4);
    color: #60a5fa;
}
.admin-gallery-btn.btn-crop:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}
.admin-gallery-btn.btn-delete {
    flex: 0 0 28px;
    background: rgba(231, 76, 60, 0.15);
    border-color: rgba(231, 76, 60, 0.4);
    color: #f87171;
}
.admin-gallery-btn.btn-delete:hover {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
}
.admin-gallery-alt-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.admin-gallery-alt-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--admin-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.admin-gallery-alt-input {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--admin-border);
    border-radius: 4px;
    padding: 5px 8px;
    font-size: 11px;
    color: var(--admin-text-main);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.admin-gallery-alt-input:focus {
    border-color: var(--admin-accent);
}
.admin-gallery-card-empty {
    background: rgba(0, 0, 0, 0.15);
    border: 1.5px dashed var(--admin-border);
    border-radius: 6px;
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 180px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--admin-text-muted);
    text-align: center;
}
.admin-gallery-card-empty:hover {
    border-color: var(--admin-accent);
    color: var(--admin-accent);
    background: rgba(197, 160, 89, 0.05);
}
.admin-gallery-card-empty.is-main-empty {
    border: 2px dashed #eab308;
    background: rgba(234, 179, 8, 0.05);
    color: #eab308;
}
.admin-gallery-card-empty.is-main-empty:hover {
    background: rgba(234, 179, 8, 0.12);
    border-color: #facc15;
}
.admin-gallery-card-empty svg {
    width: 24px;
    height: 24px;
    opacity: 0.8;
}
.admin-gallery-thumb-box {
    position: relative;
    cursor: pointer;
}
.admin-gallery-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    transition: opacity 0.2s ease;
    border-radius: 4px;
    pointer-events: none;
}
.admin-gallery-thumb-box:hover .admin-gallery-thumb-overlay {
    opacity: 1;
}

/* Cropper Modal Upgrades */
.cropper-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.cropper-modal.open {
    opacity: 1;
    pointer-events: auto;
}
.cropper-content {
    background-color: #1a201e;
    border: 1px solid var(--admin-border);
    padding: 24px;
    border-radius: 10px;
    max-width: 95%;
    width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}
.cropper-viewport-container {
    width: 350px;
    height: 350px;
    position: relative;
    overflow: hidden;
    background: #0d1110;
    border: 2px dashed var(--admin-accent);
    border-radius: 6px;
    cursor: grab;
    user-select: none;
    touch-action: none;
}
.cropper-viewport-container:active {
    cursor: grabbing;
}
.cropper-source-img {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 0 0;
    user-select: none;
    pointer-events: none;
}
.cropper-ratio-bar {
    display: flex;
    gap: 8px;
    width: 100%;
    justify-content: center;
}
.cropper-ratio-btn {
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid var(--admin-border);
    background: rgba(0, 0, 0, 0.3);
    color: var(--admin-text-muted);
    cursor: pointer;
    transition: all 0.15s ease;
}
.cropper-ratio-btn.active, .cropper-ratio-btn:hover {
    border-color: var(--admin-accent);
    color: var(--admin-accent);
    background: rgba(197, 160, 89, 0.15);
}
.cropper-slider-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--admin-text-muted);
    font-size: 12px;
}
.cropper-slider {
    flex: 1;
    accent-color: var(--admin-accent);
    cursor: pointer;
}
.cropper-ctrl-btn {
    padding: 4px 10px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--admin-border);
    color: white;
    border-radius: 4px;
    cursor: pointer;
}
.cropper-ctrl-btn:hover {
    background: var(--admin-accent);
    color: black;
}

/* Storefront Enlarged Product Detail Modal */
.product-detail-card {
    max-width: 1200px !important;
    width: 95% !important;
    max-height: 92vh !important;
    overflow-y: auto !important;
    border-radius: 12px !important;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7) !important;
    border: 1px solid rgba(197, 160, 89, 0.35) !important;
}

.product-detail-grid {
    display: grid !important;
    grid-template-columns: 1.15fr 1fr !important;
    align-items: stretch !important;
    min-height: 580px !important;
}

@media (max-width: 920px) {
    .product-detail-grid {
        grid-template-columns: 1fr !important;
    }
}

.product-detail-gallery {
    background: var(--color-bg-dark, #181f1d) !important;
    padding: 35px 30px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

.product-detail-gallery-container {
    position: relative;
    width: 100%;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-detail-main-img-box {
    position: relative;
    width: 100%;
    height: 520px;
    min-height: 460px;
    max-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-detail-main-img-box img {
    max-width: 100%;
    max-height: 520px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    transition: opacity 0.25s ease, transform 0.3s ease;
}

.product-detail-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(20, 25, 24, 0.85);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
    backdrop-filter: blur(6px);
    font-size: 16px;
}

.product-detail-nav-btn:hover {
    background: var(--color-gold-dark, #c5a059);
    color: black;
    border-color: var(--color-gold-dark, #c5a059);
    transform: translateY(-50%) scale(1.12);
}

.product-detail-nav-btn.prev {
    left: 14px;
}

.product-detail-nav-btn.next {
    right: 14px;
}

.product-detail-thumbs-carousel {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px 2px 10px 2px;
    scrollbar-width: thin;
}

.product-detail-thumbs-carousel::-webkit-scrollbar {
    height: 5px;
}

.product-detail-thumbs-carousel::-webkit-scrollbar-thumb {
    background: rgba(197, 160, 89, 0.5);
    border-radius: 3px;
}

.product-detail-thumb-item {
    width: 74px;
    height: 74px;
    min-width: 74px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.55;
    transition: all 0.2s ease;
    background: #000;
}

.product-detail-thumb-item:hover {
    opacity: 0.95;
    transform: translateY(-3px);
    border-color: rgba(197, 160, 89, 0.5);
}

.product-detail-thumb-item.active {
    border-color: var(--color-gold-dark, #c5a059);
    opacity: 1;
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.5);
    transform: scale(1.04);
}

.product-detail-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info {
    padding: 45px 50px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    background: var(--color-bg-cream, #f9f8f5) !important;
    color: var(--color-text-dark, #1c2321) !important;
    overflow-y: auto !important;
}

@media (max-width: 768px) {
    .product-detail-info {
        padding: 25px 20px !important;
    }
    .product-detail-main-img-box {
        height: 340px !important;
        min-height: 280px !important;
    }
}

/* Dedicated Shop Layout & Sidebar Filters */
.shop-layout-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
}

#dedicated-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px 25px;
    width: 100%;
}

@media (max-width: 1200px) {
    #dedicated-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    #dedicated-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    #dedicated-products-grid {
        grid-template-columns: 1fr;
    }
}

.shop-sidebar {
    position: sticky;
    top: 120px;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    padding: 30px 25px;
    border-radius: 4px;
    box-shadow: var(--shadow-premium);
}

.category-filter-btn {
    background: transparent;
    border: none;
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    text-align: left;
    padding: 6px 0;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid transparent;
}

.category-filter-btn:hover {
    color: var(--color-secondary);
    padding-left: 4px;
}

.category-filter-btn.active {
    color: var(--color-secondary);
    font-weight: 500;
    padding-left: 6px;
    border-bottom-color: var(--color-secondary);
}

.category-filter-btn .cat-count {
    font-size: 11px;
    color: #94a3b8;
    background-color: #f1f5f9;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 500;
}

/* Responsive adjust for shop layout grid */
@media (max-width: 900px) {
    .shop-layout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .shop-sidebar {
        position: relative;
        top: 0;
        padding: 20px;
    }
    #shop-category-filters {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 10px !important;
    }
    .category-filter-btn {
        width: auto;
        border: 1px solid var(--color-border);
        padding: 8px 16px !important;
        border-radius: 4px;
        background-color: var(--color-bg-white);
    }
    .category-filter-btn.active {
        background-color: var(--color-secondary);
        color: white !important;
        border-color: var(--color-secondary);
    }
    .category-filter-btn .cat-count {
        margin-left: 6px;
    }
}

/* Branded Social Media Icons in Footer */
.social-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    background-color: rgba(255, 255, 255, 0.03);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.social-link-icon:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.25s ease;
}

/* Ensure strokes are styled properly for SVG outlines like Instagram */
.social-link-icon svg[fill="none"] {
    fill: none;
    stroke: currentColor;
}

.social-link-icon:hover svg {
    transform: scale(1.1);
}

/* ==============================================================================
   BRAND MARQUEE & ABOUT US SECTION
   ============================================================================== */
.brands-carousel-section {
    padding: 30px 0;
    background-color: var(--color-bg-cream);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.brands-slider {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    user-select: none;
}

.brands-track {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: brands-marquee 25s linear infinite;
    min-width: 100%;
}

.brands-track img {
    height: auto;
    max-height: 240px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.6);
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.brands-track img:hover {
    filter: grayscale(0) opacity(1);
}

@keyframes brands-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.about-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 768px) {
    .about-us-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Pulsing Notification Badge */
.pulsing-order-badge {
    display: inline-block;
    width: 9px;
    height: 9px;
    background-color: #ff453a;
    border-radius: 50%;
    margin-left: 6px;
    box-shadow: 0 0 0 0 rgba(255, 69, 58, 0.7);
    animation: pulse-red 1.6s infinite;
    vertical-align: middle;
}
@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 69, 58, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 69, 58, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 69, 58, 0);
    }
}

/* Pulsing Admin Button */
.pulsing-admin-link {
    animation: blink-admin-btn 2s infinite ease-in-out;
}
@keyframes blink-admin-btn {
    0%, 100% {
        background-color: var(--color-primary);
    }
    50% {
        background-color: #b91c1c;
    }
}

/* Admin Alert Banner */
.admin-alert-banner {
    background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
    border: 1px solid #991b1b;
    padding: 15px 25px;
    border-radius: 6px;
    margin-bottom: 25px;
    color: white;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 25px rgba(185, 28, 28, 0.15);
    animation: fadeInUp 0.4s ease-out;
}

.admin-alert-banner button {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.admin-alert-banner button:hover {
    background: white;
    color: #b91c1c;
}

/* Contact Grid Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

/* ==============================================================================
   ACCESSIBILITY (BARRIEREFREIHEIT) CUSTOM STYLES
   ============================================================================== */

/* Font Size Scaling */
.accessibility-text-large p,
.accessibility-text-large span:not(.accessibility-widget-panel *):not(.accessibility-widget-btn *),
.accessibility-text-large a:not(.accessibility-widget-panel *):not(.accessibility-widget-btn *),
.accessibility-text-large li,
.accessibility-text-large h1,
.accessibility-text-large h2,
.accessibility-text-large h3,
.accessibility-text-large h4,
.accessibility-text-large button:not(.accessibility-widget-panel *):not(.accessibility-widget-btn *),
.accessibility-text-large input,
.accessibility-text-large textarea,
.accessibility-text-large select,
.accessibility-text-large label,
.accessibility-text-large address,
.accessibility-text-large td,
.accessibility-text-large th {
    font-size: 1.18em !important;
}

.accessibility-text-xlarge p,
.accessibility-text-xlarge span:not(.accessibility-widget-panel *):not(.accessibility-widget-btn *),
.accessibility-text-xlarge a:not(.accessibility-widget-panel *):not(.accessibility-widget-btn *),
.accessibility-text-xlarge li,
.accessibility-text-xlarge h1,
.accessibility-text-xlarge h2,
.accessibility-text-xlarge h3,
.accessibility-text-xlarge h4,
.accessibility-text-xlarge button:not(.accessibility-widget-panel *):not(.accessibility-widget-btn *),
.accessibility-text-xlarge input,
.accessibility-text-xlarge textarea,
.accessibility-text-xlarge select,
.accessibility-text-xlarge label,
.accessibility-text-xlarge address,
.accessibility-text-xlarge td,
.accessibility-text-xlarge th {
    font-size: 1.35em !important;
}

/* Contrast Modes */
.accessibility-invert {
    filter: invert(1) hue-rotate(180deg) !important;
    background-color: #000000 !important;
}
.accessibility-invert img,
.accessibility-invert video,
.accessibility-invert iframe,
.accessibility-invert .accessibility-widget-btn,
.accessibility-invert .accessibility-widget-panel,
.accessibility-invert .storefront-logo,
.accessibility-invert .brand-logo,
.accessibility-invert #footer-logo-img {
    filter: invert(1) hue-rotate(180deg) !important;
}

.accessibility-grayscale {
    filter: grayscale(100%) !important;
}

.accessibility-high-contrast {
    filter: contrast(160%) brightness(105%) !important;
}
.accessibility-high-contrast *:not(.accessibility-widget-panel *):not(.accessibility-widget-btn *) {
    text-shadow: 0 0 1px rgba(255,255,255,0.1) !important;
}

/* Focus Indicator Styles */
.accessibility-focus-active *:focus-visible,
.accessibility-focus-active *:focus {
    outline: 3px dashed #ef4444 !important;
    outline-offset: 4px !important;
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.45) !important;
}

/* Legible Font Swaps */
.accessibility-readable-font *:not(.accessibility-widget-panel *):not(.accessibility-widget-btn *):not(i):not(svg):not(.social-link-icon *) {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    letter-spacing: 0.03em !important;
    line-height: 1.85 !important;
}

/* Accessibility Control Panel UI */
.accessibility-widget-btn {
    position: fixed;
    bottom: 85px;
    left: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary, #7d6b58);
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.accessibility-widget-btn:hover {
    transform: scale(1.1);
    background-color: var(--color-secondary, #1c2321);
}
.accessibility-widget-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.accessibility-widget-panel {
    position: fixed;
    bottom: 145px;
    left: 20px;
    width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--color-border, #e2e8f0);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 20px;
    display: none;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #1e293b;
    animation: fadeInUp 0.3s ease-out;
}
.accessibility-widget-panel.open {
    display: block;
}

.accessibility-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
}
.accessibility-widget-header h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0f172a;
}
.accessibility-widget-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #64748b;
    transition: color 0.2s;
    line-height: 1;
    padding: 5px;
}
.accessibility-widget-close:hover {
    color: #0f172a;
}

.accessibility-widget-section {
    margin-bottom: 15px;
}
.accessibility-widget-section-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.accessibility-btn-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.accessibility-btn {
    flex: 1;
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #334155;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}
.accessibility-btn:hover {
    background-color: #f1f5f9;
    border-color: #94a3b8;
}
.accessibility-btn.active {
    background-color: var(--color-primary, #7d6b58);
    border-color: var(--color-primary, #7d6b58);
    color: #ffffff;
}

.accessibility-toggle-btn {
    width: 100%;
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #334155;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.accessibility-toggle-btn:hover {
    background-color: #f1f5f9;
}
.accessibility-toggle-btn.active {
    border-color: var(--color-primary, #7d6b58);
    background-color: #f0fdf4;
    color: #15803d;
}
.accessibility-toggle-btn.active::after {
    content: "✓";
    font-weight: bold;
}

.accessibility-reset-btn {
    width: 100%;
    background-color: #ef4444;
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
}
.accessibility-reset-btn:hover {
    background-color: #dc2626;
}

@media (max-width: 480px) {
    .accessibility-widget-panel {
        left: 10px;
        right: 10px;
        width: auto;
        bottom: 145px;
    }
}

/* ==============================================================================
   ADMIN ORDERS BEACON & TAB STYLES
   ============================================================================== */
@keyframes pulseGreen {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.8);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.pulse-green-dot {
    width: 10px;
    height: 10px;
    background-color: #2ecc71;
    border-radius: 50%;
    display: inline-block;
    animation: pulseGreen 1.6s infinite ease-in-out;
}

@keyframes pulseRedAlert {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.9);
    }
    70% {
        transform: scale(1.15);
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

.pulse-red-dot {
    width: 10px;
    height: 10px;
    background-color: #e74c3c;
    border-radius: 50%;
    display: inline-block;
    animation: pulseRedAlert 1.4s infinite ease-in-out;
}

.orders-tab-btn {
    padding: 10px 18px;
    border: 1px solid var(--admin-border);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    color: #bbb;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.orders-tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.orders-tab-btn.active {
    background: var(--admin-accent);
    color: #1a201e;
    font-weight: bold;
    border-color: var(--admin-accent);
}



