/* Ulak Antik - Modern & Mobile Friendly Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a2e;
    --secondary: #c9a227;
    --accent: #e8d5b7;
    --dark: #0f0f1a;
    --light: #f8f6f2;
    --cream: #fdfcfa;
    --text: #333;
    --text-light: #666;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

/* ==================== HEADER ==================== */
header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: var(--light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-top {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 0;
    font-size: 0.85em;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    gap: 25px;
}

.contact-info span {
    opacity: 0.9;
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--secondary);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo span {
    color: var(--light);
    font-weight: 300;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95em;
    cursor: pointer;
    padding: 12px 22px;
    border-radius: 25px;
    transition: var(--transition);
    font-weight: 500;
    display: block;
}

nav a:hover {
    background: var(--secondary);
    color: var(--dark);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    background: var(--secondary);
    border: none;
    color: var(--dark);
    font-size: 1.5em;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: bold;
}

/* ==================== HERO ==================== */
.hero {
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.9) 0%, rgba(26, 26, 46, 0.85) 100%),
        url('slider/1.jpg') center/cover fixed;
    color: var(--light);
    padding: 180px 20px 120px;
    text-align: center;
    margin-top: 95px;
    position: relative;
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--secondary);
    text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 40px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    opacity: 0.95;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary) 0%, #d4b445 100%);
    color: var(--dark);
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(201, 162, 39, 0.5);
}

