/* Butt Jewellers - Luxury Jewelry CSS */
:root {
    /* Primary Colors */
    --primary-gold: #D4AF37;
    --secondary-gold: #B8860B;
    --dark-gold: #996515;
    
    /* Neutral Colors */
    --ivory: #F9F7F3;
    --off-white: #FFFEF9;
    --charcoal: #1A1A1A;
    --dark-gray: #2D2D2D;
    --medium-gray: #666666;
    --light-gray: #E0E0E0;
    
    /* Accent Colors */
    --emerald: #046307;
    --deep-emerald: #024b04;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50%;
    
    /* Font Families */
    --font-heading: 'Cinzel', 'Cormorant Garamond', serif;
    --font-body: 'Inter', 'Poppins', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--ivory);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

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

/* Navigation Bar - Enhanced */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

/* Logo */
.logo-link {
    display: block;
    text-align: center;
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 1px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.brand-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: var(--medium-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-gray);
    padding: 8px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-links a.active {
    color: var(--primary-gold);
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 2px;
}

.admin-link {
    color: var(--emerald) !important;
    font-weight: 600 !important;
}

.admin-link:hover {
    color: var(--deep-emerald) !important;
}

/* User Actions */
.user-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Cart Icon */
.cart-icon {
    position: relative;
    font-size: 1.2rem;
    color: var(--dark-gray);
    transition: var(--transition-normal);
}

.cart-icon:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-gold);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--dark-gray);
    font-size: 0.95rem;
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.user-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
    color: var(--primary-gold);
}

.user-btn i {
    font-size: 1.2rem;
}

.user-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    z-index: 100;
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.dropdown-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: var(--dark-gray);
    border-bottom: 1px solid rgba(224, 224, 224, 0.3);
    transition: var(--transition-fast);
}

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

.dropdown-content a:hover {
    background: rgba(212, 175, 55, 0.05);
    color: var(--primary-gold);
    padding-left: 25px;
}

.dropdown-content a i {
    width: 20px;
    text-align: center;
    color: var(--medium-gray);
}

.dropdown-content a:hover i {
    color: var(--primary-gold);
}

/* Login Button */
.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    color: var(--charcoal);
    font-weight: 500;
    border: 2px solid var(--primary-gold);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.login-btn:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--charcoal);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition-normal);
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: white;
    padding: 40px 30px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.close-menu {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--charcoal);
    cursor: pointer;
    padding: 5px;
    margin-bottom: 30px;
    transition: var(--transition-normal);
}

.close-menu:hover {
    color: var(--primary-gold);
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    color: var(--dark-gray);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    font-weight: 500;
    border-left: 3px solid transparent;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    border-left-color: var(--primary-gold);
    padding-left: 20px;
}

.mobile-nav a i {
    width: 20px;
    text-align: center;
    color: var(--medium-gray);
}

.mobile-nav a:hover i,
.mobile-nav a.active i {
    color: var(--primary-gold);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.9) 100%),
                url('/butt-jewellers/public/assets/images/hero-bg.jpg') center/cover no-repeat;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--secondary-gold), var(--dark-gold));
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--charcoal);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    margin: 15px auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--medium-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Featured Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05));
    opacity: 0;
    transition: var(--transition-normal);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.product-info {
    padding: 20px;
    position: relative;
    z-index: 1;
    background: white;
}

.product-title {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--charcoal);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.product-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-meta span {
    font-size: 0.85rem;
    padding: 4px 10px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: var(--charcoal);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.add-to-cart:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Shop Page */
.shop-header {
    background: linear-gradient(135deg, var(--charcoal), var(--dark-gray));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 60px 0;
}

/* Filters */
.filters-sidebar {
    background: white;
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-group {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 20px;
}

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

.filter-group h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group h3 i {
    color: var(--primary-gold);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--medium-gray);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    padding: 5px;
    border-radius: var(--radius-sm);
}

.filter-options label:hover {
    background: rgba(212, 175, 55, 0.05);
    color: var(--primary-gold);
}

.filter-options input[type="checkbox"],
.filter-options input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-gold);
    cursor: pointer;
}

/* Price Range */
.price-range {
    padding: 10px 0;
}

.price-range input[type="range"] {
    width: 100%;
    height: 6px;
    background: var(--light-gray);
    border-radius: 3px;
    outline: none;
    /* -webkit-appearance: none; */
    margin: 15px 0;
}

.price-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: var(--primary-gold);
    border-radius: var(--radius-full);
    cursor: pointer;
    border: 3px solid white;
    box-shadow: var(--shadow-md);
}

.price-range-values {
    display: flex;
    justify-content: space-between;
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Products Grid Container */
.products-grid-container {
    min-height: 500px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.products-count {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.products-count strong {
    color: var(--primary-gold);
}

.sort-options {
    position: relative;
}

.sort-options select {
    padding: 10px 40px 10px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    background: white;
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    min-width: 200px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    transition: var(--transition-normal);
}

.sort-options select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* No Products */
.no-products {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
}

.no-products i {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-products h3 {
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.no-products p {
    color: var(--medium-gray);
    max-width: 400px;
    margin: 0 auto 30px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 40px 0;
}

.page-btn {
    padding: 10px 25px;
    background: white;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    color: var(--charcoal);
    cursor: pointer;
    transition: var(--transition-normal);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-btn:hover:not(:disabled) {
    background: var(--primary-gold);
    color: white;
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.page-numbers .current {
    color: var(--primary-gold);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-column h3,
.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-logo {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: white;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--primary-gold);
    margin-top: 3px;
    min-width: 20px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .filters-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .user-name {
        display: none;
    }
    
    .brand-name {
        font-size: 1.6rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .products-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .sort-options select {
        min-width: 100%;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .user-actions {
        gap: 15px;
    }
    
    .login-btn span {
        display: none;
    }
    
    .login-btn {
        padding: 10px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-content {
        width: 100%;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--primary-gold); }
.text-emerald { color: var(--emerald); }
.bg-light { background: var(--ivory); }
.bg-dark { background: var(--charcoal); color: white; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    background: white;
    color: var(--charcoal);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateX(100%);
    opacity: 0;
    transition: all var(--transition-normal);
    max-width: 350px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    border-left: 4px solid var(--emerald);
}

.toast.error {
    border-left: 4px solid #dc3545;
}

.toast.warning {
    border-left: 4px solid var(--primary-gold);
}

.toast i {
    font-size: 1.2rem;
}

.toast.success i {
    color: var(--emerald);
}

.toast.error i {
    color: #dc3545;
}

.toast.warning i {
    color: var(--primary-gold);
}
/* Add this to your existing style.css file */

/* ===== BOOTSTRAP OVERRIDES ===== */

/* Override Bootstrap container globally */
.container {
    padding: 0 20px !important;
}

/* Override Bootstrap buttons */
.btn-primary {
    background-color: #D4AF37 !important;
    border-color: #D4AF37 !important;
    color: white !important;
}

.btn-primary:hover {
    background-color: #B8860B !important;
    border-color: #B8860B !important;
}

.btn-outline-primary {
    color: #D4AF37 !important;
    border-color: #D4AF37 !important;
}

.btn-outline-primary:hover {
    background-color: #D4AF37 !important;
    color: white !important;
}

/* Override Bootstrap sections */
.section {
    padding: 80px 0 !important;
}

.bg-light {
    background-color: #f9f7f3 !important;
}

/* Override form controls */
.form-control:focus {
    border-color: #D4AF37 !important;
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25) !important;
}

/* Ensure body has proper background */
body {
    background-color: #f9f7f3 !important;
}