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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid #D4AF37;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-family: 'Playfair Display', serif;
    color: #D4AF37;
    font-size: 2rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #D4AF37;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #D4AF37;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

/* Additional wave layers */
.hero .wave-layer-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><path d="M0,120 Q100,80 200,120 T400,120 L400,200 L0,200 Z" fill="none" stroke="%23D4AF37" stroke-width="1.2" opacity="0.08"/></svg>');
    background-size: 400px 200px;
    animation: waveMove1 12s linear infinite;
    z-index: 1;
}

.hero .wave-layer-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 150"><path d="M0,100 Q100,60 200,100 T400,100 L400,150 L0,150 Z" fill="none" stroke="%23FFD700" stroke-width="1" opacity="0.06"/></svg>');
    background-size: 400px 150px;
    animation: waveMove2 10s linear infinite;
    z-index: 2;
}

.hero .wave-layer-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 100"><path d="M0,70 Q100,40 200,70 T400,70 L400,100 L0,100 Z" fill="none" stroke="%23D4AF37" stroke-width="0.8" opacity="0.05"/></svg>');
    background-size: 400px 100px;
    animation: waveMove3 8s linear infinite;
    z-index: 3;
}

@keyframes waveMove1 {
    0% { 
        background-position: 0 0;
        transform: translateX(0);
    }
    100% { 
        background-position: 400px 0;
        transform: translateX(-20px);
    }
}

@keyframes waveMove2 {
    0% { 
        background-position: 0 0;
        transform: translateX(0);
    }
    100% { 
        background-position: -400px 0;
        transform: translateX(15px);
    }
}

@keyframes waveMove3 {
    0% { 
        background-position: 0 0;
        transform: translateX(0);
    }
    100% { 
        background-position: 400px 0;
        transform: translateX(-10px);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 215, 0, 0.03) 50%, transparent 70%);
    background-size: 300px 300px, 250px 250px, 200px 200px, 150px 150px, 100px 100px;
    animation: waveGlow 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><path d="M0,150 Q100,100 200,150 T400,150 L400,300 L0,300 Z" fill="none" stroke="%23D4AF37" stroke-width="1" opacity="0.15"/><path d="M0,180 Q100,130 200,180 T400,180 L400,300 L0,300 Z" fill="none" stroke="%23FFD700" stroke-width="0.8" opacity="0.12"/><path d="M0,210 Q100,160 200,210 T400,210 L400,300 L0,300 Z" fill="none" stroke="%23D4AF37" stroke-width="0.6" opacity="0.1"/></svg>');
    background-size: 400px 300px;
    background-position: 0 100%;
    animation: wavePattern 15s linear infinite;
}

@keyframes waveGlow {
    0%, 100% { 
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.05) rotate(1deg);
    }
}

@keyframes wavePattern {
    0% { 
        background-position: 0 100%;
    }
    100% { 
        background-position: 400px 100%;
    }
}