/* ==================== SECTIONS ==================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 20px;
}

section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05em;
    margin-bottom: 50px;
}

/* ==================== ABOUT ==================== */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.about-text {
    font-size: 1.05em;
    line-height: 1.9;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-text p strong {
    color: var(--primary);
}

.services-compact {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item-compact {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
    transition: var(--transition);
}

.service-item-compact:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.service-icon-small {
    font-size: 2em;
    flex-shrink: 0;
}

.service-item-compact strong {
    display: block;
    color: var(--primary);
    font-size: 1.1em;
    margin-bottom: 5px;
}

.service-item-compact p {
    margin: 0;
    font-size: 0.9em;
}

/* About Slider */
.about-slider {
    position: relative;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.slider-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.slider-img.active {
    opacity: 1;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot:hover,
.slider-dot.active {
    background: var(--secondary);
    transform: scale(1.3);
}

/* ==================== CATEGORIES ==================== */
.categories {
    background: var(--light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.category-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.category-card h3 {
    font-size: 1.3em;
    color: var(--primary);
    margin-bottom: 10px;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.95em;
    line-height: 1.6;
}

/* ==================== CONTACT ==================== */
.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info-section {
    background: var(--light);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.contact-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item-icon {
    font-size: 1.5em;
    color: var(--secondary);
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.05em;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Contact Buttons */
.contact-buttons {
    background: var(--light);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-buttons h3 {
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.3em;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    border-radius: 14px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: var(--transition);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.btn-icon {
    font-size: 1.5em;
}

.btn-text {
    flex: 1;
}

.btn-handle {
    opacity: 0.85;
    font-weight: 400;
    font-size: 0.85em;
}

.phone-btn {
    background: linear-gradient(135deg, var(--secondary), #d4b445);
    color: var(--dark);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* ==================== FOOTER ==================== */
footer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: var(--light);
    text-align: center;
    padding: 40px 20px;
}

footer p {
    margin-bottom: 8px;
    opacity: 0.9;
}

footer a {
    color: var(--secondary);
    text-decoration: none;
}

/* ==================== MODALS ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 26, 0.95);
    z-index: 3000;
    overflow-y: auto;
    padding: 15px;
    backdrop-filter: blur(10px);
}

.modal.active {
    display: block;
}

.modal-content {
    max-width: 1200px;
    margin: 20px auto;
    background: white;
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light);
    gap: 15px;
}

.modal-header h2 {
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: 1.5em;
}

.close-btn {
    background: linear-gradient(135deg, var(--secondary), #d4b445);
    color: var(--dark);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95em;
    transition: var(--transition);
    white-space: nowrap;
}

.close-btn:hover {
    transform: scale(1.05);
}

/* ==================== GALLERY ==================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.gallery-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery-item-image {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4em;
    background: linear-gradient(135deg, var(--primary), #2d2d5a);
    color: white;
    overflow: hidden;
}

.gallery-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-image img {
    transform: scale(1.1);
}

.gallery-item-content {
    padding: 20px;
}

.gallery-item-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.15em;
}

.gallery-item-content p {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 0.9em;
}

.gallery-item-price {
    color: var(--secondary);
    font-size: 1.25em;
    font-weight: 700;
    margin-top: 10px;
}

.gallery-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.tag-badge {
    background: var(--light);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75em;
    color: var(--primary);
    font-weight: 500;
}

/* ==================== PRODUCT DETAIL ==================== */
.product-modal-content {
    max-width: 1000px;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-main-image {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #2d2d5a);
    border-radius: 16px;
    cursor: zoom-in;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #111;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
}

.product-thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    overflow: hidden;
    flex-shrink: 0;
    transition: var(--transition);
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: var(--secondary);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info h2 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.6em;
    text-align: left;
}

.product-info h2::after {
    display: none;
}

.product-price {
    font-size: 1.8em;
    color: var(--secondary);
    font-weight: 700;
    margin: 15px 0;
}

.product-description {
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1em;
}

.product-details-box {
    background: var(--light);
    padding: 25px;
    border-radius: 14px;
    margin: 20px 0;
}

.product-details-box h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.1em;
}

.product-details-box p {
    margin: 10px 0;
    color: var(--text);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95em;
}

.product-details-box p:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.product-contact-btn {
    display: block;
    background: linear-gradient(135deg, var(--secondary), #d4b445);
    color: var(--dark);
    text-align: center;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: var(--transition);
    margin-top: 20px;
}

.product-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
}

/* ==================== LIGHTBOX ==================== */
#lightboxModal {
    background: rgba(0, 0, 0, 0.97);
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

#lightboxModal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightboxImage {
    max-width: 95vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    touch-action: none;
    user-select: none;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--secondary);
    color: var(--dark);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 20px 15px;
    cursor: pointer;
    border-radius: 10px;
    z-index: 10;
    transition: var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--secondary);
    color: var(--dark);
}

.lightbox-prev { left: 15px; }
.lightbox-next { right: 15px; }

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.95rem;
    background: rgba(0,0,0,0.6);
    padding: 10px 20px;
    border-radius: 25px;
}

.zoom-hint {
    position: absolute;
    bottom: 65px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    background: rgba(0,0,0,0.5);
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

/* ==================== FORMS ==================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1em;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.submit-button {
    background: linear-gradient(135deg, var(--primary), #2d2d5a);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1em;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 700;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 26, 46, 0.3);
}

/* ==================== ADMIN ==================== */
.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.admin-tab {
    padding: 12px 25px;
    background: var(--light);
    border: none;
    font-size: 0.95em;
    cursor: pointer;
    color: var(--text-light);
    border-radius: 50px;
    transition: var(--transition);
    font-weight: 600;
}

.admin-tab.active,
.admin-tab:hover {
    background: var(--secondary);
    color: var(--dark);
}

.admin-content {
    display: none;
}

.admin-content.active {
    display: block;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.admin-section {
    background: var(--light);
    padding: 25px;
    border-radius: 16px;
}

.admin-section h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.2em;
}

.admin-list {
    max-height: 500px;
    overflow-y: auto;
}

.admin-item {
    background: white;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.admin-item-info {
    flex: 1;
    min-width: 0;
}

.admin-item-info h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1em;
}

.admin-item-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.85em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.85em;
}

.btn-edit {
    background: var(--secondary);
    color: var(--dark);
}

.btn-delete {
    background: #e74c3c;
    color: white;
}

/* Login */
.login-box {
    max-width: 400px;
    margin: 80px auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
}

.login-box h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.6em;
}

.error-message {
    background: #fce4e4;
    color: #c0392b;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
    font-size: 0.9em;
}

.loading {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}

/* ==================== RESPONSIVE ==================== */

/* Tablet */
@media (max-width: 1024px) {
    .about-content,
    .contact-grid,
    .admin-grid,
    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero {
        padding: 150px 20px 100px;
    }
    
    .hero h1 {
        font-size: 2.3em;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Header Mobile */
    .header-top {
        display: none;
    }
    
    .header-main {
        padding: 10px 0;
    }
    
    .header-main .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1.4em;
        letter-spacing: 2px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        padding: 15px;
        gap: 5px;
    }
    
    nav a {
        padding: 15px 20px;
        border-radius: 10px;
        font-size: 1em;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 120px 20px 70px;
        margin-top: 60px;
    }
    
    .hero h1 {
        font-size: 1.8em;
        letter-spacing: 1px;
    }
    
    .hero p {
        font-size: 1.1em;
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1em;
    }
    
    /* Sections Mobile */
    section {
        padding: 50px 15px;
    }
    
    section h2 {
        font-size: 1.8em;
    }
    
    .section-subtitle {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    
    /* About Mobile */
    .about-slider {
        height: 280px;
    }
    
    .service-item-compact {
        padding: 15px;
    }
    
    .service-icon-small {
        font-size: 1.8em;
    }
    
    /* Categories Mobile */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .category-card {
        padding: 25px 20px;
    }
    
    /* Contact Mobile */
    .contact-info-section,
    .contact-buttons {
        padding: 25px;
    }
    
    .contact-btn {
        padding: 15px 20px;
    }
    
    .btn-handle {
        display: none;
    }
    
    /* Modal Mobile */
    .modal {
        padding: 10px;
    }
    
    .modal-content {
        padding: 20px;
        margin: 10px auto;
        border-radius: 16px;
    }
    
    .modal-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    
    .modal-header h2 {
        font-size: 1.3em;
        text-align: center;
    }
    
    .close-btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item-image {
        height: 200px;
    }
    
    .gallery-item-content {
        padding: 15px;
    }
    
    /* Product Detail Mobile */
    .product-modal-content {
        padding: 15px;
    }
    
    .product-main-image {
        height: 250px;
    }
    
    .product-thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .product-info h2 {
        font-size: 1.3em;
    }
    
    .product-price {
        font-size: 1.5em;
    }
    
    .product-details-box {
        padding: 20px;
    }
    
    .product-contact-btn {
        padding: 14px 25px;
        font-size: 1em;
    }
    
    /* Lightbox Mobile */
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 15px 12px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev { left: 5px; }
    .lightbox-next { right: 5px; }
    
    .lightbox-counter {
        bottom: 15px;
        font-size: 0.85rem;
        padding: 8px 15px;
    }
    
    .zoom-hint {
        bottom: 55px;
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    /* Admin Mobile */
    .admin-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-section {
        padding: 20px;
    }
    
    .admin-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .admin-actions {
        width: 100%;
    }
    
    .admin-actions .btn {
        flex: 1;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Login Mobile */
    .login-box {
        margin: 30px 15px;
        padding: 30px 20px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.5em;
    }
    
    .logo {
        font-size: 1.2em;
    }
    
    section h2 {
        font-size: 1.5em;
    }
}