* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c9a961;
    --primary-dark: #a88a4f;
    --secondary-color: #1a1a1a;
    --accent-color: #fafafa;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-lighter: #999;
    --white: #ffffff;
    --gold-gradient: linear-gradient(135deg, #c9a961 0%, #d4b574 50%, #e8c988 100%);
    --dark-gradient: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    --shadow-soft: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 10px 30px rgba(201, 169, 97, 0.3);
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1.2rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2.2rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 3px;
    font-family: 'Playfair Display', serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.working-hours-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--accent-color);
    border-radius: 25px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    animation: pulse 2s infinite;
}

.status-dot.active {
    background: #4caf50;
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
}

.status-dot.inactive {
    background: #f44336;
    box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.7);
    animation: pulse-red 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(244, 67, 54, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 0);
    }
}

.working-hours-text {
    color: var(--text-dark);
    font-weight: 500;
}

.working-hours-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.register-btn {
    padding: 10px 25px !important;
    background: var(--gold-gradient);
    color: var(--white) !important;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.register-btn::after {
    display: none;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--white) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(44, 44, 44, 0.5) 100%),
                url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-gradient);
    opacity: 0.15;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 40px;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    font-weight: 700;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.2s both;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--gold-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-medium);
    animation: fadeInUp 1s ease 0.4s both;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

/* Collection Section */
.collection {
    padding: 120px 0;
    background: var(--accent-color);
    position: relative;
}

.collection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-gradient);
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 80px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    width: 100%;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.collection-item {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    border: 2px solid transparent;
}

.collection-item:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-color);
}

.collection-image {
    height: 450px;
    background: linear-gradient(135deg, #c9a961 0%, #d4b574 50%, #e8c988 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.collection-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.collection-item:hover .collection-image::before {
    opacity: 1;
}

.collection-icon {
    font-size: 5rem;
    color: var(--white);
    z-index: 2;
    position: relative;
    transition: all 0.5s ease;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
}

.collection-item:hover .collection-icon {
    transform: scale(1.2) rotate(5deg);
    color: rgba(255, 255, 255, 0.95);
}

.collection-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-soft);
    z-index: 3;
    transition: all 0.3s ease;
}

.collection-item:hover .collection-badge {
    background: var(--white);
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.collection-item h3 {
    padding: 25px 30px 10px;
    text-align: center;
    font-size: 1.8rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    transition: color 0.3s ease;
}

.collection-item:hover h3 {
    color: var(--primary-color);
}

.collection-description {
    padding: 0 30px 30px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.collection-item:hover .collection-description {
    color: var(--text-dark);
}

/* Gallery Carousel */
.gallery {
    padding: 120px 0;
    background: var(--white);
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: var(--shadow-strong);
    background: var(--white);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: #000;
}

.carousel-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.carousel-item img,
.carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-item video {
    background: #000;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.15);
    box-shadow: var(--shadow-gold);
    color: var(--primary-color);
}

.carousel-btn.prev {
    left: 25px;
}

.carousel-btn.next {
    right: 25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 25px;
    background: var(--accent-color);
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--text-lighter);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.carousel-dot.active::before {
    width: 20px;
    height: 20px;
    background: rgba(201, 169, 97, 0.2);
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--accent-color);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-gradient);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.about-text h3 {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.about-highlight {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(212, 181, 116, 0.1) 100%);
    padding: 15px 25px !important;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin: 25px 0 !important;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.about-features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.about-features li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-features li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 25px;
}

.about-image {
    height: 500px;
    background: var(--gold-gradient);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.about-placeholder {
    text-align: center;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.about-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
}

.about-placeholder p {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Modal Registration */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: var(--white);
    border-radius: 25px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-strong);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    padding: 50px 40px;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.registration-form {
    background: transparent;
    padding: 0;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
    background: var(--accent-color);
}

.form-icon {
    position: absolute;
    right: 20px;
    top: 48px;
    color: var(--text-lighter);
    font-size: 1.1rem;
}

.password-toggle {
    position: absolute;
    right: 20px;
    top: 48px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-lighter);
    font-size: 1.1rem;
    padding: 0;
    z-index: 2;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    display: none;
    font-size: 0.95rem;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
    display: block;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 12px;
    line-height: 1.8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section p i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
}

.working-hours {
    color: var(--primary-color) !important;
    font-weight: 500;
    margin: 15px 0 !important;
}

.working-hours strong {
    color: var(--white);
}

.managers-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.managers-title {
    color: var(--primary-color) !important;
    font-size: 0.95rem !important;
    margin: 15px 0 10px !important;
}

.manager-link {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.manager-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--gold-gradient);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-gold);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

