@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --bg-body: #fdebd0;
    --text-body: #1a1a1a;
    --card-bg: #fdebd0;
    --card-border: #e8dcc8;
    --input-bg: #ffffff;
    --navbar-bg: #0a0a0a;
    --footer-bg: #0a0a0a;
    --gold: #c9a84c;
    --gold-dark: #b5952f;
    --gray: #888888;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Nunito', sans-serif;
    --transition: all 0.3s ease;
    --br-radius: 8px;
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.12);
    --color-gold: #c9a84c;
    --color-gold-dark: #b5952f;
    --color-gray: #888888;
    --color-black: #0a0a0a;
    --color-offwhite: #fdebd0;
    --color-beige: #fdebd0;
    --color-beige-dark: #e8dcc8;
    --bg-main: #fdebd0;
    --text-main: #1a1a1a;
}

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

html {
    background-color: #fdebd0;
}

body {
    font-family: var(--font-body);
    background-color: #fdebd0;
    color: #1a1a1a;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: transparent;
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: #0a0a0a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #c9a84c;
}

.navbar.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #c9a84c;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    padding: 10px 0;
    position: relative;
}

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

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

.nav-link:hover {
    color: #c9a84c;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0a0a0a;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border-radius: 12px;
    overflow: hidden;
    border-top: 3px solid #c9a84c;
    margin-top: 8px;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: dropdownFade 0.2s ease forwards;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #c9a84c;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid #222;
    border-radius: 0;
    transition: all 0.2s ease;
}

.dropdown-item:first-child {
    border-radius: 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 12px 12px;
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #1a1a1a;
    color: #b5952f;
    padding-left: 25px;
}

.cart-icon {
    font-size: 1.3rem;
    color: #c9a84c;
    display: flex;
    align-items: center;
    position: relative;
}

.cart-icon::after {
    display: none;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -15px;
    background-color: #c9a84c;
    color: #0a0a0a;
    font-size: 0.75rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    color: #c9a84c;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO BANNER ===== */
.hero-banner-wrapper {
    width: 100%;
    padding: 0;
    margin: 0 0 3rem 0;
    overflow: hidden;
    display: block;
    background: #fdebd0;
}

.hero-banner-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--br-radius);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #0a0a0a !important;
    color: #c9a84c !important;
    border-color: #c9a84c !important;
}

.btn-primary:hover {
    background-color: #c9a84c !important;
    color: #0a0a0a !important;
}

.btn-gold {
    background-color: #c9a84c !important;
    color: #0a0a0a !important;
    border-color: #c9a84c !important;
}

.btn-gold:hover {
    background-color: #0a0a0a !important;
    color: #c9a84c !important;
}

.btn-outline {
    background-color: #0a0a0a !important;
    border: 2px solid #c9a84c !important;
    color: #c9a84c !important;
}

.btn-outline:hover {
    background-color: #c9a84c !important;
    color: #0a0a0a !important;
}

.btn-small {
    padding: 5px 10px;
    font-size: 0.8rem;
}

/* ===== CART ICON BUTTON ===== */
.btn-cart-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #c9a84c;
    color: #0a0a0a;
    border: 2px solid #c9a84c;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.btn-cart-icon:hover {
    background: #0a0a0a;
    color: #c9a84c;
    transform: scale(1.1);
}

.btn-cart-icon:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin: 2rem 0;
}

.product-card {
    background-color: #fff8f0;
    border: 1px solid #e8dcc8;
    border-radius: var(--br-radius);
    overflow: visible;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.2);
    transform: translateY(-8px);
    border-color: #c9a84c;
}

.product-image-wrapper {
    position: relative;
    padding-top: 100%;
    background-color: #fdebd0;
    overflow: hidden;
    border-radius: var(--br-radius) var(--br-radius) 0 0;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    border-radius: 4px;
    letter-spacing: 1px;
}

