:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-purple: #8b5cf6;
    --accent-purple-dark: #6d28d9;
    --accent-purple-light: #a78bfa;
    --text-primary: #e5e5e5;
    --text-secondary: #a0a0a0;
    --border-color: #2a2a2a;
}

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

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

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

/* =========================
   Navigation (ORIGINAL)
========================= */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1900px;
    margin: 0 auto;
    padding: 2rem 2rem;

    display: flex;
    justify-content: space-between;
    
}

.logo h1 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        var(--accent-purple-light),
        var(--accent-purple)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
}

.tagline {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-right: 4rem;
    align-self: center;
    padding-top: 0.6rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-purple);
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: var(--accent-purple-light);
}


/* Hero Section */
.hero{
    height: 100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;

    background:
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.20) 0%, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(109, 40, 217, 0.18) 0%, transparent 55%),
        linear-gradient(rgba(0,0,0,0.70), rgba(0,0,0,0.70)),
        url("Images/Background/main.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.05"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, var(--accent-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-dark));
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::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.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

/* Sections */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Shop Section */
.shop-section {
    min-height: 100vh;
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 2rem;
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-purple);
    color: white;
    border-color: var(--accent-purple);
    transform: translateY(-2px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    animation: fadeIn 0.8s ease-out;
}

.product-card {
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    border-color: var(--accent-purple);
}

.product-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

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

.placeholder-icon {
    font-size: 4rem;
    color: var(--accent-purple);
    opacity: 0.5;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.9rem;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

/* ΜΟΝΟ στα cards (grid) */
.product-card .product-description{
  display: -webkit-box;
  -webkit-line-clamp: 3;      /* 3 γραμμές */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Στο View Details (modal) ΘΕΛΩ ΟΛΟ το κείμενο */
.modal-details .product-description{
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  text-overflow: unset;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-purple-light);
    margin-bottom: 1rem;
}

.buy-button {
      width: 100%;
    padding: 0.55rem 0.8rem;   /* 👈 πιο χαμηλό */
    font-size: 1rem;          /* 👈 λίγο μικρότερο */
    margin-bottom: 0.4rem;    /* 👈 controlled spacing */
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-dark));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.5);
}

/* About Section */
.about-section {
    background: var(--primary-dark);
    padding: 6rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    background: var(--secondary-dark);
    padding: 6rem 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--primary-dark);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-dark));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-purple);
}

/* Modal */
.modal.is-open {
    display: flex;
}
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    
    /* Center modal in viewport */
    align-items: flex-start;
    padding: 1rem;
}

.modal.is-open {
    display: block;
}

.modal-content {
    background: var(--secondary-dark);
    margin: 2rem auto;
    padding: 0;
    border: 1px solid var(--accent-purple);
    border-radius: 18px;

    width: 95%;
    max-width: 1250px;
    max-height: none; /* Allow natural height */

    position: relative;
    overflow: visible; /* Let modal itself handle scroll */
}

/* Custom scrollbar for modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--primary-dark);
    border-radius: 0 15px 15px 0;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple-light);
}

.close-modal {
    position: sticky;
    top: 15px;
    right: 20px;
    float: right;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
    background: var(--secondary-dark);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 10px 0 0;
}

.close-modal:hover {
    color: var(--accent-purple);
}

.modal-body {
    padding: 2rem;
    max-width: 100%;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.modal-image-section {
    position: relative;
}

/* Image Carousel */
.image-carousel {
    position: relative;
    width: 100%;
    height: 65vh;      /* 👈 πιάνει μεγάλο μέρος της οθόνης */
  max-height: 650px; /* 👈 να μη γίνεται τεράστιο σε πολύ μεγάλα screens */
  min-height: 520px; /* 👈 να μην είναι μικρό */
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

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

.carousel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: zoom-in;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 92, 246, 0.8);
    color: white;
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--accent-purple);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-purple);
    transform: scale(1.3);
}

.fullscreen-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(139, 92, 246, 0.8);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.fullscreen-btn:hover {
    background: var(--accent-purple);
    transform: scale(1.05);
}

/* Fullscreen Viewer */
.fullscreen-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.fullscreen-content {
    position: relative;
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fullscreen-carousel {
    position: relative;
    width: 100%;
    height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-image {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.5);
}

.fullscreen-image.active {
    opacity: 1;
}

.fullscreen-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 92, 246, 0.9);
    color: white;
    border: none;
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-nav-btn:hover {
    background: var(--accent-purple);
    transform: translateY(-50%) scale(1.1);
}

.fullscreen-nav-btn.prev {
    left: 20px;
}

.fullscreen-nav-btn.next {
    right: 20px;
}

.fullscreen-indicators {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.fullscreen-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.fullscreen-indicator.active {
    background: var(--accent-purple);
    transform: scale(1.4);
}

.fullscreen-counter {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    font-family: 'Cinzel', serif;
    background: rgba(139, 92, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    z-index: 10;
}

.fullscreen-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-purple);
    color: white;
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
}

