/* ===========================
   ELORA KAFE & RESTORAN & EVENT HALL
   CUSTOM STYLES
   =========================== */

/* ===========================
   ROOT VARIABLES
   =========================== */
:root {
    --primary-dark: #2c2c2c;
    --secondary-dark: #3a3a3a;
    --accent-gold: #d4af37;
    --light-gold: #f4e5b8;
    --dark-gold: #b8941f;
    --text-light: #f8f9fa;
    --text-muted: #adb5bd;
    --background-dark: #1a1a1a;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e5b8 100%);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 5px 20px rgba(212, 175, 55, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================
   GLOBAL STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--background-dark);
    overflow-x: hidden;
    padding-top: 90px;
}

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

.text-gold {
    color: var(--accent-gold) !important;
}

.bg-dark-subtle {
    background-color: var(--secondary-dark) !important;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1030 !important;
    transform: none !important;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98) !important;
    height: 80px;
    box-shadow: var(--shadow-dark);
    position: fixed !important;
    top: 0 !important;
}

/* Bootstrap Override for Fixed Navbar */
.navbar-expand-lg {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1030 !important;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold) !important;
    text-decoration: none;
    transition: var(--transition);
}

.navbar-brand:hover {
    color: var(--light-gold) !important;
    transform: scale(1.05);
}

.navbar-logo {
    height: 80px !important;
    width: 80px !important;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    display: block;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.5));
    max-width: none !important;
    max-height: none !important;
    min-width: 80px !important;
    min-height: 80px !important;
    transform: scale(1);
}

.navbar-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 25px rgba(212, 175, 55, 0.7));
}

/* Mobile-First Navbar Design */
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

.navbar-brand.mx-auto {
    position: fixed;
    left: calc(50vw - 65px);
    top: 20px;
    z-index: 1002;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Mobile Logo Background */
    background: rgba(26, 26, 26, 0.9);
    border-radius: 50%;
    padding: 8px;
    box-shadow:
        0 0 0 3px rgba(212, 175, 55, 0.6),
        0 8px 25px rgba(212, 175, 55, 0.4),
        inset 0 0 0 2px rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.8);
    backdrop-filter: blur(10px);
    width: 130px;
    height: 130px;
}

.navbar-brand.mx-auto:hover {
    text-decoration: none;
    transform: scale(1.05);
    box-shadow:
        0 0 0 5px rgba(212, 175, 55, 0.8),
        0 12px 35px rgba(212, 175, 55, 0.6),
        inset 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.navbar-toggler {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    border: none;
    padding: 8px;
}

.navbar-collapse {
    z-index: 1001;
}

/* Desktop Optimizations */
@media (min-width: 992px) {
    body {
        padding-top: 100px;
    }

    .navbar {
        height: 100px;
        padding: 15px 0;
    }

    .navbar.scrolled {
        height: 90px;
        padding: 10px 0;
    }

    .navbar-brand.mx-auto {
        width: 160px;
        height: 160px;
        padding: 15px;
        left: calc(50vw - 80px);
    }

    .navbar-logo {
        height: 140px;
        width: 140px;
    }

    .navbar-toggler {
        display: none;
    }
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    margin: 0 5px;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-gold) !important;
    background: rgba(212, 175, 55, 0.1);
}

.dropdown-menu {
    background: var(--primary-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    box-shadow: var(--shadow-dark);
}

.dropdown-item {
    color: var(--text-light);
    padding: 10px 20px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)),
        url('images/1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

/* Fallback için SVG pattern */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><rect width="1000" height="1000" fill="%23222"/><circle cx="200" cy="200" r="100" fill="%23333" opacity="0.5"/><circle cx="800" cy="300" r="150" fill="%23444" opacity="0.3"/><circle cx="400" cy="700" r="120" fill="%23333" opacity="0.4"/></svg>');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26, 26, 26, 0.8), rgba(58, 58, 58, 0.6));
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-weight: 300;
}

.hero-buttons {
    margin-top: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--accent-gold);
    font-size: 1.5rem;
    text-decoration: none;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===========================
   BUTTONS
   =========================== */
.btn-gold {
    background: var(--gradient-gold);
    border: none;
    color: var(--primary-dark);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 20;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: var(--primary-dark);
}

.btn-outline-light {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-content {
    padding: 2rem 0;
}

.about-content .lead {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
}

.about-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
}

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

.about-image:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) saturate(1.2);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.image-overlay-content {
    text-align: center;
    color: white;
}

.image-overlay-content h5 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.image-overlay-content p {
    color: var(--text-muted);
    margin: 0;
}

