/* General Styles */
:root {
    --primary-color: #c19a6b;
    --secondary-color: #1a1a1a;
    --accent-color: #d4af37;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #eee;
    --gold-accent: #d4af37;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.25rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
}

.lead {
    font-weight: 400;
    color: var(--text-light);
}

strong,
b,
.fw-bold {
    font-weight: 600 !important;
}

.fw-semibold {
    font-weight: 500 !important;
}

label,
.form-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
}

small,
.text-muted {
    color: var(--text-light) !important;
    font-weight: 400;
}

/* Top Bar */
.top-bar {
    font-size: 0.875rem;
}

/* Promo Bar */
.promo-bar {
    font-size: 0.9rem;
}

/* Navigation */
.navbar {
    padding: 0.75rem 0;
}

.navbar-toggler {
    margin-left: auto;
    margin-right: -15px;
    padding: 0.35rem 0.3rem;
    width: 40px;
    height: 40px;
    border-color: rgba(221, 204, 44, 0.5);
}

.navbar-toggler-icon {
    width: 18px;
    height: 14px;
    background-size: 18px 14px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body.homepage .hero-nav {
    position: static;
    padding: 1.25rem 0;
    background: #000;
    border: none;
    box-shadow: none;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

body.homepage .hero-nav .navbar-brand,
body.homepage .hero-nav .nav-link,
body.homepage .hero-nav .navbar-nav .nav-link,
body.homepage .hero-nav .navbar-nav .nav-link i {
    color: #f7f5f5 !important;
}

@media (max-width: 991.98px) {
    body.homepage .hero-nav .mobile-offcanvas .nav-link,
    body.homepage .hero-nav .mobile-offcanvas .dropdown-item,
    body.homepage .hero-nav .mobile-offcanvas .offcanvas-header h5 {
        color: #fffcfc !important;
    }

    body.homepage .hero-nav .mobile-offcanvas .nav-link i {
        color: #ffffff !important;
    }
}

body.homepage .hero-nav .nav-link:hover,
body.homepage .hero-nav .navbar-nav .nav-link:hover {
    color: var(--gold-accent) !important;
}

body.homepage .hero-nav .navbar-brand img {
    max-height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
}

body.homepage .hero-nav .navbar-toggler {
    border-color: rgba(221, 204, 44, 0.5);
}

body.homepage .hero-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body.homepage .hero-nav.nav-solid .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body.homepage .hero-nav.nav-solid {
    position: fixed;
    background: rgba(5, 5, 5, 0.97);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 0.85rem 0;
    width: 100%;
    right: 0;
}

body.homepage .hero-nav.nav-solid .navbar-brand img {
    filter: none;
}

body.homepage .hero-nav.nav-solid .nav-link,
body.homepage .hero-nav.nav-solid .navbar-nav .nav-link,
body.homepage .hero-nav.nav-solid .navbar-nav .nav-link i {
    color: #ffffff !important;
}

body.homepage .hero-nav-spacer {
    display: none;
    height: 96px;
    width: 100%;
}

body.homepage .hero-nav-spacer.show {
    display: block;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    padding: 0.5rem 1rem 0.5rem 0;
    margin-right: 2rem;
}

.logo-wrapper {
    text-align: left;
}

@media (max-width: 991.98px) {
    .navbar {
        transition: transform 0.3s ease, background 0.3s ease;
    }

    .navbar.nav-hidden {
        transform: translateY(-120%);
    }

    .hero-nav.nav-hidden {
        transform: translateY(-140%);
    }

    .mobile-offcanvas {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: #090909;
        padding: 1.5rem;
        z-index: 1055;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        display: block !important;
        overflow-y: auto;
        box-shadow: 4px 0 25px rgba(0,0,0,0.15);
    }

    .mobile-offcanvas.open {
        transform: translateX(0);
    }

    .mobile-offcanvas .navbar-nav {
        width: 100%;
        margin-top: 1rem;
    }

    .mobile-offcanvas .navbar-nav .nav-link {
        padding: 0.75rem 0 !important;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .mobile-offcanvas .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        box-shadow: none;
        width: 100%;
        margin-top: 0.25rem;
    }

    .offcanvas-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 0.75rem;
    }

    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: min(280px, 100vw);
        background: rgba(0, 0, 0, 0.45);
        z-index: 1050;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }

    .mobile-nav-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    body.offcanvas-active {
        overflow: hidden;
    }
}

.logo-wrapper .brand-name {
    font-size: 1.75rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 2px;
    display: block;
    line-height: 1.2;
}