.badge-sale {
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 0.85rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.badge-out-of-stock {
    background-color: #888888;
    color: #f5f0e8;
}

.product-info {
    padding: 1.5rem 1.5rem 4rem 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #fff8f0;
}

.product-category {
    font-size: 0.75rem;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.product-title {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: #0a0a0a;
}

.product-price {
    font-weight: bold;
    color: #c9a84c;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: auto;
}

.original-price {
    text-decoration: line-through;
    color: #e74c3c;
    font-size: 0.95rem;
    margin-right: 8px;
    font-weight: normal;
}

.product-price.on-sale {
    font-size: 1.4rem;
    color: #c9a84c;
    animation: sale-pulse 2s ease-in-out infinite;
}

.savings-label {
    display: block;
    font-size: 0.8rem;
    color: #2ecc71;
    margin-top: 4px;
    font-weight: 600;
}

@keyframes sale-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* ===== FILTER PILLS ===== */
.filter-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 2rem;
}

.filter-pill {
    padding: 8px 20px;
    border: 1px solid #c9a84c;
    border-radius: 50px;
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    background: #fdebd0;
}

.filter-pill:hover,
.filter-pill.active {
    background-color: #c9a84c;
    color: #0a0a0a;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a1a;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e8dcc8;
    background-color: #ffffff;
    color: #1a1a1a;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: var(--br-radius);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: #c9a84c;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ===== PAYMENT OPTIONS ===== */
.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border: 2px solid #e8dcc8;
    border-radius: var(--br-radius);
    cursor: pointer;
    transition: var(--transition);
    background: #fdebd0;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.payment-option:hover {
    border-color: #c9a84c;
}

.payment-option:has(input[type="radio"]:checked) {
    border-color: #c9a84c;
    background-color: rgba(201, 168, 76, 0.05);
}

/* ===== SIZE SELECTOR ===== */
.size-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.size-option input[type="radio"] {
    display: none;
}

.size-option label {
    display: inline-block;
    padding: 10px 18px;
    border: 2px solid #e8dcc8;
    border-radius: var(--br-radius);
    background-color: #fdebd0;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.size-option label:hover {
    border-color: #c9a84c;
}

.size-option input[type="radio"]:checked+label {
    background-color: #c9a84c;
    border-color: #c9a84c;
    color: #0a0a0a;
}

/* ===== TABLES ===== */
.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background: #fdebd0;
    border-radius: var(--br-radius);
    overflow: hidden;
}

th,
td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e8dcc8;
}

th {
    background-color: #0a0a0a;
    font-family: var(--font-heading);
    font-weight: 600;
    color: #c9a84c;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

td {
    background-color: #fdebd0;
    color: #1a1a1a;
}

tr:nth-child(even) td {
    background-color: #fdebd0;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #0a0a0a;
    color: #f5f0e8;
    padding: 4rem 0 2rem;
    margin-top: auto;
    border-top: 3px solid #c9a84c;
}

.footer p,
.footer span,
.footer li {
    color: #cccccc;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-heading {
    color: #c9a84c !important;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #cccccc;
}

.footer-links a:hover {
    color: #c9a84c;
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.6);
}

/* ===== ADMIN ===== */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background-color: #0a0a0a;
    color: #c9a84c;
    padding: 2.5rem 0;
    flex-shrink: 0;
}

.admin-sidebar-header {
    padding: 0 20px 25px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    margin-bottom: 25px;
}

.admin-nav .nav-link {
    display: block;
    padding: 14px 25px;
    color: #cccccc;
    font-weight: 600;
    text-transform: none;
    font-size: 1.05rem;
}

.admin-nav .nav-link::after {
    display: none;
}

.admin-nav .nav-link:hover,
.admin-nav .nav-link.active {
    background-color: rgba(201, 168, 76, 0.1);
    color: #c9a84c;
    border-left: 4px solid #c9a84c;
    padding-left: 29px;
}

.admin-content {
    flex: 1;
    background-color: #ffffff;
    color: #0a0a0a;
    padding: 2.5rem;
    overflow-y: auto;
}

.admin-content h1,
.admin-content h2,
.admin-content h3,
.admin-content h4 {
    color: #0a0a0a;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e8dcc8;
}

.admin-content table tbody tr:nth-child(even) td {
    background-color: #f9f9f9;
}