.image-placeholder {
    background: var(--secondary-dark);
    border: 2px dashed var(--accent-gold);
    border-radius: 15px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.image-placeholder:hover {
    border-color: var(--light-gold);
    background: rgba(212, 175, 55, 0.1);
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

/* ===========================
   MENU SECTION
   =========================== */

/* Menu Logo Section */
.menu-logo-section {
    margin: 3rem 0;
    position: relative;
}

.menu-logo-container {
    position: relative;
    display: inline-block;
    padding: 2rem;
}

.menu-logo {
    height: 120px;
    width: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    border: 3px solid var(--accent-gold);
    background: var(--primary-dark);
    padding: 15px;
}

.menu-logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.menu-logo-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px dashed var(--light-gold);
    border-radius: 20px;
    animation: rotate 20s linear infinite;
    opacity: 0.3;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.menu-nav {
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.btn-menu-nav {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 12px 20px;
    border-radius: 50px;
    transition: var(--transition);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    white-space: nowrap;
    min-width: auto;
}

.btn-menu-nav.active,
.btn-menu-nav:hover {
    background: var(--gradient-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-menu-nav i {
    font-size: 16px;
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
}

.menu-section {
    background: var(--primary-dark);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-dark);
    border-top: 3px solid var(--accent-gold);
}

.menu-section-title {
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.5rem;
}

.menu-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--secondary-dark);
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    position: relative;
}

.menu-item:last-child {
    margin-bottom: 0;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--accent-gold);
}

.menu-item-image {
    position: relative;
    width: 120px;
    height: 80px;
    margin-right: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.menu-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: 10px;
}

.menu-item-overlay i {
    color: var(--primary-dark);
    font-size: 1.5rem;
}

.menu-item:hover .menu-item-overlay {
    opacity: 1;
}

.menu-item:hover .product-image {
    transform: scale(1.1);
}

.menu-item-content {
    flex: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.menu-item-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-light);
}

.menu-item-price {
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.menu-item-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

/* ===========================
   EVENT SECTION
   =========================== */
.event-content {
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.event-content h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.event-features {
    margin: 2rem 0;
}

.feature-card {
    background: var(--secondary-dark);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 1rem;
    transition: var(--transition);
    border-top: 3px solid var(--accent-gold);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    background: rgba(212, 175, 55, 0.1);
}

.feature-card i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.feature-card h5 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.gallery-item {
    height: 200px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: white;
    padding: 1rem;
}

.gallery-overlay-content h6 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-overlay-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.gallery-item .image-placeholder {
    height: 100%;
    position: relative;
    z-index: 1;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-item {
    padding: 2rem 1rem;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-item h5 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-item p {
    color: var(--text-muted);
    margin: 0;
}

.social-links {
    margin-top: 2rem;
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: var(--secondary-dark);
    color: var(--text-light);
    border-radius: 50%;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px) scale(1.1);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Görsel alanları için responsive kurallar */
@media (max-width: 768px) {
    .about-image {
        height: 300px;
        margin-top: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .gallery-item {
        height: 150px;
    }

    .gallery-overlay-content h6 {
        font-size: 1rem;
    }

    .gallery-overlay-content p {
        font-size: 0.8rem;
    }

    .hero-section {
        background-attachment: scroll;
        /* Mobile'da fixed attachment performans sorunu yaratabilir */
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .menu-nav {
        text-align: center;
        gap: 8px;
    }

    .btn-menu-nav {
        padding: 10px 16px;
        font-size: 13px;
        margin-bottom: 8px;
    }

    .btn-menu-nav i {
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        text-align: center;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    /* Menu Mobile Styles */
    .menu-logo {
        height: 80px;
    }

    .menu-item {
        flex-direction: column;
        text-align: center;
    }

    .menu-item-image {
        width: 100%;
        height: 150px;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .menu-item-content {
        width: 100%;
    }

    .navbar-logo {
        height: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .menu-section {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 1rem;
    }
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===========================
   LOADING ANIMATION
   =========================== */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* ===========================
   SCROLL BEHAVIOR
   =========================== */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gold);
}

/* ===========================
   MENU ENHANCEMENTS
   =========================== */

/* Popular Badge */
.popular-badge {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.popular-badge i {
    margin-right: 4px;
}

/* Add to Cart Button - REMOVED */

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Enhanced Menu Item Layout */
.menu-item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.menu-item-header {
    margin-bottom: 0.5rem;
}

.menu-item-desc {
    flex-grow: 1;
    margin-bottom: 0.5rem;
}

/* Notification Animation */
.notification {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Enhanced Image Effects */
.menu-item-image {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

.menu-item:hover .menu-item-image {
    border-color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Loading State for Images */
.product-image {
    background: var(--secondary-dark);
    background-image: linear-gradient(45deg, transparent 35%, rgba(212, 175, 55, 0.1) 50%, transparent 65%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.product-image[src] {
    animation: none;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.border-gold {
    border-color: var(--accent-gold) !important;
}

.bg-gradient-gold {
    background: var(--gradient-gold) !important;
}

.shadow-gold {
    box-shadow: var(--shadow-gold) !important;
}

.rounded-custom {
    border-radius: 15px !important;
}

.hover-lift {
    transition: var(--transition);
}

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

/* ===========================
   PRINT STYLES
   =========================== */
@media print {

    .navbar,
    .hero-section,
    .scroll-indicator,
    .social-links {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .section-title {
        color: #333 !important;
    }
}