.fullscreen-close:hover {
    background: var(--accent-purple-dark);
    transform: rotate(90deg);
}

.fullscreen-caption {
    margin-top: 1rem;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-family: 'Cinzel', serif;
    text-align: center;
}

.modal-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.modal-details h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.modal-details .product-category {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.modal-details .product-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.modal-details .product-price {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.payment-options {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.payment-options h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-purple-light);
}

.payment-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-btn {
    padding: 1rem;
    background: var(--primary-dark);
    color: var(--text-primary);
    border: 2px solid var(--accent-purple);
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
}

.payment-btn:hover {
    background: var(--accent-purple);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Order Form Styles */
.order-form-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.order-form-section .form-group {
    margin-bottom: 1.2rem;
}

.order-form-section label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

.order-form-section input,
.order-form-section textarea {
    width: 100%;
    padding: 0.9rem;
    background: var(--primary-dark);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.order-form-section input:focus,
.order-form-section textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.order-form-section input::placeholder,
.order-form-section textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.submit-order-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-dark));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    margin-top: 1rem;
}

.submit-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.5);
}

.order-form-section small a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.order-form-section small a:hover {
    color: var(--accent-purple-light);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

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

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

    /* CRITICAL: Mobile modal fixes */
    .modal {
        padding: 0.5rem;
    }

    .modal-content {
        width: 98%;
        max-height: none;
        margin: 0.5rem auto;
        border-radius: 12px;
    }

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

    .image-carousel {
        height: 250px;
    }
    
    .modal-image {
        height: 250px;
    }

    .modal-body {
        padding: 0.8rem;
    }

    .category-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .fullscreen-btn {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        top: 10px;
        right: 10px;
    }
    
    .close-modal {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
        margin: 8px 8px 0 0;
    }
    
    /* Fullscreen mobile */
    .fullscreen-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .fullscreen-nav-btn.prev {
        left: 5px;
    }
    
    .fullscreen-nav-btn.next {
        right: 5px;
    }
    
    .fullscreen-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .fullscreen-counter {
        font-size: 0.9rem;
        bottom: 70px;
    }
    
    .fullscreen-indicators {
        bottom: 60px;
        gap: 8px;
    }
    
    .fullscreen-indicator {
        width: 10px;
        height: 10px;
    }
    
    .fullscreen-caption {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Mobile form improvements */
    .order-form-section input,
    .order-form-section textarea {
        font-size: 16px; /* Prevents iOS zoom */
    }

    .order-form-section .form-group {
        margin-bottom: 1rem;
    }

    .submit-order-btn {
        font-size: 1rem;
        padding: 0.9rem;
    }

    /* Mobile cart improvements */
    .cart-item {
        grid-template-columns: 60px 1fr;
        gap: 0.7rem;
        padding: 0.7rem;
    }

    .cart-thumb {
        width: 60px;
        height: 60px;
    }

    .cart-item h4 {
        font-size: 0.95rem;
    }

    .cart-qty {
        grid-column: 2;
        justify-content: flex-start;
        margin-top: 0.5rem;
    }
}

/* Cart button on navbar */
.nav-actions{
  display:flex;
  align-items:center;
  gap: 1rem;
}

.cart-btn{
  background: transparent;
  border: 1px solid rgba(139,92,246,0.35);
  color: var(--text-primary);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  transition: all 0.25s ease;
}

.cart-btn:hover{
  background: rgba(139,92,246,0.15);
  transform: translateY(-1px);
}

.cart-count{
  display:inline-block;
  margin-left: 0.35rem;
  min-width: 1.6rem;
  text-align:center;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: var(--accent-purple);
  color: white;
  font-size: 0.95rem;
}

/* Cart list */
#cartItems{
  display:flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.cart-item{
  display:grid;
  grid-template-columns: 70px 1fr auto;
  gap: 0.9rem;
  align-items:center;
  padding: 0.9rem;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: rgba(0,0,0,0.15);
}

.cart-thumb{
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
}

.cart-item h4{
  margin: 0;
  font-family:'Cinzel',serif;
  font-size: 1.05rem;
}

.cart-item .meta{
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.cart-qty{
  display:flex;
  align-items:center;
  gap: 0.4rem;
  justify-content:flex-end;
}

.qty-btn{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(139,92,246,0.35);
  background: transparent;
  color: var(--text-primary);
  cursor:pointer;
}

.qty-num{
  min-width: 26px;
  text-align:center;
}

.remove-btn{
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.75);
  cursor:pointer;
  margin-left: 0.4rem;
}

.cart-summary{
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.cart-summary .row{
  display:flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  color: var(--text-secondary);
}

.cart-summary .row.total{
  color: var(--text-primary);
  font-size: 1.15rem;
  font-weight: 700;
}