.admin-content table tbody tr:nth-child(odd) td {
    background-color: #ffffff;
}

/* ===== CARD ===== */
.card {
    background-color: #fdebd0;
    padding: 25px;
    border-radius: var(--br-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 20px;
    color: #1a1a1a;
}

.card h3 {
    margin-bottom: 1rem;
    border-bottom: 1px solid #e8dcc8;
    padding-bottom: 10px;
    color: #0a0a0a;
}

/* ===== STATUS BADGES ===== */
.status-badge {
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
}

.status-pending {
    background-color: #c9a84c;
    color: #000;
}

.status-processing {
    background-color: #3498db;
    color: #fff;
}

.status-shipped {
    background-color: #9b59b6;
    color: #fff;
}

.status-delivered {
    background-color: #2ecc71;
    color: #000;
}

.status-cancelled {
    background-color: #e74c3c;
    color: #fff;
}

/* ===== ALERTS ===== */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: var(--br-radius);
}

.alert-success {
    background-color: #dff0d8;
    color: #3c763d;
}

.alert-error {
    background-color: #f2dede;
    color: #a94442;
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

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

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.p-3 {
    padding: 1.5rem;
}

.flex {
    display: flex;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}

.justify-content-between {
    justify-content: space-between;
}

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

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

.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}

.w-200 {
    width: 200px;
}

.bg-light {
    background-color: #fdebd0;
}

.border-bottom {
    border-bottom: 1px solid #e8dcc8;
}

.text-error {
    color: #e74c3c;
}

.text-success {
    color: #2ecc71;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 2rem 0;
}

.pagination a,
.pagination span {
    padding: 8px 14px;
    border: 1px solid #e8dcc8;
    border-radius: var(--br-radius);
    color: #1a1a1a;
    background: #fdebd0;
    font-weight: 600;
}

.pagination .active {
    background-color: #c9a84c;
    color: #0a0a0a;
    border-color: #c9a84c;
}

.pagination a:hover {
    border-color: #c9a84c;
    color: #c9a84c;
}

/* ===== WHATSAPP BUBBLE ===== */
.wa-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 30px;
    left: 30px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.wa-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.wa-float-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    z-index: -1;
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.wa-tooltip {
    position: absolute;
    left: 70px;
    background: #333;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    pointer-events: none;
}

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

/* ===== POLICY PAGE ===== */
.policy-page {
    background-color: #fdebd0;
    color: #1a1a1a;
    padding: 3rem 0;
}

.policy-page h1,
.policy-page h2,
.policy-page h3 {
    color: #0a0a0a;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background-color: #0a0a0a;
    color: #c9a84c;
    cursor: pointer;
    border-bottom: 1px solid #c9a84c;
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

.accordion-header:hover {
    background-color: #1a1a1a;
}

.accordion-icon {
    font-size: 1.3rem;
    font-weight: bold;
    color: #c9a84c;
}

.accordion-content {
    display: none;
    padding: 20px;
    background-color: #ffffff;
    color: #1a1a1a;
    border-bottom: 1px solid #e8dcc8;
}

.accordion-content.open {
    display: block;
}

.accordion-content p,
.accordion-content li {
    color: #1a1a1a;
    margin-bottom: 8px;
}

.accordion-content ul {
    padding-left: 20px;
    list-style: disc;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0a0a0a;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        border: none;
        display: none;
    }

    .nav-item:hover .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        color: #c9a84c;
        border-bottom: none;
    }

    .admin-layout {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
        padding: 1.5rem 0;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
}

/* ===== CATEGORY BOXES HOMEPAGE ===== */
.product-grid a[href*="category.php"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 50px 20px !important;
    background: #0a0a0a !important;
    color: #c9a84c !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    min-height: 160px !important;
}

.product-grid a[href*="category.php"]:hover {
    background: #c9a84c !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(201, 168, 76, 0.4) !important;
}

.product-grid a[href*="category.php"] h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 2rem !important;
    color: #c9a84c !important;
    margin-bottom: 10px !important;
    transition: all 0.3s ease !important;
}

