@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --primary: #c59b27;
    --primary-light: #f5d77f;
    --primary-dark: #917013;
    --bg-dark: #120e0b;
    --bg-cream: #faf6f0;
    --bg-card: #ffffff;
    --text-dark: #2d221c;
    --text-light: #ffffff;
    --text-muted: #7c6d66;
    --accent: #7c1a22; /* Royal Burgundy */
    --accent-light: #fadbd8;
    --border-color: #eaddd3;
    --shadow-sm: 0 4px 6px -1px rgba(45, 34, 28, 0.05), 0 2px 4px -1px rgba(45, 34, 28, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(45, 34, 28, 0.08), 0 4px 6px -2px rgba(45, 34, 28, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(45, 34, 28, 0.12), 0 10px 10px -5px rgba(45, 34, 28, 0.06);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    line-height: 1.2;
}

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

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

/* Navbar */
header {
    background: rgba(250, 246, 240, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

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

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-card);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    z-index: 1100;
    top: 100%;
    left: 0;
    margin-top: 8px;
    overflow: hidden;
}

.nav-dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
}

.nav-dropdown-content a {
    color: var(--text-dark) !important;
    padding: 12px 20px;
    display: block !important;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid rgba(234, 221, 211, 0.5) !important;
    transition: var(--transition);
    text-align: left;
}

.nav-dropdown-content a::after {
    display: none !important;
}

.nav-dropdown-content a:last-child {
    border-bottom: none !important;
}

.nav-dropdown-content a:hover {
    background-color: rgba(197, 155, 39, 0.05);
    color: var(--primary) !important;
    padding-left: 24px;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

.nav-btn {
    background-color: var(--accent);
    color: var(--text-light) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-btn:hover {
    background-color: var(--text-dark);
    transform: translateY(-2px);
}

.nav-badge-cart {
    background-color: var(--primary);
    color: var(--text-dark);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: bold;
    margin-left: 5px;
}

/* Hero Section */
.hero {
    background: url('assets/images/family_sweet_box.png') no-repeat center center;
    background-size: cover;
    padding: 130px 0;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(18, 14, 11, 0.55) 0%, rgba(18, 14, 11, 0.2) 100%);
    z-index: 1;
}

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

.hero-content {
    max-width: 650px;
}

.hero h1 {
    font-size: 54px;
    color: var(--primary-light);
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    font-family: var(--font-heading);
}

.hero p {
    font-size: 18px;
    color: #f5ede0;
    margin-bottom: 30px;
    line-height: 1.7;
    text-shadow: 0 1px 5px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 0;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero h1 {
        font-size: 42px;
    }
    .hero p {
        font-size: 16px;
    }
}

.categories-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
}

.slider-nav-btn {
    position: absolute;
    z-index: 10;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    color: var(--accent);
}

.slider-nav-btn:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(197, 155, 39, 0.3);
}

.prev-btn {
    left: -22px;
}

.next-btn {
    right: -22px;
}

@media (max-width: 768px) {
    .slider-nav-btn {
        display: none !important;
    }
}

.categories-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 4px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    width: 100%;
}

.categories-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.categories-grid .category-card {
    flex: 0 0 160px;
}

.category-card {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 12px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card.active .category-img-wrapper {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    background-color: #fbe5d6;
}

.category-img-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #fdf2e9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.category-card:hover .category-img-wrapper {
    background-color: #fbe5d6;
    transform: scale(1.05);
}

.category-img-wrapper img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    transition: var(--transition);
}

.category-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 4px;
    line-height: 1.3;
    font-family: var(--font-body);
}

.category-card p {
    display: none;
}

/* Button UI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    box-shadow: 0 4px 14px rgba(197, 155, 39, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 155, 39, 0.6);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
}

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

/* Sweets Grid section */
.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 16px;
}

.sweets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .sweets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Sweet Cards */
.sweet-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.sweet-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--accent);
    color: var(--text-light);
    font-weight: 700;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.card-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-grow: 1;
}

.nutrition-mini {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding: 8px 12px;
    background-color: var(--bg-cream);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.nutrition-mini span {
    color: var(--accent);
}

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

.card-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
}

.card-price span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Product Detail Page Layout */
.detail-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    margin: 40px auto;
    align-items: start;
}

.detail-main-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.detail-side-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.detail-img-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 450px;
    border: 1px solid var(--border-color);
}

.detail-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info h1 {
    font-size: 42px;
    color: var(--accent);
    margin-bottom: 16px;
}