.hero-content {
    flex: 1;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

/* Coming Soon Banner - Remove this section when ready */
.coming-soon-banner {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #000;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #000;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #FFD700, #D4AF37);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

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

.btn-secondary:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sushi-plate {
    width: 400px;
    height: 400px;
    background: transparent;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.sushi-plate::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background-image: url('kaisushi.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: 3px solid transparent;
    border-radius: 50%;
    background-clip: padding-box;
    animation: logoGlow 3s ease-in-out infinite;
}

.sushi-plate::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(45deg, #D4AF37, #FFD700, #D4AF37, #FFD700, #D4AF37);
    background-size: 300% 300%;
    animation: borderShine 2s linear infinite, logoGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes logoGlow {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(212, 175, 55, 0.3),
            0 0 40px rgba(255, 215, 0, 0.2),
            0 0 60px rgba(212, 175, 55, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(212, 175, 55, 0.5),
            0 0 60px rgba(255, 215, 0, 0.3),
            0 0 90px rgba(212, 175, 55, 0.2);
    }
}

@keyframes borderShine {
    0% { 
        background-position: 0% 50%;
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% { 
        background-position: 100% 50%;
        transform: translate(-50%, -50%) rotate(180deg);
    }
    100% { 
        background-position: 0% 50%;
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
}

/* Menu Section */
.menu-section {
    padding: 150px 0 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    position: relative;
    z-index: 1;
}

/* Menu Search */
.menu-search-container {
    margin: 2rem 0 3rem 0;
    position: relative;
    z-index: 10;
}

.menu-search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.menu-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #D4AF37;
    font-size: 1.2rem;
    z-index: 2;
}

.menu-search-input {
    width: 100%;
    padding: 15px 50px 15px 55px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333;
    border-radius: 30px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.menu-search-input:focus {
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.menu-search-input::placeholder {
    color: #888;
}

.menu-search-clear {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #888;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
    z-index: 2;
}

.menu-search-clear:hover {
    color: #D4AF37;
}

.menu-search-results {
    text-align: center;
    color: #D4AF37;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: italic;
    display: none;
}

.menu-item.search-highlight {
    animation: highlightPulse 0.5s ease;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid #D4AF37;
    padding-left: 15px;
    margin-left: -15px;
}

@keyframes highlightPulse {
    0% {
        background: rgba(212, 175, 55, 0.2);
    }
    100% {
        background: rgba(212, 175, 55, 0.05);
    }
}

/* Menu Navigation */
.menu-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.menu-nav-btn {
    padding: 12px 24px;
    background: transparent;
    color: #ccc;
    border: 2px solid #333;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    z-index: 11;
}

.menu-nav-btn:hover {
    color: #D4AF37;
    border-color: #D4AF37;
    transform: translateY(-2px);
}

.menu-nav-btn.active {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #000;
    border-color: #D4AF37;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.menu-categories {
    position: relative;
    min-height: 600px;
    z-index: 5;
}

.menu-category {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

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

.menu-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.menu-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
}

.menu-subtitle {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.menu-subcategory {
    margin-bottom: 3rem;
}

.subcategory-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.subcategory-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(45deg, #D4AF37, #FFD700);
}

.menu-item h5 {
    color: #D4AF37;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-item {
    background: rgba(212, 175, 55, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #D4AF37;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.menu-item h4 {
    color: #D4AF37;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.menu-item p {
    color: #ccc;
    font-size: 0.9rem;
}

.price {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 700;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #000;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.feature i {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.feature h4 {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #ccc;
    font-size: 0.9rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chef-image {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #D4AF37, #B8860B);
    border-radius: 50%;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.chef-image::before {
    content: '👨‍🍳';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.contact-item i {
    font-size: 2rem;
    color: #D4AF37;
    min-width: 50px;
}

.contact-item h4 {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #ccc;
    line-height: 1.6;
}

.contact-item p strong {
    color: #D4AF37;
    font-weight: 600;
}

.reservation-form {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #D4AF37;
}

.reservation-form h3 {
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #333;
    border-radius: 5px;
    background: #1a1a1a;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.form-group input::placeholder {
    color: #666;
}

/* Footer */
.footer {
    background: #000;
    padding: 3rem 0 1rem;
    border-top: 2px solid #D4AF37;
}

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

.footer-section h3,
.footer-section h4 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #D4AF37;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #D4AF37;
    color: #000;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FFD700;
    transform: translateY(-3px);
}

.visit-stats {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.visit-stats p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.visit-stats i {
    color: #D4AF37;
    width: 16px;
}

.visit-stats span {
    color: #D4AF37;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 50px;
    }

    .menu-section {
        padding: 120px 0 80px 0;
    }

    .coming-soon-banner {
        font-size: 1.2rem;
        padding: 8px 20px;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .menu-nav {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .menu-nav-btn {
        width: 200px;
        text-align: center;
    }

    .menu-items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .menu-category h3 {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .sushi-plate {
        width: 300px;
        height: 300px;
    }

    .sushi-plate::before {
        width: 300px;
        height: 300px;
    }

    .sushi-plate::after {
        width: 320px;
        height: 320px;
    }

    /* Mobile wave optimization */
    .hero .wave-layer-1 {
        height: 120px;
        background-size: 300px 120px;
    }

    .hero .wave-layer-2 {
        height: 90px;
        background-size: 300px 90px;
    }

    .hero .wave-layer-3 {
        height: 60px;
        background-size: 300px 60px;
    }

    .chef-image {
        width: 200px;
        height: 200px;
    }

    .chef-image::before {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-banner {
        font-size: 1rem;
        padding: 6px 15px;
        margin-bottom: 0.8rem;
    }

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

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

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Gallery Mobile Styles */
    .gallery-modal-content {
        width: 98%;
        height: 95vh;
        margin: 1% auto;
    }

    .gallery-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .gallery-header h2 {
        font-size: 1.5rem;
    }

    .gallery-controls {
        width: 100%;
        justify-content: center;
    }

    .gallery-tabs {
        flex-wrap: wrap;
        gap: 5px;
        padding: 15px;
    }

    .gallery-tab {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
        padding: 20px;
    }

    .gallery-item img {
        height: 113px; /* 16:9 aspect ratio (200px * 9/16 = 112.5px) */
    }

    .upload-modal-content {
        width: 95%;
        margin: 2% auto;
    }

    .upload-header {
        padding: 15px 20px;
    }

    .upload-header h3 {
        font-size: 1.2rem;
    }

    .upload-form {
        padding: 20px;
    }

    .upload-area {
        padding: 30px 20px;
    }

    .upload-area i {
        font-size: 2rem;
    }

    .upload-area p {
        font-size: 1rem;
    }

    .upload-preview {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 10px;
    }

    .preview-item img {
        height: 80px;
    }

    .upload-actions {
        flex-direction: column;
        gap: 10px;
    }

    .close-viewer, .prev-photo, .next-photo {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .close-viewer {
        top: 10px;
        right: 10px;
    }

    .prev-photo {
        left: 10px;
    }

    .next-photo {
        right: 10px;
    }

    .photo-info {
        bottom: 10px;
        padding: 15px;
        max-width: 90%;
    }

    .photo-info h4 {
        font-size: 1rem;
    }

    .photo-info p {
        font-size: 0.8rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.gallery-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    margin: 2% auto;
    padding: 0;
    border: 2px solid #D4AF37;
    border-radius: 15px;
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(90deg, #D4AF37, #FFD700);
    color: #000;
    border-bottom: 2px solid #D4AF37;
}

.gallery-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.gallery-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.upload-btn, .close-gallery {
    background: rgba(0, 0, 0, 0.8);
    color: #D4AF37;
    border: 2px solid #D4AF37;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.upload-btn:hover, .close-gallery:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-2px);
}

.close-gallery {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid #333;
}

.gallery-tab {
    background: transparent;
    color: #ccc;
    border: 2px solid #333;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gallery-tab.active, .gallery-tab:hover {
    background: #D4AF37;
    color: #000;
    border-color: #D4AF37;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 30px;
    height: calc(100% - 200px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #D4AF37 #333;
}

.gallery-grid::-webkit-scrollbar {
    width: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: #333;
    border-radius: 4px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 4px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #222;
    border: 2px solid transparent;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 169px; /* 16:9 aspect ratio (300px * 9/16 = 168.75px) */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-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: opacity 0.3s ease;
}

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

/* Always show delete button */
.gallery-item .delete-photo {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.8;
    z-index: 10;
}

.gallery-item:hover .delete-photo {
    opacity: 1;
    background: #dc3545;
    transform: scale(1.1);
}


/* Upload Modal Styles */
.upload-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.upload-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    margin: 5% auto;
    padding: 0;
    border: 2px solid #D4AF37;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.upload-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(90deg, #D4AF37, #FFD700);
    color: #000;
    border-bottom: 2px solid #D4AF37;
}

.upload-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.close-upload {
    background: rgba(0, 0, 0, 0.8);
    color: #D4AF37;
    border: 2px solid #D4AF37;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-upload:hover {
    background: #D4AF37;
    color: #000;
}

.upload-form {
    padding: 30px;
}

.upload-area {
    border: 3px dashed #D4AF37;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    background: rgba(212, 175, 55, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.upload-area:hover, .upload-area.dragover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #FFD700;
}

.upload-area i {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 15px;
}

.upload-area p {
    color: #ccc;
    font-size: 1.1rem;
    margin: 0;
}

.upload-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #222;
}

.preview-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.preview-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.8rem;
}

.upload-options {
    margin-bottom: 20px;
}

.upload-options .form-group {
    margin-bottom: 15px;
}

.upload-options label {
    display: block;
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 5px;
}

.upload-options select, .upload-options textarea {
    width: 100%;
    padding: 12px;
    background: #333;
    border: 2px solid #555;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.upload-options select:focus, .upload-options textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

.upload-options textarea {
    height: 80px;
    resize: vertical;
}

.upload-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Photo Viewer Styles */
.photo-viewer {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(5px);
}

.photo-viewer-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-viewer, .prev-photo, .next-photo {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: #D4AF37;
    border: 2px solid #D4AF37;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.close-viewer {
    top: 20px;
    right: 20px;
}

.prev-photo {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.next-photo {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.close-viewer:hover, .prev-photo:hover, .next-photo:hover {
    background: #D4AF37;
    color: #000;
    transform: scale(1.1);
}

.prev-photo:hover, .next-photo:hover {
    transform: translateY(-50%) scale(1.1);
}

#viewerImage {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.photo-info {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 80%;
}

.photo-info h4 {
    color: #D4AF37;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.photo-info p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #333;
    border-top: 3px solid #D4AF37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ===== SHOPPING CART SYSTEM ===== */

/* Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    color: #D4AF37;
    font-size: 1.5rem;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    color: #fff;
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    animation: pulse 0.3s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Add to Cart Button */
.add-to-cart-btn {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: translateY(10px);
}

.menu-item:hover .add-to-cart-btn {
    opacity: 1;
    transform: translateY(0);
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #B8941F, #D4AF37);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* Size Selection for Nigiri/Sashimi */
.size-selection {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.menu-item:hover .size-selection {
    opacity: 1;
    transform: translateY(0);
}

.size-btn {
    flex: 1;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
}

.nigiri-btn {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
}

.sashimi-btn {
    background: linear-gradient(135deg, #B8941F, #D4AF37);
}

.size-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.nigiri-btn:hover {
    background: linear-gradient(135deg, #B8941F, #D4AF37);
}

.sashimi-btn:hover {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
}

.size-btn:active {
    transform: translateY(0);
}

.size-btn i {
    font-size: 0.7rem;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.cart-modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    margin: 5% auto;
    padding: 0;
    border: 2px solid #D4AF37;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
}

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

.cart-header {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: #000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-cart:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

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

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 5px;
}

.cart-item-size {
    font-size: 0.9rem;
    color: #ccc;
}

.cart-item-price {
    font-weight: 600;
    color: #fff;
    margin-left: 10px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background: #D4AF37;
    color: #000;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #B8941F;
    transform: scale(1.1);
}

.quantity-display {
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    min-width: 40px;
    text-align: center;
    font-weight: 600;
}

.remove-item {
    background: #ff4444;
    color: white;
    border: none;
    padding: 5px 8px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.remove-item:hover {
    background: #cc3333;
    transform: scale(1.1);
}

.cart-summary {
    background: #1a1a1a;
    padding: 20px;
    border-top: 2px solid #D4AF37;
}

.cart-totals {
    margin-bottom: 20px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #fff;
}

.total-final {
    font-size: 1.3rem;
    font-weight: bold;
    color: #D4AF37;
    border-top: 2px solid #333;
    padding-top: 10px;
    margin-top: 10px;
}

.pickup-info {
    background: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #D4AF37;
}

.pickup-info p {
    margin: 5px 0;
    color: #ccc;
    font-size: 0.9rem;
}

.pickup-info i {
    color: #D4AF37;
    margin-right: 8px;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #B8941F, #D4AF37);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.checkout-btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Order Modal */
.order-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.order-modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    margin: 2% auto;
    padding: 0;
    border: 2px solid #D4AF37;
    border-radius: 15px;
    width: 95%;
    max-width: 800px;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
}

.order-header {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: #000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.close-order {
    background: none;
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-order:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.order-form {
    padding: 30px;
}

.order-info, .customer-info, .payment-info {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid #333;
}

.order-info h4, .customer-info h4, .payment-info h4 {
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 10px;
}

.order-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    color: #fff;
}

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

.order-totals {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #333;
}

.order-totals .total-line {
    color: #fff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #333;
    border-radius: 8px;
    background: #1a1a1a;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.payment-notice {
    background: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #D4AF37;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.payment-notice i {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-top: 2px;
}

.payment-notice p {
    color: #ccc;
    margin: 0;
    line-height: 1.5;
}

.order-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: #000;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #B8941F, #D4AF37);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: #333;
    color: #fff;
    border: 2px solid #555;
}

.btn-secondary:hover {
    background: #444;
    border-color: #D4AF37;
}

/* Empty Cart State */
.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #ccc;
}

.empty-cart i {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 20px;
}

.empty-cart h3 {
    color: #D4AF37;
    margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Ensure proper mobile viewport handling */
    body {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }
    
    /* Fix for iOS Safari viewport issues */
    .cart-modal,
    .order-modal,
    .gallery-modal,
    .upload-modal,
    .photo-viewer {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1000;
        -webkit-overflow-scrolling: touch;
    }
    /* Cart Icon */
    .cart-icon {
        font-size: 1.3rem;
        margin-left: 15px;
    }
    
    /* Cart Modal - Mobile Optimized */
    .cart-modal {
        padding: 5px;
        overflow-y: auto;
    }
    
    .cart-modal-content {
        width: 100%;
        margin: 2% auto;
        max-height: 96vh;
        min-height: 50vh;
        padding: 0;
        border-radius: 10px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }
    
    .cart-header {
        padding: 15px 20px;
        border-radius: 10px 10px 0 0;
    }
    
    .cart-header h3 {
        font-size: 1.2rem;
    }
    
    .cart-items {
        flex: 1;
        overflow-y: auto;
        padding: 10px 20px;
        min-height: 200px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px;
        margin-bottom: 10px;
    }
    
    .cart-item-info {
        width: 100%;
    }
    
    .cart-item-name {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .cart-item-size {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    
    .cart-item-price {
        font-size: 1rem;
        font-weight: bold;
    }
    
    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
    }
    
    .quantity-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .quantity-display {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .remove-item {
        font-size: 1rem;
        padding: 8px 12px;
    }
    
    .cart-summary {
        padding: 20px;
        padding-bottom: 40px;
        border-radius: 0 0 10px 10px;
        flex-shrink: 0;
        background: #1a1a1a;
    }
    
    .cart-totals {
        margin-bottom: 15px;
    }
    
    .total-line {
        font-size: 1rem;
        padding: 8px 0;
    }
    
    .total-final {
        font-size: 1.2rem;
    }
    
    .pickup-info {
        margin-bottom: 20px;
    }
    
    .pickup-info p {
        font-size: 0.9rem;
        margin: 5px 0;
    }
    
    .checkout-btn {
        width: 100%;
        padding: 15px;
        font-size: 1.1rem;
        border-radius: 8px;
    }
    
    /* Order Modal - Mobile Optimized */
    .order-modal {
        padding: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2000;
    }
    
    .order-modal-content {
        width: 100%;
        margin: 0;
        min-height: 100vh;
        padding: 0;
        border-radius: 0;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        display: block;
        background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    }
    
    .order-header {
        padding: 15px 20px;
        border-radius: 0;
        background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
        border-bottom: 2px solid #D4AF37;
    }
    
    .order-header h3 {
        font-size: 1.2rem;
    }
    
    .order-form {
        padding: 20px;
        padding-bottom: 100px;
        overflow-y: visible;
        display: block;
    }
    
    .order-info {
        margin-bottom: 25px;
    }
    
    .order-info h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .order-summary {
        max-height: 30vh;
        overflow-y: auto;
        margin-bottom: 15px;
    }
    
    .order-summary-item {
        padding: 10px;
        margin-bottom: 8px;
        font-size: 0.9rem;
    }
    
    .order-totals {
        margin-top: 15px;
    }
    
    .customer-info h4,
    .payment-info h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 1rem;
        border-radius: 6px;
    }
    
    .confirmation-warning {
        padding: 15px;
        margin: 15px 0;
    }
    
    .confirmation-warning h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .confirmation-warning .warning-content p {
        font-size: 0.9rem;
        margin: 8px 0;
    }
    
    .confirmation-warning .warning-content ul {
        font-size: 0.9rem;
    }
    
    .payment-notice {
        padding: 15px;
        margin: 15px 0;
    }
    
    .payment-notice p {
        font-size: 0.9rem;
    }
    
    .order-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        padding: 20px;
        padding-bottom: 50px;
        border-top: 1px solid #333;
        background: #1a1a1a;
    }
    
    .btn {
        width: 100%;
        padding: 15px;
        font-size: 1.1rem;
        justify-content: center;
        border-radius: 8px;
    }
    
    /* Size Selection - Mobile */
    .size-selection {
        flex-direction: column;
        gap: 8px;
        margin-top: 10px;
    }
    
    .size-btn {
        font-size: 0.9rem;
        padding: 10px 15px;
        border-radius: 6px;
    }
    
    /* Gallery Modal - Mobile Optimized */
    .gallery-modal {
        padding: 10px;
    }
    
    .gallery-modal-content {
        width: 100%;
        margin: 2% auto;
        max-height: 98vh;
        padding: 0;
        border-radius: 10px;
    }
    
    .gallery-header {
        padding: 15px 20px;
        border-radius: 10px 10px 0 0;
    }
    
    .gallery-header h3 {
        font-size: 1.2rem;
    }
    
    .gallery-tabs {
        padding: 15px 20px;
        gap: 10px;
    }
    
    .gallery-tab {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
        padding: 15px 20px;
        max-height: 60vh;
        overflow-y: auto;
    }
    
    .gallery-item {
        border-radius: 8px;
        overflow: hidden;
    }
    
    .gallery-item img {
        height: 100px;
        width: 100%;
        object-fit: cover;
    }
    
    .gallery-item .delete-photo {
        top: 5px;
        right: 5px;
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .gallery-actions {
        padding: 15px 20px;
        border-radius: 0 0 10px 10px;
    }
    
    .upload-btn {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    /* Upload Modal - Mobile */
    .upload-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
        padding: 0;
        border-radius: 10px;
    }
    
    .upload-header {
        padding: 15px 20px;
        border-radius: 10px 10px 0 0;
    }
    
    .upload-header h3 {
        font-size: 1.2rem;
    }
    
    .upload-form {
        padding: 20px;
    }
    
    .upload-area {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .upload-area p {
        font-size: 0.9rem;
    }
    
    .upload-preview {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .preview-item {
        border-radius: 8px;
    }
    
    .preview-item img {
        height: 80px;
    }
    
    .preview-item .remove-preview {
        top: 5px;
        right: 5px;
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .upload-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .upload-actions .btn {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }
    
    /* Photo Viewer - Mobile */
    .photo-viewer {
        padding: 10px;
    }
    
    .photo-viewer-content {
        width: 100%;
        margin: 5% auto;
        max-height: 90vh;
        padding: 0;
        border-radius: 10px;
    }
    
    .photo-viewer-header {
        padding: 15px 20px;
        border-radius: 10px 10px 0 0;
    }
    
    .photo-viewer-header h3 {
        font-size: 1.2rem;
    }
    
    .photo-viewer-main {
        padding: 20px;
        text-align: center;
    }
    
    .photo-viewer img {
        max-width: 100%;
        max-height: 60vh;
        border-radius: 8px;
    }
    
    .photo-viewer-nav {
        padding: 15px 20px;
        border-radius: 0 0 10px 10px;
    }
    
    .nav-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    /* Close buttons - Mobile */
    .close-cart,
    .close-order,
    .close-gallery,
    .close-upload,
    .close-photo-viewer {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .cart-modal-content {
        margin: 1% auto;
        max-height: 99vh;
    }
    
    .order-modal-content {
        margin: 0;
        min-height: 100vh;
    }
    
    .cart-header,
    .order-header {
        padding: 10px 15px;
    }
    
    .cart-items {
        padding: 10px 15px;
    }
    
    .order-form {
        padding: 10px 15px;
        padding-bottom: 100px;
    }
    
    .cart-summary {
        padding: 15px;
        padding-bottom: 40px;
    }
    
    .btn {
        padding: 12px;
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Very small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    .cart-modal-content {
        margin: 0;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .order-modal-content {
        margin: 0;
        min-height: 100vh;
        border-radius: 0;
    }
    
    .cart-header,
    .order-header {
        border-radius: 0;
    }
    
    .cart-summary {
        border-radius: 0;
    }
    
    .gallery-modal-content,
    .upload-modal-content,
    .photo-viewer-content {
        margin: 0;
        max-height: 100vh;
        border-radius: 0;
    }
}

/* Confirmation warning styles */
.confirmation-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.confirmation-warning h4 {
    color: #ffc107;
    margin: 0 0 15px 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.confirmation-warning .warning-content p {
    margin: 10px 0;
    color: #fff;
    line-height: 1.5;
}

.confirmation-warning .warning-content ul {
    margin: 10px 0;
    padding-left: 20px;
    color: #fff;
}

.confirmation-warning .warning-content li {
    margin: 5px 0;
    color: #fff;
}

/* Login/Register Button */
.login-btn {
    background: #D4AF37;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

.user-profile-icon {
    color: #D4AF37;
    font-size: 1.8rem;
    cursor: pointer;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.user-profile-icon:hover {
    color: #fff;
    transform: scale(1.1);
}

/* Auth Modal */
.auth-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.auth-modal-content {
    background-color: #1a1a1a;
    margin: 5% auto;
    padding: 30px;
    border: 2px solid #D4AF37;
    border-radius: 10px;
    width: 90%;
    max-width: 450px;
    position: relative;
    color: #fff;
}

.auth-close {
    color: #D4AF37;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.auth-close:hover {
    color: #fff;
}

.auth-modal-content h2 {
    color: #D4AF37;
    margin-bottom: 20px;
    text-align: center;
}

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

.auth-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #D4AF37;
    font-weight: 600;
}

.auth-form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #D4AF37;
    border-radius: 5px;
    background-color: #000;
    color: #fff;
    font-size: 1rem;
}

.auth-form-group input:focus {
    outline: none;
    border-color: #fff;
}

.auth-submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #D4AF37;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.auth-submit-btn:hover {
    background-color: #fff;
    transform: scale(1.02);
}

.auth-switch-btn {
    width: 100%;
    padding: 12px;
    background-color: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-switch-btn:hover {
    background-color: #D4AF37;
    color: #000;
}

.auth-error {
    margin-top: 15px;
    padding: 10px;
    background-color: #ff4444;
    color: #fff;
    border-radius: 5px;
    text-align: center;
}

/* Profile Modal */
.profile-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.profile-modal-content {
    background-color: #1a1a1a;
    margin: 3% auto;
    padding: 30px;
    border: 2px solid #D4AF37;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    position: relative;
    color: #fff;
    max-height: 90vh;
    overflow-y: auto;
}

.profile-close {
    color: #D4AF37;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.profile-close:hover {
    color: #fff;
}

.profile-modal-content h2 {
    color: #D4AF37;
    margin-bottom: 20px;
    text-align: center;
}

.profile-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #D4AF37;
}

.profile-tab {
    padding: 10px 20px;
    background: transparent;
    color: #D4AF37;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.profile-tab.active {
    border-bottom-color: #D4AF37;
    color: #fff;
}

.profile-tab:hover {
    color: #fff;
}

.profile-tab-content {
    display: none;
}

.profile-tab-content.active {
    display: block;
}

.profile-info {
    margin-top: 20px;
}

.profile-info-item {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #000;
    border-radius: 5px;
    border: 1px solid #333;
}

.profile-info-item label {
    display: block;
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 8px;
}

.profile-info-item span {
    color: #fff;
    font-size: 1rem;
}

.profile-info-item input {
    width: 100%;
    padding: 10px;
    border: 1px solid #D4AF37;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 10px;
}

.profile-info-item input:focus {
    outline: none;
    border-color: #fff;
}

.profile-update-btn {
    padding: 8px 15px;
    background-color: #D4AF37;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.profile-update-btn:hover {
    background-color: #fff;
}

.profile-points {
    color: #D4AF37;
    font-size: 1.5rem;
    font-weight: bold;
}

.profile-logout-btn {
    width: 100%;
    padding: 12px;
    background-color: #ff4444;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.profile-logout-btn:hover {
    background-color: #cc0000;
}

.profile-orders-list,
.profile-reservations-list {
    margin-top: 20px;
}

.profile-order-item,
.profile-reservation-item {
    background-color: #000;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
}

.profile-order-item h4,
.profile-reservation-item h4 {
    color: #D4AF37;
    margin-bottom: 10px;
}

.profile-order-item p,
.profile-reservation-item p {
    color: #fff;
    margin: 5px 0;
}

.profile-empty {
    text-align: center;
    color: #888;
    padding: 40px;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .login-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
        margin-left: 10px;
    }
    
    .user-profile-icon {
        font-size: 1.5rem;
        margin-left: 10px;
    }
    
    .auth-modal-content,
    .profile-modal-content {
        width: 95%;
        padding: 20px;
        margin: 10% auto;
    }
    
    .profile-tabs {
        flex-direction: column;
    }
    
    .profile-tab {
        width: 100%;
    }
}
