/* style.css - Premium Luxury Dark & Gold CSS for K LUXE SHOP */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&family=Tajawal:wght@300;400;500;700;900&display=swap');

:root {
    --bg-primary: #0a0a0c;
    --bg-secondary: #121216;
    --bg-card: #18181f;
    --bg-input: #1f1f27;
    
    --color-gold: #d4af37;
    --color-gold-dark: #aa8618;
    --color-gold-light: #f7e096;
    --color-gold-gradient: linear-gradient(135deg, #f7e096 0%, #d4af37 50%, #aa8618 100%);
    
    --text-primary: #ffffff;
    --text-secondary: #b5b5c0;
    --text-muted: #7e7e8c;
    
    --border-color: #262630;
    --border-gold: rgba(212, 175, 55, 0.3);
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.5);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.7);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.9);
    --shadow-gold: 0 0 15px rgba(212, 175, 55, 0.25);
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-primary: 'Cairo', 'Tajawal', sans-serif;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-primary);
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* Base Layout Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-fast);
}

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

.logo a {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 2px;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo a::before {
    content: 'K';
    font-family: serif;
    font-size: 32px;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    padding: 0 10px;
    margin-left: 5px;
    border-radius: 4px;
    text-shadow: none;
    -webkit-text-fill-color: var(--color-gold);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

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

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

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

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

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(18, 18, 22, 0.5) 0%, transparent 50%);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0) 60%, rgba(10, 10, 12, 1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 5px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Search and Filters Section */
.search-filter-section {
    margin-top: -30px;
    position: relative;
    z-index: 10;
    margin-bottom: 50px;
}

.search-filter-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

.search-box {
    position: relative;
    margin-bottom: 20px;
}

.search-box input {
    width: 100%;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 50px 15px 20px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 16px;
    transition: var(--transition-fast);
}

.search-box input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.search-box i {
    position: absolute;
    right: 20px;
    top: 50px;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 18px;
}

.search-box::after {
    content: '🔍';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    opacity: 0.6;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.filter-group select, .filter-group input[type="range"] {
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 14px;
    outline: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-group select:focus {
    border-color: var(--color-gold);
}

.price-range-values {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

/* Category Quick Select */
.categories-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 5px 0;
    margin-bottom: 10px;
    justify-content: center;
}

.category-tab {
    padding: 8px 20px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.category-tab:hover, .category-tab.active {
    background: var(--color-gold-gradient);
    color: var(--bg-primary);
    border-color: transparent;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}

/* Product Grid and Card */
.products-section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-right: 4px solid var(--color-gold);
    padding-right: 15px;
}

.products-count {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: var(--transition-smooth);
}

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

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: var(--bg-secondary);
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-gold-gradient);
    color: var(--bg-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 5;
    box-shadow: var(--shadow-sm);
}

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

.product-card-category {
    font-size: 12px;
    color: var(--color-gold);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: auto;
}

.product-card-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    white-space: nowrap;
}

.product-card-price span {
    font-size: 13px;
    color: var(--color-gold);
    font-weight: 600;
    margin-right: 3px;
}

.btn-details {
    padding: 8px 16px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    background: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-details:hover {
    background: var(--color-gold-gradient);
    color: var(--bg-primary);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

/* Product Detail Page */
.product-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 80px;
}

.product-gallery {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.product-info-panel {
    display: flex;
    flex-direction: column;
}

.product-meta-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.product-detail-category {
    font-size: 14px;
    color: var(--color-gold);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-detail-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-detail-id {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.product-detail-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    white-space: nowrap;
}

.product-detail-price span {
    font-size: 16px;
    color: var(--color-gold);
    margin-right: 5px;
}

.product-detail-description {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.product-options-form {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    margin-bottom: 30px;
}

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

.option-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

.size-radio {
    display: none;
}

.size-label {
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--bg-card);
    transition: var(--transition-fast);
}

.size-label:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.size-radio:checked + .size-label {
    border-color: var(--color-gold);
    color: var(--bg-primary);
    background: var(--color-gold-gradient);
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.btn-primary {
    flex-grow: 1;
    background: var(--color-gold-gradient);
    color: var(--bg-primary);
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-fast);
}

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

.info-box {
    background-color: var(--bg-secondary);
    border: 1px dashed var(--border-gold);
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.info-box-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-box-title::before {
    content: '⚠️';
    font-size: 14px;
}

.info-box-content {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Checkout Page */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 80px;
    align-items: start;
}

@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

.order-summary-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

@media (min-width: 769px) {
    .order-summary-card {
        position: sticky;
        top: 100px;
    }
}

.summary-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    color: var(--color-gold);
}

.summary-product {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.summary-img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.summary-img:hover {
    transform: scale(1.05);
    border-color: var(--color-gold);
}

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

.summary-prod-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.summary-prod-size {
    font-size: 13px;
    color: var(--text-muted);
}

/* Success Product Preview Styling */
.success-product-preview {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.success-prod-img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.success-prod-img:hover {
    transform: scale(1.05);
    border-color: var(--color-gold);
}

.success-prod-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.success-prod-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.success-prod-size {
    font-size: 13px;
    color: var(--color-gold);
    font-weight: 700;
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--border-gold);
    align-self: flex-start;
}

@media (max-width: 480px) {
    .success-product-preview {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .success-prod-size {
        align-self: center;
    }
}

.summary-price-breakdown {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.price-row.total {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}

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

.checkout-form-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
}

.form-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group label span {
    color: var(--accent-red);
    margin-right: 3px;
}

.form-group input, .form-group select, .form-group textarea {
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 15px;
    outline: none;
    transition: var(--transition-fast);
}

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

.radio-group-container {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.radio-btn {
    display: none;
}

.radio-label {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-input);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-fast);
    text-align: center;
}

.radio-label:hover {
    border-color: var(--color-gold);
}

.radio-btn:checked + .radio-label {
    border-color: var(--color-gold);
    background-color: rgba(212, 175, 55, 0.05);
    color: var(--color-gold-light);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.radio-subtext {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 3px;
}

/* Success Confirmation Dialog */
.success-container {
    max-width: 600px;
    margin: 60px auto;
    text-align: center;
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 45px 30px;
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-icon {
    font-size: 60px;
    color: var(--color-gold);
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

.success-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

.success-msg {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.success-details-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 35px;
    text-align: right;
}

.success-details-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
}

.success-details-row:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 16px;
}

.success-details-label {
    color: var(--text-muted);
}

.success-details-value {
    color: var(--text-primary);
}

.success-details-value.highlight {
    color: var(--color-gold);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.product-card.animate-fade {
    animation: cardFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }
    100% {
        transform: scale(1);
    }
}

/* Footer Section */
footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    margin-top: 80px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 15px;
}

/* General Buttons */
.btn-submit {
    width: 100%;
    background: var(--color-gold-gradient);
    color: var(--bg-primary);
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    text-align: center;
    margin-top: 15px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-gold);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header {
        position: relative;
    }
    .header-container {
        height: auto;
        padding: 15px 0;
        flex-direction: column;
        gap: 15px;
    }
    .nav-menu {
        gap: 15px;
    }
    .hero {
        padding: 50px 0;
    }
    .hero-title {
        font-size: 30px;
    }
    .hero-description {
        font-size: 14px;
    }
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .product-detail-title {
        font-size: 24px;
    }
}

/* News Ticker Bar Styles */
.news-ticker-bar {
    background: var(--color-gold-gradient);
    color: #0a0a0c;
    height: 38px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--color-gold-dark);
    font-size: 13px;
    font-weight: 700;
    z-index: 1010;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

.ticker-content {
    display: inline-block;
    animation: ticker-marquee 35s linear infinite;
    padding-left: 50px;
}

.ticker-wrap:hover .ticker-content {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-block;
}

.ticker-separator {
    margin: 0 25px;
    color: rgba(10,10,12,0.4);
    font-size: 14px;
}

@keyframes ticker-marquee {
    0% {
        transform: translate3d(100%, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Product Detail Thumbnail Gallery Styles */
.product-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.thumbnail {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
    background-color: var(--bg-card);
}

.thumbnail:hover, .thumbnail.active {
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   ADMIN DASHBOARD PREMIUM STYLING
   ========================================================================== */

.admin-layout-wrapper {
    margin-top: 30px;
    margin-bottom: 60px;
}

/* Stats dashboard row */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.admin-stat-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: right;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
}

.admin-stat-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.admin-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--border-color);
}

.admin-stat-card.stat-gold::after { background: var(--color-gold-gradient); }
.admin-stat-card.stat-pending::after { background: #f1c40f; }
.admin-stat-card.stat-shipped::after { background: #2ecc71; }
.admin-stat-card.stat-cancelled::after { background: #e74c3c; }

.admin-stat-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.admin-stat-val {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
}

.admin-stat-val.gold-text {
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Tabs navigation */
.admin-nav-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 30px;
    overflow-x: auto;
    white-space: nowrap;
}

.admin-tab-btn {
    padding: 10px 24px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-tab-btn:hover, .admin-tab-btn.active {
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    background-color: rgba(212, 175, 55, 0.05);
}

.admin-tab-btn.active {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

/* Banner system */
.admin-banner {
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-banner.success {
    background-color: rgba(46, 204, 113, 0.15);
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

.admin-banner.error {
    background-color: rgba(231, 76, 60, 0.15);
    border: 1px solid #e74c3c;
    color: #e74c3c;
}

/* Interactive Data Tables */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    margin-bottom: 30px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
    font-size: 14px;
}

.admin-table th {
    background-color: rgba(255,255,255,0.02);
    color: var(--color-gold);
    padding: 15px 20px;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
}

.admin-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    vertical-align: middle;
}

.admin-table tr:hover td {
    background-color: rgba(255,255,255,0.01);
    color: var(--text-primary);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.status-badge.pending {
    background-color: rgba(241, 196, 15, 0.15);
    color: #f1c40f;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.status-badge.shipped {
    background-color: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.status-badge.cancelled {
    background-color: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* Orders filter layout */
.orders-filter-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-badge {
    padding: 6px 14px;
    border-radius: 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-badge:hover, .filter-badge.active {
    border-color: var(--color-gold);
    color: var(--text-primary);
}

.filter-badge.active {
    background-color: var(--border-color);
}

/* Expanded order details */
.order-details-expanded-row td {
    background-color: rgba(0,0,0,0.2) !important;
    padding: 0;
}

.order-details-expanded-content {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background-color: rgba(212, 175, 55, 0.02);
    border-top: 1px dashed rgba(212, 175, 55, 0.1);
    border-bottom: 1px dashed rgba(212, 175, 55, 0.1);
}

.details-col strong {
    display: block;
    margin-bottom: 8px;
    color: var(--color-gold-light);
    font-size: 13px;
}

.details-col p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Admin forms styling inside card */
.admin-form-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
}

.admin-form-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Login Wrapper & Card */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
}

.login-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    text-align: center;
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.login-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.login-error {
    background-color: rgba(231, 76, 60, 0.15);
    border: 1px solid #e74c3c;
    color: #ff6b6b;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}