.detail-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.detail-price span {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.detail-section {
    margin-bottom: 24px;
}

.detail-section h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    background-color: var(--bg-card);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.nutrition-table th, .nutrition-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.nutrition-table th {
    background-color: var(--border-color);
    color: var(--text-dark);
    font-weight: 700;
}

.nutrition-table tr:last-child td {
    border-bottom: none;
}

/* Wholesale Calculator Form */
.order-builder {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-cream);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

/* Premium Date Picker / Calendar Styling */
.date-picker-wrapper {
    position: relative;
}

.date-picker-wrapper i {
    position: absolute;
    right: 16px;
    top: 14px;
    color: var(--primary);
    pointer-events: none;
    font-size: 18px;
    transition: var(--transition);
}

.date-picker-wrapper:focus-within i {
    color: var(--accent);
    transform: scale(1.1);
}

input[type="date"].form-control {
    padding-right: 45px;
    cursor: pointer;
    font-weight: 600;
}

input[type="date"].form-control::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.order-summary-box {
    background-color: var(--bg-cream);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-top: 24px;
    border: 1px solid var(--border-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
}

.summary-row.total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px dashed var(--border-color);
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
}

/* Cart Page */
.cart-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    margin: 40px auto;
}

.cart-items {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.item-details {
    flex-grow: 1;
}

.item-details h4 {
    font-size: 18px;
    color: var(--text-dark);
}

.item-details p {
    font-size: 13px;
    color: var(--text-muted);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-item-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    min-width: 100px;
    text-align: right;
}

.btn-remove {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
}

.btn-remove:hover {
    text-decoration: underline;
}

/* Checkout Form styling */
.checkout-panel {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.payment-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.payment-radio {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.payment-radio input {
    margin-top: 4px;
}

.payment-radio:hover, .payment-radio.active {
    border-color: var(--primary);
    background-color: rgba(197, 155, 39, 0.05);
}

.payment-radio-title {
    font-weight: 700;
    font-size: 14px;
    display: block;
}

.payment-radio-desc {
    font-size: 12px;
    color: var(--text-muted);
}

/* Order Success Page */
.success-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 48px;
    max-width: 700px;
    margin: 60px auto;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(197, 155, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: var(--primary);
    font-size: 40px;
}

.success-card h1 {
    color: var(--accent);
    margin-bottom: 12px;
}

.tracking-code-box {
    background-color: var(--bg-cream);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin: 24px 0;
    border: 1px dashed var(--primary);
}

.tracking-code-box p {
    font-size: 13px;
    color: var(--text-muted);
}

.tracking-code-box h3 {
    font-size: 26px;
    color: var(--accent);
    letter-spacing: 2px;
    margin-top: 4px;
}

/* Tracking Page */
.track-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 40px;
    max-width: 550px;
    margin: 60px auto;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.track-card h2 {
    text-align: center;
    margin-bottom: 24px;
    color: var(--accent);
}

/* Status Tracker UI */
.tracker-stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 40px 0;
}

.tracker-stepper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 4px;
    background-color: var(--border-color);
    z-index: 1;
}

.stepper-progress {
    position: absolute;
    top: 20px;
    left: 20px;
    height: 4px;
    background-color: var(--primary);
    z-index: 1;
    transition: var(--transition);
}

.step-node {
    position: relative;
    z-index: 2;
    text-align: center;
    flex-grow: 1;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-cream);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
    font-weight: 700;
    transition: var(--transition);
    color: var(--text-muted);
}

.step-node.active .step-circle {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--text-dark);
    box-shadow: 0 0 12px rgba(197, 155, 39, 0.4);
}

.step-node.completed .step-circle {
    border-color: var(--accent);
    background-color: var(--accent);
    color: var(--text-light);
}

.step-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
}

.step-node.active .step-label {
    color: var(--text-dark);
}

.step-node.completed .step-label {
    color: var(--accent);
}