.logo-wrapper .brand-tagline {
    font-size: 0.6rem;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

@media (max-width: 991px) {
    .navbar-brand {
        margin-right: auto;
        padding-right: 0;
    }
    
    .logo-wrapper .brand-name {
        font-size: 1.4rem;
    }
}

.navbar-nav {
    margin: 0;
}

.navbar-nav.mx-auto {
    flex-grow: 0;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem !important;
    color: #ffffff !important;
    transition: all 0.3s;
    text-transform: capitalize;
    position: relative;
}

.nav-link:hover {
    color: var(--gold-accent) !important;
}

.navbar-nav.ms-auto .nav-link {
    padding: 0.5rem 0.75rem !important;
    font-size: 1.1rem;
}

.navbar-nav.ms-auto .nav-link i {
    transition: transform 0.3s;
}

.navbar-nav.ms-auto .nav-link:hover i {
    transform: scale(1.15);
}

.position-relative .badge {
    font-size: 0.65rem;
    padding: 0.25em 0.45em;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--gold-accent);
    padding-left: 1.75rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

/* Carousel */
.carousel-item {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.carousel-caption {
    background: transparent;
    padding: 30px;
    border-radius: 0;
    bottom: 15%;
    z-index: 10;
}

.carousel-caption h2 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}

.carousel-caption p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.carousel-caption .btn {
    padding: 12px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    background: var(--gold-accent);
    border: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-caption .btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Why Choose Slider */
.why-choose-slider {
    overflow: hidden;
    position: relative;
}

.why-choose-track {
    display: flex;
    gap: 1.5rem;
    animation: whyChooseScroll 35s linear infinite;
    will-change: transform;
}

.why-choose-slider:hover .why-choose-track {
    animation-play-state: paused;
}

.why-choose-slide {
    flex: 0 0 calc(25% - 1.125rem);
}

@media (max-width: 991.98px) {
    .why-choose-slide {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 575.98px) {
    .why-choose-slide {
        flex: 0 0 80%;
    }
}

@keyframes whyChooseScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Testimonials Slider */
.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    animation: testimonialsScroll 40s linear infinite;
    will-change: transform;
}

.testimonials-slider:hover .testimonials-track {
    animation-play-state: paused;
}

.testimonial-slide {
    flex: 0 0 calc(25% - 1.125rem);
}

.testimonial-video iframe,
.testimonial-video video {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.review-card p {
    color: var(--text-dark);
}

.testimonial-video {
    overflow: hidden;
    border-radius: 12px;
}

@media (max-width: 991.98px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 575.98px) {
    .testimonial-slide {
        flex: 0 0 90%;
    }
}

@keyframes testimonialsScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption h2 {
        font-size: 1.8rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
}

/* Product Card */
.product-card {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

/* Product Detail Gallery */
.product-images .main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.product-gallery-strip {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.gallery-nav-btn {
    border: none;
    background: #f3f3f3;
    color: var(--text-dark);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gallery-nav-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.gallery-thumbs-wrapper {
    overflow-x: auto;
    flex: 1;
    scrollbar-width: none;
}

.gallery-thumbs-wrapper::-webkit-scrollbar {
    display: none;
}

.gallery-thumbs-inner {
    display: flex;
    gap: 0.75rem;
}

.gallery-thumb {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-thumb:hover {
    transform: translateY(-2px);
}

.gallery-thumb.active {
    border-color: var(--primary-color);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 575.98px) {
    .product-images .main-image img {
        height: 380px;
    }
    .gallery-thumb {
        width: 70px;
        height: 70px;
    }
}

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.product-badge.bestseller {
    background: #f39c12;
}

.product-badge.new {
    background: #27ae60;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1;
}

.wishlist-btn:hover {
    background: var(--accent-color);
    color: white;
}

.wishlist-btn.active {
    background: var(--accent-color);
    color: white;
}

.product-info {
    padding: 20px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-dark);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title:hover {
    color: var(--primary-color);
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.875rem;
}

.stars {
    color: #f39c12;
    margin-right: 5px;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.8rem;
}

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

.cart-actions {
    margin-top: auto;
}

.cart-actions .btn {
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.cart-actions .btn i {
    font-size: 1rem;
    margin: 0;
}

.add-to-cart-btn {
    background: var(--primary-color);
    border: none;
    box-shadow: 0 6px 15px rgba(193, 154, 107, 0.25);
}

.add-to-cart-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.buy-now-btn {
    background: #1f9d5c;
    border: none;
    box-shadow: 0 6px 18px rgba(31, 157, 92, 0.3);
}

.buy-now-btn:hover {
    background: #158047;
    transform: translateY(-2px);
}

.current-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

.original-price {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount-badge {
    background: #27ae60;
    color: white;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 500;
}

.add-to-cart-btn {
    width: 100%;
    padding: 10px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto;
}

.add-to-cart-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Quantity Controls */
.qty-controls {
    width: 100%;
    margin-top: auto;
    gap: 5px;
}

.qty-controls .qty-row {
    gap: 6px;
}

.qty-controls .cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--primary-color);
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.qty-controls .cart-link:hover {
    background: var(--primary-color);
    color: #fff;
}

.qty-controls .btn {
    width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s;
}

.qty-controls .btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.qty-controls .qty-value {
    border: 1px solid var(--border-color);
    font-weight: 500;
    color: var(--text-dark);
    pointer-events: none;
}

/* Category Cards */
.category-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    transition: all 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px;
    color: white;
}

.category-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Features Section */
.features-section {
    background: #f8f9fa;
    padding: 50px 0;
}

.feature-box {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Filter Section */
.filter-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filter-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

.filter-option {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.filter-option input[type="checkbox"] {
    margin-right: 10px;
}

/* Cart Table */
.cart-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.quantity-input {
    width: 80px;
    text-align: center;
}

.remove-item {
    color: var(--accent-color);
    cursor: pointer;
    transition: all 0.3s;
}

.remove-item:hover {
    color: #c0392b;
    transform: scale(1.2);
}

/* Checkout */
.order-summary {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

/* Profile Page */
.profile-sidebar {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.profile-menu {
    list-style: none;
    padding: 0;
}

.profile-menu li {
    margin-bottom: 10px;
}

.profile-menu a {
    display: block;
    padding: 10px 15px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.profile-menu a:hover,
.profile-menu a.active {
    background: var(--primary-color);
    color: white;
}

/* Order Details */
.order-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.order-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.order-status.pending {
    background: #f39c12;
    color: white;
}

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

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

.order-status.delivered {
    background: #27ae60;
    color: white;
}

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

/* Reviews */
.review-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: 600;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .carousel-item {
        height: 300px;
    }
    
    .product-image {
        height: 220px;
    }
    
    .order-summary {
        position: static;
        margin-top: 30px;
    }
}

/* Loading Spinner */
.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Alert Messages */
.alert {
    border-radius: 10px;
    padding: 15px 20px;
}

/* Buttons */
.btn {
    border-radius: 5px;
    font-weight: 500;
    padding: 10px 25px;
    transition: all 0.3s;
}

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

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

/* Forms */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

/* Pagination */
.pagination {
    margin-top: 30px;
}

.page-link {
    color: var(--primary-color);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 5rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.empty-state h3 {
    margin-bottom: 15px;
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Mobile Menu Styling - Different colors for navbar and dropdown */
@media (max-width: 991px) {
    /* Main navbar menu items */
    .navbar-nav .nav-link {
        color: #ffffff !important;
        padding: 0.75rem 0.5rem;
        font-weight: 500;
    }

    .navbar-nav .nav-link:hover {
        color: var(--primary-color) !important;
    }

    /* Dropdown menu items (submenu) */
    .navbar-nav .dropdown-menu {
        background-color: #000000;
        border: 1px solid #ddd;
    }

    .navbar-nav .dropdown-menu .dropdown-item {
        color: #f0efef !important;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        font-weight: 400;
    }

    .navbar-nav .dropdown-menu .dropdown-item:hover {
        background-color: #e9ecef;
        color: var(--primary-color) !important;
    }

    .navbar-nav .dropdown-menu .dropdown-item.active {
        background-color: var(--primary-color);
        color: white !important;
    }

    /* Show dropdown indicator for mobile */
    .navbar-nav .nav-link.dropdown-toggle::after {
        content: ' ▼';
        font-size: 0.75rem;
    }

    /* Mobile Bottom Navigation */
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 70px;
        background: #ffffff;
        border-top: 1px solid #e0e0e0;
        display: flex;
        justify-content: space-around;
        align-items: center;
        z-index: 999;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 25%;
        height: 100%;
        text-decoration: none;
        color: var(--text-dark);
        font-size: 0.75rem;
        font-weight: 500;
        transition: all 0.3s ease;
        border-radius: 8px 8px 0 0;
    }

    .mobile-nav-item i {
        font-size: 1.5rem;
        margin-bottom: 4px;
        color: var(--text-dark);
        transition: color 0.3s ease;
    }

    .mobile-nav-item:hover {
        background-color: #f5f5f5;
        color: var(--primary-color);
    }

    .mobile-nav-item:hover i {
        color: var(--primary-color);
    }

    .mobile-nav-item.active {
        color: var(--primary-color);
        background-color: #fafafa;
    }

    .mobile-nav-item.active i {
        color: var(--primary-color);
    }

    .mobile-cart-badge {
        position: absolute;
        top: 5px;
        right: 8px;
        background: #dc3545;
        color: white;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.6rem;
        font-weight: bold;
    }

    /* Add padding to main to prevent content overlap */
    main {
        padding-bottom: 80px;
    }

    body {
        padding-bottom: 80px;
    }
}