.product-grid a[href*="category.php"]:hover h3 {
    color: #0a0a0a !important;
}

.product-grid a[href*="category.php"] p {
    color: #cccccc !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
}

.product-grid a[href*="category.php"]:hover p {
    color: #0a0a0a !important;
}

/* ===== FAQ & POLICY PAGE ===== */
.accordion-item {
    border-bottom: 1px solid #c9a84c;
    margin-bottom: 0;
}

.accordion-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 18px 20px !important;
    background-color: #0a0a0a !important;
    color: #c9a84c !important;
    cursor: pointer !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 1.05rem !important;
    transition: all 0.3s ease !important;
    user-select: none !important;
}

.accordion-header:hover {
    background-color: #1a1a1a !important;
}

.accordion-header span,
.accordion-header p,
.accordion-header h3,
.accordion-header * {
    color: #c9a84c !important;
}

.accordion-icon {
    font-size: 1.4rem !important;
    font-weight: bold !important;
    color: #c9a84c !important;
    flex-shrink: 0 !important;
    margin-left: 15px !important;
}

.accordion-content {
    display: none !important;
    padding: 20px !important;
    background-color: #ffffff !important;
    color: #1a1a1a !important;
    border-top: 1px solid #e8dcc8 !important;
}

.accordion-content.open {
    display: block !important;
}

.accordion-content p,
.accordion-content li,
.accordion-content span {
    color: #1a1a1a !important;
    margin-bottom: 8px !important;
}

.accordion-content ul {
    padding-left: 20px !important;
    list-style: disc !important;
}

.accordion-content a {
    color: #c9a84c !important;
}

/* ===== POLICY PAGE FIX ===== */
.policy-page {
    background-color: #fdebd0 !important;
    color: #1a1a1a !important;
}

.policy-page h1,
.policy-page h2,
.policy-page p {
    color: #1a1a1a !important;
}

.accordion-section-title {
    color: #0a0a0a !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 2.2rem !important;
    text-align: center !important;
    margin-top: 3rem !important;
    margin-bottom: 1.5rem !important;
}

.policy-accordion-container {
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
    margin-top: 2rem !important;
}

.accordion-item {
    border-bottom: 1px solid #c9a84c !important;
}

.accordion-header {
    background: #0a0a0a !important;
    color: #c9a84c !important;
    padding: 20px 25px !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    transition: background 0.3s ease !important;
    border: none !important;
}

.accordion-header:hover {
    background: #1a1a1a !important;
}

.accordion-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.1rem !important;
    margin: 0 !important;
    color: #c9a84c !important;
    letter-spacing: 1px !important;
}

.accordion-icon {
    font-size: 1.8rem !important;
    font-weight: 300 !important;
    color: #c9a84c !important;
    transition: transform 0.3s ease !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    flex-shrink: 0 !important;
}

.accordion-content {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s ease, padding 0.4s ease !important;
    background: #ffffff !important;
    color: #1a1a1a !important;
    padding: 0 25px !important;
}

.accordion-item.active .accordion-content {
    max-height: 1000px !important;
    padding: 30px 25px !important;
}

.accordion-content p,
.accordion-content li,
.accordion-content span {
    color: #1a1a1a !important;
}

.accordion-content ul {
    list-style: none !important;
    padding-left: 0 !important;
}

.accordion-content a {
    color: #c9a84c !important;
}

.accordion-content strong {
    color: #0a0a0a !important;
}

/* ===== ADMIN DASHBOARD FIX ===== */
.admin-sidebar h3,
.admin-sidebar p,
.admin-sidebar-header h3,
.admin-sidebar-header p {
    color: #c9a84c !important;
}

.stat-card {
    background-color: #ffffff !important;
    color: #0a0a0a !important;
}

.stat-card h3 {
    color: #888888 !important;
}

.stat-card .value {
    color: #0a0a0a !important;
}

.admin-content>div {
    background-color: #ffffff !important;
    color: #0a0a0a !important;
}

.admin-content h3 {
    color: #0a0a0a !important;
}