/* Badges CSS */
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-pending { background-color: #fef9e7; color: #b7950b; border: 1px solid #f9e79f; }
.badge-confirmed { background-color: #ebf5fb; color: #2471a3; border: 1px solid #a9cce3; }
.badge-preparing { background-color: #f4ecf7; color: #7d3c98; border: 1px solid #d7bde2; }
.badge-shipping { background-color: #eaf2f8; color: #1a5276; border: 1px solid #a9cce3; }
.badge-delivered { background-color: #e8f8f5; color: #117864; border: 1px solid #a3e4d7; }
.badge-cancelled { background-color: #f9ebea; color: #922b21; border: 1px solid #f2d7d5; }

.badge-success { background-color: #e8f8f5; color: #117864; }
.badge-warning { background-color: #fef9e7; color: #b7950b; }
.badge-danger { background-color: #f9ebea; color: #922b21; }

/* Admin Dashboard CSS */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.admin-sidebar .logo {
    color: var(--text-light);
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    color: #a09088;
}

.sidebar-menu a:hover, .sidebar-menu li.active a {
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.05);
}

.sidebar-menu li.active a {
    border-left: 4px solid var(--primary);
    background-color: rgba(197, 155, 39, 0.1);
}

.admin-main {
    flex-grow: 1;
    background-color: var(--bg-cream);
    padding: 40px;
}

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

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    background-color: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.stat-card h4 {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.stat-card .value {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
}

/* Custom Responsive Tables for Admin */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th, .admin-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background-color: rgba(234, 221, 211, 0.4);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.admin-table tr:hover {
    background-color: rgba(197, 155, 39, 0.02);
}

.action-btn {
    display: inline-block;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    background-color: var(--accent);
    color: var(--text-light);
    border: none;
    cursor: pointer;
}

.action-btn:hover {
    background-color: var(--text-dark);
}

/* Footer Section */
footer {
    background: linear-gradient(180deg, #181310 0%, #0d0a08 100%);
    color: #bfaea5;
    padding: 80px 0 40px 0;
    margin-top: auto;
    border-top: 3px solid var(--primary-dark);
}

.footer-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-layout h3 {
    color: #ffffff;
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-layout h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.footer-layout p {
    font-size: 14px;
    line-height: 1.8;
    color: #bfaea5;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: 0;
}

.footer-links a {
    color: #bfaea5;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 12px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a:hover i {
    transform: translateX(5px);
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: #7b695f;
}

/* Catalog Split Layout */
.catalog-container {
    display: block;
    margin-top: 40px;
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.catalog-toolbar-title {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.catalog-filter-form {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.dropdown-filter-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-filter-wrap label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-filter-select {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: #fff;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    min-width: 160px;
    outline: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.dropdown-filter-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.1);
}

.catalog-filter-reset {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    height: auto;
}

.catalog-sidebar {
    width: 280px;
    flex-shrink: 0;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
    z-index: 10;
}

.catalog-content {
    flex-grow: 1;
}

.filter-group {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(234, 221, 211, 0.5);
    padding-bottom: 16px;
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.filter-group h3 {
    font-size: 15px;
    color: var(--accent);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.filter-options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-option {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    user-select: none;
    position: relative;
}

/* Hide native radio button */
.filter-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Chip style for the span label */
.filter-option span {
    display: inline-block;
    padding: 8px 14px;
    background-color: var(--bg-cream);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    transition: var(--transition);
}

.filter-option span:hover {
    border-color: var(--primary);
    background-color: rgba(197, 155, 39, 0.05);
}

/* Active checked state styling */
.filter-option input[type="radio"]:checked + span {
    background-color: var(--accent);
    color: var(--text-light) !important;
    border-color: var(--accent);
    box-shadow: 0 4px 10px rgba(124, 26, 34, 0.2);
}

.filter-option input[type="radio"]:checked + span.rating-stars-orange {
    color: var(--text-light) !important;
}

.filter-option input[type="radio"]:checked + span i {
    color: #ffe699 !important; /* Warm gold stars on active chip */
}

.rating-stars-orange {
    color: var(--primary);
}

/* E-commerce Conversion Upgrades */
@keyframes goldPulse {
    0% { box-shadow: 0 0 0 0 rgba(197, 155, 39, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(197, 155, 39, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 155, 39, 0); }
}

.fomo-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    color: var(--text-light);
    font-weight: 800;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: goldPulse 2s infinite;
    letter-spacing: 0.5px;
    z-index: 5;
}

.fomo-badge.danger {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    animation: dangerPulse 2s infinite;
}

@keyframes dangerPulse {
    0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

.trust-badge-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.trust-badge-item {
    text-align: center;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 16px 10px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.trust-badge-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.trust-badge-item i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 8px;
}

.trust-badge-item h5 {
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-weight: 700;
}

.trust-badge-item p {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Shipping Goal Bar */
.shipping-goal-container {
    background-color: rgba(197, 155, 39, 0.08);
    border: 1px solid rgba(197, 155, 39, 0.25);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 24px;
}

.shipping-goal-header {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.shipping-progress-bg {
    background-color: rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    height: 10px;
    width: 100%;
    overflow: hidden;
}

.shipping-progress-bar {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    height: 100%;
    width: 0%;
    transition: width 0.4s ease;
}

.shipping-congratulations {
    display: none;
    color: #27ae60;
    font-weight: bold;
    font-size: 13px;
    margin-top: 8px;
}

.shipping-congratulations i {
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-3px); }
}

.reviews-grid-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

.admin-grid-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Floating WhatsApp Button (Base Styles) */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 35px;
    right: 35px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    font-size: 34px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: waPulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) rotate(10deg);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.whatsapp-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    padding: 8px;
}

.menu-toggle:hover {
    color: var(--primary);
}

/* ==========================================================================
   Responsive media queries (Must reside at the absolute end to override standard styles)
   ========================================================================== */
@media (max-width: 992px) {
    .catalog-container {
        flex-direction: column;
        margin-top: 20px;
    }
    .catalog-sidebar {
        display: none; /* Hide filters completely on mobile/tablets */
    }
    .detail-layout, .cart-layout {
        grid-template-columns: 1fr;
    }
    .detail-img-box {
        height: 350px;
    }
    .reviews-grid-layout, .admin-grid-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .navbar {
        height: 70px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding: 0 24px;
    }
    #nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 24px;
        width: 260px;
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        padding: 16px;
    }
    #nav-menu.active {
        display: block;
        animation: slideDown 0.3s ease forwards;
    }
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        display: block;
        padding: 10px 16px;
        width: 100%;
        text-align: left;
    }
    .nav-links a::after {
        display: none !important;
    }
    .nav-btn {
        text-align: center !important;
        margin-top: 4px;
    }
    .hero {
        padding: 60px 0;
        background-position: 75% center;
        text-align: center;
    }
    .hero-content {
        margin: 0 auto;
        text-align: center;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 15px;
    }
    .footer-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .admin-layout {
        flex-direction: column;
    }
    .admin-sidebar {
        width: 100%;
        padding: 20px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
    .whatsapp-tooltip {
        display: none !important;
    }
    .nav-dropdown-content {
        position: relative;
        width: 100%;
        min-width: 100%;
        top: 0;
        margin-top: 5px;
        box-shadow: none;
        border: none;
    }
    .nav-dropdown-content a {
        text-align: left !important;
        padding: 10px 20px !important;
        border-bottom: 1px dashed rgba(234, 221, 211, 0.3) !important;
    }
}

@media (max-width: 480px) {
    .trust-badge-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .detail-price {
        font-size: 28px;
    }
    .detail-img-box {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .cart-items {
        padding: 20px;
    }
    .checkout-panel {
        padding: 20px;
    }
    .cart-item {
        position: relative;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        align-items: flex-start;
    }
    .cart-item img {
        width: 80px;
        height: 80px;
    }
    .item-details {
        width: calc(100% - 96px);
    }
    .cart-item-price {
        width: 100%;
        text-align: left;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px dashed var(--border-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
    }
    .cart-item-price::before {
        content: "Subtotal:";
        font-size: 13px;
        color: var(--text-muted);
        font-weight: 500;
    }
}

/* Circular Add to Cart Button Style */
.btn-circle {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    box-shadow: 0 4px 14px rgba(197, 155, 39, 0.4) !important;
    transition: var(--transition) !important;
}

.btn-circle:hover {
    transform: scale(1.1) translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(197, 155, 39, 0.6) !important;
}

/* Circular Accent Button (Buy Now) Style */
.btn-circle-accent {
    box-shadow: 0 4px 14px rgba(124, 26, 34, 0.4) !important;
}

.btn-circle-accent:hover {
    box-shadow: 0 6px 20px rgba(124, 26, 34, 0.6) !important;
}

/* Rectangular Action Buttons (Product Detail Page) */
.btn-detail-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 20px;
    border-radius: 8px; /* Slightly rounded rectangular shape */
    font-weight: 700;
    font-size: 14px;
    color: #ffffff !important;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 160px;
    box-shadow: 0 4px 12px rgba(45, 34, 28, 0.1);
}

.btn-detail-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(45, 34, 28, 0.18);
}

.btn-detail-action-gold {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.btn-detail-action-gold:hover {
    box-shadow: 0 6px 18px rgba(197, 155, 39, 0.35);
}

.btn-detail-action-red {
    background: linear-gradient(135deg, var(--accent) 0%, #a8232e 100%);
}
.btn-detail-action-red:hover {
    box-shadow: 0 6px 18px rgba(124, 26, 34, 0.35);
}

.btn-detail-action-icon-wrap {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.btn-detail-action-icon-wrap.gold {
    color: var(--primary-dark);
}

.btn-detail-action-icon-wrap.red {
    color: var(--accent);
}

@media (max-width: 576px) {
    .detail-actions-container {
        flex-direction: column !important;
        gap: 12px !important;
    }
}

/* Premium Reviews Design */
.review-stats-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background-color: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(45, 34, 28, 0.04);
    margin-bottom: 30px;
}

.review-avg-badge {
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(197, 155, 39, 0.3);
    flex-shrink: 0;
}

.review-avg-num {
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.review-avg-label {
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    opacity: 0.8;
}

.review-card {
    background-color: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    gap: 16px;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-light);
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #fdf2e9;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    border: 1px solid rgba(197, 155, 39, 0.2);
    flex-shrink: 0;
}

.review-content {
    flex-grow: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.review-author {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.review-stars {
    color: var(--primary);
    font-size: 13px;
}

.review-text {
    font-size: 14px;
    color: #4a3e35;
    line-height: 1.6;
    font-style: italic;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Product Detail Responsive Padding/Margin Adjustments */
.product-detail-container {
    padding: 35px 24px;
}

.back-to-catalog-link {
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .catalog-toolbar {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        margin-bottom: 20px !important;
    }
    
    .catalog-toolbar-title {
        font-size: 14px !important;
        text-align: center !important;
    }

    .catalog-filter-form {
        display: flex !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        justify-content: space-between !important;
        gap: 8px !important;
    }

    .dropdown-filter-wrap {
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
    }

    .dropdown-filter-wrap label {
        font-size: 11px !important;
        font-weight: 800 !important;
    }

    .dropdown-filter-select {
        flex: 1 !important;
        padding: 8px 10px !important;
        font-size: 12px !important;
        min-width: 90px !important;
        height: 38px !important;
        box-shadow: var(--shadow-sm) !important;
    }
    
    .catalog-filter-reset {
        padding: 6px 10px !important;
        font-size: 11px !important;
        height: 38px !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    .product-detail-container {
        padding: 15px 12px !important;
    }
    .back-to-catalog-link {
        margin-bottom: 12px !important;
    }
    .detail-layout {
        display: grid !important;
        grid-template-columns: 1fr !important;
        margin: 10px auto !important;
        gap: 20px !important;
    }
    
    .detail-main-col, .detail-side-col {
        display: contents !important;
    }
    
    /* Reorder items on mobile: Gallery -> Checkout (H1 + Price + Form) -> Description -> Assurances & Badges */
    .detail-gallery-box {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }
    .detail-checkout-box {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }
    .detail-desc-box {
        grid-column: 1 !important;
        grid-row: 3 !important;
    }
    .detail-assurances-box {
        grid-column: 1 !important;
        grid-row: 4 !important;
    }
    
    .detail-img-box {
        height: 260px !important;
    }

    /* Flatten nested boxes for clean 'full-view' mobile design */
    .order-builder {
        background-color: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }
    
    .order-summary-box {
        background-color: var(--bg-cream) !important;
        border-left: none !important;
        border-right: none !important;
        border-radius: 0 !important;
        margin-left: -12px !important;
        margin-right: -12px !important;
        padding: 16px 12px !important;
    }
    
    .shipping-goal-container {
        border-left: none !important;
        border-right: none !important;
        border-radius: 0 !important;
        margin-left: -12px !important;
        margin-right: -12px !important;
        padding: 12px !important;
    }
    
    .trust-badge-item {
        background-color: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 4px 2px !important;
    }
    
    /* Force Badges row to be single line on mobile (repeat 3 columns) */
    .trust-badge-row {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        margin-top: 16px !important;
    }
    
    .trust-badge-item i {
        font-size: 20px !important;
        margin-bottom: 4px !important;
    }
    
    .trust-badge-item h5 {
        font-size: 11px !important;
        margin-bottom: 2px !important;
    }
    
    .trust-badge-item p {
        font-size: 9px !important;
    }
}

/* Footer Social Links */
.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #bfaea5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
    text-decoration: none;
}

.footer-social-links a:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(197, 155, 39, 0.4);
    border-color: var(--primary);
}

