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

body {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.announcement-bar {
    background-color: #1a1a1a;
    color: white;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
}

.announcement-content span {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.header {
    background-color: white;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 6px;
    color: #1a1a1a;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav a:hover {
    color: #c9a962;
}

.nav-categories-dropdown {
    position: relative;
}

.nav-categories-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
}

.nav-categories-btn:hover {
    color: #c9a962;
}

.nav-categories-btn svg {
    transition: transform 0.3s;
}

.nav-categories-btn.active svg {
    transform: rotate(180deg);
}

.nav-categories-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    background: white;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    min-width: 200px;
    z-index: 1000;
    padding: 8px 0;
}

.nav-categories-dropdown-menu.active {
    display: block;
}

.nav-category-item {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s;
    cursor: pointer;
}

.nav-category-item:hover {
    background-color: #f5f5f5;
    color: #c9a962;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #1a1a1a;
}

.mobile-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.mobile-sidebar-overlay.active {
    display: block;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: white;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #1a1a1a;
    z-index: 1001;
}

.mobile-sidebar-content {
    padding: 60px 24px 24px;
}

.mobile-nav-section {
    margin-bottom: 32px;
}

.mobile-nav-section h4 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.mobile-categories-list {
    display: flex;
    flex-direction: column;
}

.mobile-category-item {
    padding: 12px 0;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s;
    cursor: pointer;
}

.mobile-category-item:hover {
    color: #c9a962;
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: #c9a962;
}

.language-switcher {
    position: relative;
}

.lang-btn {
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-btn:hover {
    border-color: #c9a962;
    color: #c9a962;
}

.lang-btn svg {
    transition: transform 0.3s;
}

.lang-btn.active svg {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-width: 140px;
    z-index: 1000;
}

.lang-dropdown.active {
    display: block;
}

.lang-option {
    color: #333;
    display: block;
    width: 100%;
    padding: 12px 16px;
    text-align: left;
    background: none;
    border: none;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.lang-option:hover {
    background-color: #f5f5f5;
}

.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.hero h1 {
    font-size: 64px;
    font-weight: 300;
    letter-spacing: 12px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.hero .subtitle {
    font-size: 18px;
    letter-spacing: 8px;
    color: #c9a962;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 14px;
    opacity: 0.8;
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.hero .btn {
    margin-top: 40px;
    padding: 15px 40px;
    background-color: #c9a962;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    border-radius: 0;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.hero .btn:hover {
    background-color: #b89851;
}

.about {
    padding: 100px 0;
    text-align: center;
    background-color: white;
}

.about h2 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 10px;
}

.about .subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    color: #c9a962;
    margin-bottom: 40px;
}

.about p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.collection {
    padding: 30px 0;
    background-color: #fafafa;
}

.collection h2 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 6px;
    text-align: center;
    margin-bottom: 10px;
}

.collection .subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    color: #c9a962;
    text-align: center;
    margin-bottom: 40px;
}

.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.category-filter-btn {
    padding: 10px 28px;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    font-family: inherit;
}

.category-filter-btn:hover {
    border-color: #c9a962;
    color: #c9a962;
}

.category-filter-btn.active {
    background: #c9a962;
    border-color: #c9a962;
    color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.product-card {
    background-color: white;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.product-card .price {
    font-size: 14px;
    color: #c9a962;
    font-weight: 500;
}

.banners {
    padding: 60px 0;
    background-color: white;
}

.banner-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.banner-item {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.banner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    transition: background-color 0.3s;
}

.banner-item:hover::before {
    background-color: rgba(0,0,0,0.7);
}

.banner-item h3,
.banner-item p {
    position: relative;
    z-index: 1;
}

.banner-item h3 {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.banner-item p {
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.8;
}

.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-section h4 {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #c9a962;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 12px;
    color: #666;
    letter-spacing: 2px;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .banner-container {
        grid-template-columns: 1fr;
    }
    
    .footer .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header .container {
        justify-content: flex-start;
        gap: 16px;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav {
        display: none;
    }

    .logo {
        flex: 1;
        text-align: center;
        font-size: 22px;
        letter-spacing: 4px;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: 8px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-card img {
        height: 200px;
    }

    .category-filter {
        gap: 8px;
        margin-bottom: 30px;
    }

    .category-filter-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}

.breadcrumb {
    padding: 20px 0;
    font-size: 14px;
    color: #888;
}

.breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #c9a962;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #ddd;
}

.product-detail {
    padding: 40px 0;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.product-images-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image-container {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.main-product-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

.thumbnails-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    flex-shrink: 0;
}

.thumbnail-item:hover {
    border-color: #c9a962;
}

.thumbnail-item.active {
    border-color: #c9a962;
}

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

.product-info-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-name {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.product-category {
    font-size: 14px;
    color: #c9a962;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.product-price {
    font-size: 28px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.product-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.homepage-contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.contact-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-link-btn:hover {
    border-color: #c9a962;
    color: #c9a962;
}

.contact-link-icon-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.product-details {
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-size: 14px;
    color: #1a1a1a;
}

.product-section {
    margin-bottom: 80px;
}

.product-section .section-title {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.product-full-description {
    font-size: 16px;
    line-height: 2;
    color: #666;
}

.craftsmanship-text {
    font-size: 16px;
    line-height: 2;
    color: #666;
    font-style: italic;
}

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

@media (max-width: 900px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-name {
        font-size: 24px;
    }
    
    .product-price {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }
    
    .nav {
        display: none;
    }
    
    .hero h1 {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .footer .container {
        grid-template-columns: 1fr;
    }
    
    .main-image-container {
        padding: 20px;
    }
    
    .product-actions {
        /*flex-direction: column;*/
    }

    .homepage-contact-links {
        gap: 12px;
    }

    .contact-link-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}