/* Fonts */
/* We import Google Fonts as elegant fallbacks until you add the local font files */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Manrope:wght@300;400;600&display=swap');

/* Custom Font Definitions */
@font-face {
    font-family: 'FoglihtenNo03';
    /* Ensure these files exist in your 'fonts' folder */
    src: url('fonts/FoglihtenNo03.otf') format('opentype'),
         url('fonts/FoglihtenNo03.ttf') format('truetype'),
         url('fonts/FoglihtenNo03.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Chalet-ParisNineteenEighty';
    src: url('fonts/Chalet-ParisNineteenEighty.otf') format('opentype'),
         url('fonts/Chalet-ParisNineteenEighty.ttf') format('truetype'),
         url('fonts/Chalet-ParisNineteenEighty.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Global Reset & Typography */
body {
    margin: 0;
    padding: 0;
    /* Priority: Custom Font -> Google Fallback -> System Font */
    font-family: 'Chalet-ParisNineteenEighty', 'Manrope', Helvetica, Arial, sans-serif;
    background-color: #fff8ec;
    color: #771215;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'FoglihtenNo03', 'Cinzel', serif;
    font-weight: normal;
}
h1{
    font-size: 56px;
    text-transform: uppercase;
}

/* Navigation */
nav {
    background: #fff8ec;
    padding: 20px 0;
    border-bottom: 1px solid rgba(119, 18, 21, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'FoglihtenNo03', 'Cinzel', serif;
    font-size: 32px;
    color: #771215;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links > a, .nav-links .dropdown > a {
    color: #771215;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.nav-links > a:hover, .nav-links .dropdown > a:hover {
    opacity: 0.6;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 10px 0;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    padding-top: 10px;
    background: #fff8ec;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(119, 18, 21, 0.12);
    border: 1px solid rgba(119, 18, 21, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, margin-top 0.2s ease;
}

/* Create invisible bridge between trigger and dropdown */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
}

.dropdown-content a {
    color: #771215;
    padding: 14px 24px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
    transition: background 0.2s ease, padding-left 0.2s ease;
    border-bottom: 1px solid rgba(119, 18, 21, 0.05);
}

.dropdown-content a:first-child {
    padding-top: 18px;
}

.dropdown-content a:last-child {
    border-bottom: none;
    padding-bottom: 18px;
}

.dropdown-content a:hover {
    background: rgba(119, 18, 21, 0.05);
    padding-left: 28px;
}

.dropdown-content .view-all {
    font-weight: 600;
    border-top: 2px solid rgba(119, 18, 21, 0.1);
    margin-top: 4px;
    padding-top: 16px !important;
}

/* Footer */
#contact {
    margin-top: 1%;
    margin-bottom: -0.5%;
}
footer {
    background: #771215;
    color: #fff8ec;
    padding: -30%;
    margin-top: 80px;
    text-align: center;
}

.footer-content p {
    opacity: 0.7;
    font-size: 14px;
    letter-spacing: 1px;
}
        .footer {
            padding: 60px 0 30px;
        }
        
        .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    color: #fff8ec;
    text-align: center;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 25px;
            color: #fff8ec;
        }
        
        .footer-column p {
            color: #fff8ec;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #fff8ec;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #fff8ec;
            color: #fff8ec;
            font-size: 14px;
        }

/* Utility Classes */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Buttons */
.btn, button {
    font-family: 'Chalet-ParisNineteenEighty', 'Manrope', sans-serif;
    letter-spacing: 1px;
}

/* Product Grid & Cards */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
}

@media(min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 24px;
    }
}

@media(min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr); /* Changed to 4 for better home page density */
        gap: 32px 24px;
    }
}

.product-card {
    border: 1px solid rgba(119, 18, 21, 0.1);
    border-radius: 0; /* More elegant square look */
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(119, 18, 21, 0.05);
}

.product-image-wrapper {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    background: #f9f9f9;
}

.product-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 20px;
}

.product-card h3 {
    margin: 8px 0;
    font-size: 18px;
    color: #771215;
    font-family: 'Chalet-ParisNineteenEighty', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card p {
    margin: 4px 0;
    font-size: 14px;
    color: #555;
}

.price-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    margin-top: 8px;
}

.price {
    font-weight: 600;
    color: #771215;
    font-size: 16px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #771215;
    color: #fff8ec;
    padding: 4px 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.badge.sale {
    background: #a41e22;
}

.section-title {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #771215;
}

.section-title p {
    color: #771215;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

/* View Details Button Overlay (optional nice touch) */
.view-details {
    margin-top: 15px;
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #771215;
    color: #771215;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.view-details:hover {
    background: #771215;
    color: #fff8ec;
}
/* About - BirSe link*/
.sponsor {
  text-decoration: underline;
}

.container {
        max-width: 1400px;
        margin: auto;
        padding: 60px 20px;
    }
    #neposlushko {
        margin-left:-40px; ;
    }

#unbold {
    font-weight: normal ;
}