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

body {
    font-family: 'Helvetica', Arial, sans-serif;
    background-color: #0F0F0F;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
   
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px auto;
    width: calc(100% - 40px);
    max-width: 1200px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-radius: 60px;
border: 1px solid #FFF;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: #D4A574;
    text-decoration: none;
    gap: 10px;
}



.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #D4A574;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 50px 20px 50px;
    background-color: #0F0F0F;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    color: #D4A574;
    text-align: center;
    margin-bottom: 80px;
    line-height: 1;
    letter-spacing: -0.02em;

    color: #F1B574;
text-align: center;
font-family: Helvetica;
font-size: 80px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-transform: uppercase;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-block {
    display: flex;
    gap: 30px;
    align-items: flex-end;
}

.hero-block-left {
    flex-direction: row;
}

.hero-block-right {
    flex-direction: row-reverse;
}

.hero-main-image {
    width: 315px;
    height: 100%;
    object-fit: cover;
 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.hero-content-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    max-width: 262px;
}
.hero-content-section-f{
  max-width: 183px;
}
.hero-text-block {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


.hero-block-right .hero-text-block {
    text-align: right;
}

.hero-text-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 20px;
    max-width: 183px;

    color: rgba(255, 255, 255, 0.70);
text-align: right;
font-family: Helvetica;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.hero-small-image {
    width: 100%;
    max-width: 185px;
    height: 100%;
    object-fit: cover;
 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hero-block-right .hero-small-image {
    align-self: flex-end;
}

.hero-second-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-second-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #cccccc;
}

.cta-button {
    background: #D4A574;
    color: #1a1a1a;
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.cta-button:hover {
    background: #E5B685;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 100px 20px;
    background: #0F0F0F;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #D4A574;
    margin-bottom: 80px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: flex-end;
}

/* .about-pattern {
    width: 100%;
    height: 500px;
    background: linear-gradient(45deg, transparent 48%, #444 49%, #444 51%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, #444 49%, #444 51%, transparent 52%);
    background-size: 40px 40px;
    position: relative;
    opacity: 0.6;
} */

/* .about-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(212, 165, 116, 0.05) 70%);
} */

.about-fragrance-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-fragrance-image {
    width: 100%;
    height: 100%;
    object-fit: cover;

    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.about-text {
    color: #cccccc;
    line-height: 1.8;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    gap: 25px;

    color: rgba(255, 255, 255, 0.70);
font-family: Helvetica;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.about-text p {
    margin: 0;
}

/* Fragrances Section */
.fragrances {
    padding: 100px 20px;
    background: #0F0F0F;
}

.fragrances-container {
    max-width: 1400px;
    margin: 0 auto;
}

.fragrances-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.fragrance-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    transition: transform 0.3s ease;
}

.fragrance-card:hover {
    transform: translateY(-10px);
}

.fragrance-image-container {
    position: relative;
    width: 100%;
    height: 390px;
    margin-bottom: 20px;
}

.fragrance-image {
    width: 100%;
    height: 100%;
    object-fit: cover;

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.fragrance-info {
    padding: 0;
}

.fragrance-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.fragrance-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

.read-more-btn {
    background: #D4A574;
    color: #1a1a1a;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #E5B685;
    transform: translateY(-2px);
}

/* Blog Section */
.blog {
    padding: 100px 20px;
    background: #0F0F0F;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.blog-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    margin-bottom: 25px;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.blog-content {
    padding: 0;
}

.blog-date {
    background: transparent;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 60px;
border: 1px solid #FFF;
}

.blog-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.blog-excerpt {
    color: #cccccc;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: #0F0F0F;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr ;
    gap: 60px;
    align-items: center;
}

.contact-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #D4A574;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.contact-content p {
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 16px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    background: transparent;
    padding: 10px 20px;
    border-radius: 25px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    width: fit-content;
 
}

.contact-item:hover {
    background: rgba(212, 165, 116, 0.1);
    border-color: #D4A574;
}

.contact-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image {
    width: 100%;
    /* max-width: 400px;
    height: 500px; */
    object-fit: cover;
  
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.contact-pattern {
    width: 100%;
    height: 500px;
    background: linear-gradient(45deg, transparent 48%, #444 49%, #444 51%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, #444 49%, #444 51%, transparent 52%);
    background-size: 40px 40px;
    position: relative;
    opacity: 0.6;
}

.contact-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(212, 165, 116, 0.05) 70%);
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 30px;
    margin: 20px;
    border-radius: 30px;
    border: 1px solid #333;

    border-radius: 28px;
border: 1px solid #FFF;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: #D4A574;
    margin-bottom: 20px;
    gap: 10px;
}



.footer-links {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
   
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.footer-links a:hover {
    color: #D4A574;
}

.footer-contact {
    color: #D4A574;
    font-size: 14px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #D4A574;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #E5B685;
    transform: translateY(-2px);
}

.footer-bottom {

  

    color: #888;
    font-size: 14px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #2a2a2a;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    z-index: 10000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid #444;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.cookie-icon {
    width: 50px;
    height: 50px;
    background: #D4A574;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.cookie-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    color: #ffffff;
}

.cookie-text {
    color: #cccccc;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-accept {
    background: #D4A574;
    color: #1a1a1a;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background: #E5B685;
}

.cookie-settings {
    background: transparent;
    color: #D4A574;
    padding: 12px 24px;
    border: 1px solid #D4A574;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-settings:hover {
    background: rgba(212, 165, 116, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header {
        width: calc(100% - 20px);
        margin: 10px auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-block {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-block-right {
        flex-direction: column;
    }
    
    .hero-main-image {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }
    
    .hero-content-section {
        width: 100%;
    }
    
    .hero-text-block {
        text-align: center;
    }
    
    .hero-block-right .hero-text-block {
        text-align: center;
    }
    
    .hero-small-image {
        max-width: 300px;
        height: 200px;
        align-self: center;
    }
    
    .hero-block-right .hero-small-image {
        align-self: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-pattern {
        height: 300px;
        order: 1;
    }
    
    .about-fragrance-container {
        height: 400px;
        order: 2;
    }
    
    .about-text {
        order: 3;
        text-align: left;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .contact-pattern {
        display: none;
    }
    
    .contact-visual {
        order: 2;
    }
    
    .contact-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 12px 20px;
    }
    
    .nav-links {
        gap: 20px;
    }

    .hero {
        padding: 30px 20px 30px;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 50px;
    }
    
    .hero-text {
        padding: 20px;
    }
    
    .hero-middle-image {
        width: 200px;
        height: 150px;
    }

    .section-title {
        font-size: 2rem;
    }

    .fragrances-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .fragrance-image-container {
        height: 300px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .blog-image-container {
        height: 250px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-contact{
      text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }

    .cookie-popup {
        bottom: 10px;
        width: 95%;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .header {
        width: calc(100% - 10px);
        margin: 5px auto;
    }
    
    .nav-container {
        padding: 10px 15px;
    }

    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-middle-image {
        width: 180px;
        height: 130px;
    }

    .contact-content h2 {
        font-size: 1.8rem;
    }
    
    .contact-image {
        height: 300px;
    }
    
    .footer {
        margin: 10px;
        padding: 40px 20px 20px;
    }
    
    .fragrances-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .fragrance-image-container {
        height: 280px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-image-container {
        height: 220px;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hide scrollbar but keep functionality */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #D4A574;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E5B685;
}

.product {
    padding: 100px 20px;
    background: #0F0F0F;
}

.product-container {
    max-width: 1400px;
    margin: 0 auto;
}

.product-title {
    color: #F1B574;
    text-align: center;
    font-family: Helvetica;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: flex-end;
}

.product-description {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

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

.product-price {
    border-radius: 60px;
    border: 1px solid #F1B574;
    color: #F1B574;
    text-align: center;
    font-family: Helvetica;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 15px 20px;
    width: fit-content;
    background: transparent;
    margin-top: 20px;
}

.product-features h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    color: rgba(255, 255, 255, 0.70);
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    padding-left: 15px;
    
    
}

.product-features li::before {
    content: "•";
    color: #D4A574;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.buy-button {
    border-radius: 60px;
    background: #F1B574;
    color: #0F0F0F;
    text-align: center;
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 16px 40px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    width: fit-content;
    max-width: 143px;
}

.buy-button:hover {
    background: #E5B685;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
}

/* Адаптивность для мобильной версии как на скриншоте */
@media (max-width: 1024px) {
    .product-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
        align-items: stretch;
    }
    
    .product-title {
        font-size: 40px;
        margin-bottom: 40px;
    }
    
    /* Порядок элементов: заголовок → изображение → описание → цена → характеристики → кнопка */
    .product-image-container {
        order: 1;
        margin-bottom: 20px;
    }
    
    .product-description {
        order: 2;
        height: auto;
        margin-bottom: 0;
    }
    
    .product-description p {
        margin-bottom: 20px;
    }
    
    .product-price {
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .product-info {
        order: 3;
        gap: 30px;
        margin-top: 30px;
    }
    
    .product-image {
        max-width: 100%;
        width: 100%;
        height: 400px;
    }
    
    .buy-button {
        width: 100%;
        text-align: center;
        padding: 20px 40px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .product {
        padding: 60px 20px;
    }
    
    .product-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .product-image {
        height: 350px;
    }
    
    .product-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .product-price {
        font-size: 24px;
        padding: 12px 20px;
        text-align: center;
    }
    
    .product-features h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .product-features li {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .buy-button {
        padding: 18px 30px;
        font-size: 15px;
    }
}