* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #000000;
    --secondary: #FFFFFF;
    --accent: #D4AF37;
    --gray: #111111;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    color: var(--primary);
    background: var(--secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Didot', 'Bodoni Moda', serif;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    letter-spacing: 4px;
    font-weight: 300;
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--secondary);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg1.jpg') center/cover;
    opacity: 0.4;
    filter: grayscale(100%);
}

.hero-home::before {
    background: url('../images/bg1.jpg') center/cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(36px, 8vw, 120px);
    font-weight: 200;
    letter-spacing: 8px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: clamp(14px, 2vw, 24px);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 15px 50px;
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--secondary);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.craftsmanship-content .btn-primary,
.section .btn-primary,
.contact-section .btn-primary,
.contact-form .btn-primary,
.success-page .btn-primary {
    color: var(--primary);
}

.hero .btn-primary,
.limited-section .btn-primary,
.editorial-section .btn-primary {
    color: var(--secondary);
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.craftsmanship-content .btn-primary:hover,
.section .btn-primary:hover {
    color: var(--primary);
}

.hero .btn-primary:hover,
.limited-section .btn-primary:hover,
.editorial-section .btn-primary:hover {
    color: var(--primary);
}

.side-menu {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-menu-item {
    width: 2px;
    height: 40px;
    background: var(--accent);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.side-menu-item:hover {
    opacity: 1;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(32px, 5vw, 64px);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 4px;
    font-weight: 200;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    padding: 0 20px;
    grid-auto-rows: auto;
}

.product-card {
    position: relative;
    overflow: hidden;
    background: var(--secondary);
    transition: transform 0.5s ease;
    width: 100%;
    max-width: 400px;
    justify-self: start;
}

.product-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-card::after {
    content: 'Click for more';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    letter-spacing: 3px;
    color: var(--secondary);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 5;
    pointer-events: none;
    text-transform: uppercase;
}

.product-card:hover img {
    filter: blur(5px);
    transform: scale(1.05);
}

.product-card:hover::after {
    opacity: 1;
}

.product-info {
    padding: 20px 0;
    text-align: center;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.product-card:hover .product-name::after {
    width: 100%;
}

.product-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.product-description {
    font-size: 12px;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-price {
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 300;
}

.editorial-section {
    background: var(--gray);
    color: var(--secondary);
    padding: 100px 0;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    padding: 0 20px;
}

.editorial-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.editorial-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.editorial-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.craftsmanship-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.craftsmanship-image {
    background: url('../images/artizan.jpg') center/cover;
    filter: grayscale(100%);
    position: relative;
}

.craftsmanship-page-image {
    background: url('../images/craftman.jpg') center/cover;
}

.craftsmanship-image::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--accent);
}

.craftsmanship-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.craftsmanship-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.craftsmanship-content p {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.limited-section {
    background: var(--primary);
    color: var(--secondary);
    padding: 100px 0;
    text-align: center;
}

.limited-section h2 {
    background: linear-gradient(90deg, var(--secondary), var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    display: block;
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-section {
    padding: 120px 0;
    background: #fafafa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 25px;
    letter-spacing: 3px;
    font-weight: 300;
    position: relative;
    padding-bottom: 20px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--accent);
}

.contact-info p {
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #555;
}

.contact-info .contact-item {
    margin-bottom: 40px;
    padding-left: 30px;
    position: relative;
}

.contact-info .contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 2px;
    height: 40px;
    background: var(--accent);
}

.contact-info .contact-item strong {
    display: block;
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--primary);
    font-weight: 400;
}

.contact-info .contact-item p {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    color: #333;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 18px 20px;
    border: 1px solid #e0e0e0;
    background: var(--secondary);
    font-family: inherit;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    color: var(--primary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
    letter-spacing: 0.5px;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-top: 5px;
    cursor: pointer;
}

.checkbox-wrapper label {
    font-size: 12px;
    line-height: 1.6;
}

.checkbox-wrapper a {
    color: var(--accent);
    text-decoration: underline;
}

.map-container {
    width: 100%;
    height: 400px;
    margin-top: 40px;
    border: 1px solid #ddd;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%);
}

footer {
    background: var(--primary);
    color: var(--secondary);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.footer-section h4 {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    font-size: 14px;
    letter-spacing: 0.5px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent);
}

.copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.6;
}

.copyright a {
    color: var(--accent);
    margin: 0 10px;
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--secondary);
    padding: 30px;
    z-index: 10000;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: none;
}

.privacy-popup.show {
    display: block;
}

.privacy-popup p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.privacy-popup-buttons {
    display: flex;
    gap: 15px;
}

.privacy-popup button {
    padding: 12px 30px;
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--secondary);
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.privacy-popup button:hover {
    background: var(--accent);
    color: var(--primary);
}

.privacy-popup a {
    color: var(--accent);
    text-decoration: underline;
}

.page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: var(--gray);
    color: var(--secondary);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg2.jpg') center/cover;
    opacity: 0.3;
    filter: grayscale(100%);
    z-index: 0;
}

.page-header-collections::before {
    background: url('../images/bg2.jpg') center/cover;
}

.page-header-craftsmanship::before {
    background: url('../images/bg3.jpg') center/cover;
}

.page-header-about::before {
    background: url('../images/bg4.jpg') center/cover;
}

.page-header-contacts::before {
    background: url('../images/bg5.jpg') center/cover;
}

.page-header-privacy::before {
    background: var(--primary);
    opacity: 1;
    filter: none;
}

.page-header-cookies::before {
    background: var(--primary);
    opacity: 1;
    filter: none;
}

.page-header-terms::before {
    background: var(--primary);
    opacity: 1;
    filter: none;
}

.page-header-return::before {
    background: var(--primary);
    opacity: 1;
    filter: none;
}

.page-header-faq::before {
    background: var(--primary);
    opacity: 1;
    filter: none;
}

.page-header > * {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.page-header h1 {
    font-size: clamp(36px, 6vw, 72px);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.page-content {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    letter-spacing: 2px;
}

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    letter-spacing: 1px;
}

.page-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.success-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.success-page h1 {
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.success-page p {
    font-size: 18px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

@media (max-width: 968px) {
    .nav-menu {
        gap: 30px;
    }

    .logo {
        font-size: 20px;
        letter-spacing: 3px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    .logo {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--secondary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        transition: left 0.3s ease;
        gap: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 16px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        text-align: center;
        width: 100%;
        max-width: 300px;
    }

    .mobile-menu-toggle {
        display: block;
        font-size: 28px;
        padding: 5px;
    }

    .side-menu {
        display: none;
    }

    .craftsmanship-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .craftsmanship-image {
        min-height: 300px;
    }

    .craftsmanship-image::after {
        display: none;
    }

    .craftsmanship-content {
        padding: 40px 20px;
    }

    .craftsmanship-content h2 {
        font-size: 36px;
    }

    .craftsmanship-content p {
        font-size: 15px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 15px;
    }

    .countdown-number {
        font-size: 36px;
    }

    .page-header {
        padding: 100px 0 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .page-header h1 {
        font-size: 36px;
        text-align: center;
        width: 100%;
    }

    .page-header p {
        text-align: center;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 30px;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .footer-section h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-section a {
        font-size: 13px;
    }

    .copyright {
        padding-top: 20px;
        font-size: 11px;
    }

    .copyright p {
        margin-bottom: 10px;
    }

    .copyright a {
        display: inline-block;
        margin: 5px 10px 5px 0;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 0;
    }

    .logo {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .mobile-menu-toggle {
        font-size: 24px;
    }

    .nav-menu {
        top: 55px;
        height: calc(100vh - 55px);
        padding: 30px 15px;
        align-items: center;
        justify-content: center;
    }

    .nav-menu a {
        font-size: 14px;
        padding: 12px 0;
        text-align: center;
        max-width: 280px;
    }

    .hero h1 {
        font-size: 32px;
        letter-spacing: 4px;
    }

    .hero p {
        font-size: 12px;
    }

    .page-header {
        padding: 80px 0 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .page-header h1 {
        font-size: 28px;
        letter-spacing: 2px;
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }

    .page-header p {
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        padding: 0 15px;
        gap: 25px;
    }

    .footer-section h4 {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .footer-section a {
        font-size: 12px;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .copyright {
        padding: 20px 15px 0;
        font-size: 10px;
    }

    .copyright a {
        font-size: 10px;
        margin: 3px 8px 3px 0;
    }

    .privacy-popup {
        left: 10px;
        right: 10px;
        padding: 20px;
    }

    .privacy-popup-buttons {
        flex-direction: column;
    }
}

.product-card {
    cursor: pointer;
}

.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.product-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.product-modal-content {
    position: relative;
    background: var(--secondary);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.product-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--primary);
    cursor: pointer;
    z-index: 10002;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.product-modal-close:hover {
    color: var(--accent);
}

.product-modal-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal-info {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-modal-name {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 300;
    color: var(--primary);
}

.product-modal-description {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    color: #666;
}

.product-modal-price {
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: var(--primary);
    font-weight: 300;
}

.product-modal-buy {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    color: var(--primary);
}

.product-modal-info .btn-primary {
    color: var(--primary);
}

@media (max-width: 768px) {
    .product-modal-content {
        grid-template-columns: 1fr;
        max-height: 95vh;
    }

    .product-modal-image {
        min-height: 300px;
    }

    .product-modal-info {
        padding: 40px 30px;
    }

    .product-modal-name {
        font-size: 28px;
    }
}

.collections-controls {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.search-bar-wrapper {
    display: flex;
    gap: 0;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.search-bar {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-right: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.search-bar:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.search-button {
    padding: 15px 30px;
    border: 1px solid var(--accent);
    background: var(--accent);
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.search-button:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.collections-filters {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-group label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
}

.filter-select {
    padding: 12px 40px 12px 20px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    letter-spacing: 0.5px;
    background: var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    min-width: 200px;
    text-align: center;
    text-align-last: center;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent);
}

.filter-select option {
    text-align: center;
}

.product-info {
    position: relative;
}

.product-like-btn {
    position: absolute;
    top: -10px;
    right: 0;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    z-index: 10;
    line-height: 1;
}

.product-like-btn:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.product-like-btn.liked {
    color: transparent;
    font-size: 0;
    position: relative;
}

.product-like-btn.liked::after {
    content: '♥';
    color: var(--accent);
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.product-card.hidden {
    display: none;
    grid-column: span 0;
    grid-row: span 0;
}

@media (max-width: 968px) {
    .collections-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .search-bar-wrapper {
        min-width: 100%;
        max-width: 100%;
    }

    .collections-filters {
        flex-wrap: wrap;
        gap: 15px;
    }

    .filter-group {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .collections-controls {
        padding: 0 15px;
    }

    .collections-filters {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .filter-group {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 10px;
    }

    .filter-select {
        width: 100%;
        min-width: auto;
    }

    .search-bar-wrapper {
        flex-direction: column;
    }

    .search-bar {
        border-right: 1px solid #e0e0e0;
        border-bottom: none;
    }

    .search-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .collections-controls {
        padding: 0 10px;
    }

    .search-bar {
        padding: 12px 15px;
        font-size: 13px;
    }

    .search-button {
        padding: 12px 20px;
        font-size: 13px;
    }

    .filter-group label {
        font-size: 11px;
    }

    .filter-select {
        padding: 10px 35px 10px 15px;
        font-size: 13px;
    }
}

@media (max-width: 320px) {
    .collections-controls {
        padding: 0 5px;
    }

    .search-bar {
        padding: 10px 12px;
        font-size: 12px;
    }

    .search-button {
        padding: 10px 15px;
        font-size: 12px;
    }

    .filter-select {
        padding: 8px 30px 8px 12px;
        font-size: 12px;
    }
}

@media (max-width: 320px) {
    header {
        padding: 10px 0;
    }

    .logo {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .mobile-menu-toggle {
        font-size: 22px;
        padding: 3px;
    }

    .nav-menu {
        top: 50px;
        height: calc(100vh - 50px);
        padding: 25px 10px;
        gap: 15px;
        align-items: center;
        justify-content: center;
    }

    .nav-menu a {
        font-size: 13px;
        padding: 10px 0;
        text-align: center;
        max-width: 250px;
    }

    .container {
        padding: 0 10px;
    }

    .page-header {
        padding: 70px 0 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .page-header h1 {
        font-size: 24px;
        letter-spacing: 1px;
        text-align: center;
        width: 100%;
        padding: 0 15px;
    }

    .page-header p {
        text-align: center;
        width: 100%;
        padding: 0 15px;
    }

    .hero {
        padding: 0 10px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .products-grid {
        gap: 20px;
        padding: 0 10px;
    }

    .btn-primary {
        padding: 10px 25px;
        font-size: 11px;
    }

    .product-modal-info {
        padding: 25px 15px;
    }

    .footer-content {
        padding: 0 10px;
        gap: 20px;
    }

    .footer-section {
        margin-bottom: 15px;
    }

    .footer-section h4 {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .footer-section a {
        font-size: 11px;
    }

    .footer-section ul li {
        margin-bottom: 6px;
    }

    .copyright {
        padding: 15px 10px 0;
        font-size: 9px;
    }

    .copyright p {
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .copyright a {
        font-size: 9px;
        margin: 2px 5px 2px 0;
        display: inline-block;
    }
}

.faq-question:hover {
    opacity: 0.9;
}

.faq-question:hover .faq-icon {
    color: var(--accent);
    transform: scale(1.1);
}

.faq-item.active .faq-question {
    color: var(--accent);
}

.faq-item.active .faq-icon {
    color: var(--accent);
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 20px !important;
        padding: 20px 0 !important;
    }
    
    .faq-answer p {
        font-size: 14px !important;
    }
}

.journey-tab {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.journey-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.3s ease;
    z-index: -1;
}

.journey-tab:hover {
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.journey-tab:hover::before {
    left: 0;
}

.journey-tab:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.2);
}

.journey-tab.active {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.journey-tab.active::before {
    left: 0;
}

.journey-tab.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.journey-panel {
    animation: fadeIn 0.5s ease;
}

.journey-panel img {
    cursor: pointer;
}

.journey-panel img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .journey-panel > div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .journey-panel > div > div:last-child {
        height: 300px !important;
    }
    
    .journey-tab {
        padding: 12px 30px !important;
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .journey-tab {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }
    
    .journey-panel h3 {
        font-size: 28px !important;
    }
    
    .journey-panel > div > div:last-child {
        height: 250px !important;
    }
    
    .journey-panel > div > div:last-child > div > div {
        font-size: 80px !important;
    }
}

@media (max-width: 968px) {
    .craftsmanship-content {
        padding: 60px 40px;
    }

    .craftsmanship-content h2 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .craftsmanship-content h2 {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .craftsmanship-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .craftsmanship-image {
        min-height: 250px;
    }

    .craftsmanship-content {
        padding: 30px 20px;
    }

    .craftsmanship-content h2 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .craftsmanship-content p {
        font-size: 13px;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .craftsmanship-stats {
        padding: 80px 0 !important;
    }

    .stats-grid {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .stat-item {
        min-width: 100% !important;
        width: 100%;
    }

    .stat-number {
        font-size: 56px !important;
    }

    .journey-steps {
        gap: 30px !important;
    }

    .journey-step {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .step-number {
        font-size: 36px !important;
        min-width: auto !important;
        text-align: left !important;
    }

    .journey-step h3 {
        font-size: 20px !important;
    }

    .journey-step p {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .craftsmanship-stats {
        padding: 60px 0 !important;
    }

    .stats-grid {
        gap: 25px !important;
    }

    .stat-number {
        font-size: 48px !important;
    }

    .stat-label {
        font-size: 12px !important;
    }

    .stat-description {
        font-size: 12px !important;
    }

    .craftsmanship-journey {
        padding: 60px 0 !important;
    }

    .craftsmanship-journey .section-title {
        font-size: 32px !important;
    }

    .journey-steps {
        gap: 25px !important;
    }

    .step-number {
        font-size: 32px !important;
    }

    .journey-step h3 {
        font-size: 18px !important;
    }

    .journey-step p {
        font-size: 13px !important;
    }
}

@media (max-width: 320px) {
    .craftsmanship-image {
        min-height: 200px;
    }

    .craftsmanship-content {
        padding: 25px 15px;
    }

    .craftsmanship-content h2 {
        font-size: 24px;
    }

    .craftsmanship-content p {
        font-size: 12px;
    }

    .craftsmanship-stats {
        padding: 50px 0 !important;
    }

    .stats-grid {
        gap: 20px !important;
    }

    .stat-number {
        font-size: 40px !important;
    }

    .stat-label {
        font-size: 11px !important;
    }

    .stat-description {
        font-size: 11px !important;
    }

    .craftsmanship-journey {
        padding: 50px 0 !important;
    }

    .craftsmanship-journey .section-title {
        font-size: 28px !important;
    }

    .journey-steps {
        gap: 20px !important;
    }

    .step-number {
        font-size: 28px !important;
    }

    .journey-step h3 {
        font-size: 16px !important;
    }

    .journey-step p {
        font-size: 12px !important;
    }
}

.newsletter-section input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 1px var(--accent);
}

.newsletter-section input[type="email"]::placeholder {
    color: rgba(255,255,255,0.6);
    opacity: 1;
}

.newsletter-section .btn-primary:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 80px 0 !important;
    }

    .newsletter-section .section-title {
        font-size: 36px !important;
    }

    .newsletter-section p {
        font-size: 16px !important;
        padding: 0 20px;
    }

    .newsletter-form > div {
        flex-direction: column !important;
    }

    .newsletter-form input[type="email"] {
        width: 100% !important;
        min-width: 100% !important;
        margin-bottom: 15px;
    }

    .newsletter-form .btn-primary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        padding: 60px 0 !important;
    }

    .newsletter-section .section-title {
        font-size: 28px !important;
    }

    .newsletter-section p {
        font-size: 14px !important;
        padding: 0 15px;
    }

    .newsletter-form input[type="email"] {
        padding: 15px 20px !important;
        font-size: 13px !important;
    }

    .newsletter-form .btn-primary {
        padding: 15px 30px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 320px) {
    .newsletter-section {
        padding: 50px 0 !important;
    }

    .newsletter-section .section-title {
        font-size: 24px !important;
    }

    .newsletter-section p {
        font-size: 13px !important;
    }

    .newsletter-form input[type="email"] {
        padding: 12px 15px !important;
        font-size: 12px !important;
    }

    .newsletter-form .btn-primary {
        padding: 12px 25px !important;
        font-size: 12px !important;
    }
}