/* Category Page Styles */
.category-header {
    margin-top: 70px;
    padding: 80px 0 60px;
    background: var(--gold-gradient);
    color: var(--white);
    text-align: center;
}

.category-header h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
}

.category-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 300;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    padding: 80px 0;
}

.product-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.product-media {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .nav-container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .collection-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .working-hours-indicator {
        font-size: 0.85rem;
        padding: 6px 15px;
    }

    .working-hours-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 30px 0;
        gap: 1.5rem;
    }

    .working-hours-indicator {
        display: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .collection-image {
        height: 350px;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .carousel-btn.prev {
        left: 15px;
    }

    .carousel-btn.next {
        right: 15px;
    }

    .modal-container {
        padding: 40px 30px;
        width: 95%;
    }

    .modal-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }

    .social-links {
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 60px 0;
    }

    .category-header h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .collection {
        padding: 80px 0;
    }

    .gallery {
        padding: 80px 0;
    }

    .category-header {
        padding: 60px 0 40px;
    }

    .category-header h1 {
        font-size: 2rem;
    }

    .modal-container {
        padding: 30px 20px;
    }

    .about {
        padding: 80px 0;
    }

    .about-content {
        gap: 30px;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-highlight {
        font-size: 1.1rem !important;
        padding: 12px 20px !important;
    }

    .about-image {
        height: 300px;
    }

    .about-placeholder i {
        font-size: 3.5rem;
    }

    .about-placeholder p {
        font-size: 1.1rem;
    }

    .working-hours-indicator {
        display: none;
    }
}

/* Product Page Styles */
.product-section {
    margin-top: 70px;
    padding: 60px 0;
    background: var(--white);
}

.breadcrumbs {
    margin-bottom: 40px;
    font-size: 0.95rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--primary-dark);
}

.breadcrumbs span {
    color: var(--text-lighter);
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: 20px;
    background: var(--accent-color);
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zoom-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.zoom-btn:hover {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.product-thumbnails {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-soft);
}

.product-details {
    padding: 20px 0;
}

.product-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.product-price-section {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--accent-color);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.price-text {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 500;
}

.manager-link-inline {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.manager-link-inline:hover {
    border-bottom-color: var(--primary-color);
}

.product-description {
    margin-bottom: 40px;
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.product-description p {
    margin-bottom: 15px;
}

.product-options {
    margin-bottom: 40px;
}

.option-group {
    margin-bottom: 30px;
}

.option-label {
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.color-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.color-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.color-option:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.color-option.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.3);
}

.size-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.size-option {
    padding: 12px 25px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.size-option:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.size-option.active {
    background: var(--gold-gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-soft);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 200px;
}

.quantity-btn {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

#quantity {
    width: 80px;
    padding: 12px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--white);
    color: var(--text-dark);
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-order {
    flex: 1;
    min-width: 250px;
    padding: 18px 30px;
    background: var(--gold-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-order:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}


.product-info {
    padding: 25px;
    background: var(--accent-color);
    border-radius: 15px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    color: var(--text-light);
}

.info-value {
    font-weight: 600;
    color: var(--text-dark);
}

.share-section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--accent-color);
    border-radius: 15px;
}

.share-label {
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.share-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

@media (max-width: 1024px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-gallery {
        position: static;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 2rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .btn-order {
        width: 100%;
    }

    .share-section {
        flex-direction: column;
        align-items: flex-start;
    }
}
