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

/* CSS Variables */
:root {
    --primary-color: #000;
    --text-color: #333;
    --text-light: #666;
    --white: #fff;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --gray-dark: #555;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 50px;
    --max-width: 1200px;
}

/* Typography */
body {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #F4F6F6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Wittgenstein", serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    z-index: 100;

}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--white);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.hero-images {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: var(--transition);
}

.image-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.image-1 {
    width: 300px;
    height: 400px;
}

.image-2 {
    width: 350px;
    height: 450px;
}

.image-3 {
    width: 300px;
    height: 400px;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-cta {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
}

/* New Arrivals Section */
.new-arrivals {
    padding: 80px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 3rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    background-color: #F6FDFF;
    padding: 12px;
}
.product-card:nth-child(1) {
    border-top-left-radius: 30%;
}
.product-card:nth-child(1) .product-image {
    border-top-left-radius: 30%;
}
.product-card:nth-child(2) {
    border-top-right-radius: 30%;
}
.product-card:nth-child(2) .product-image {
    border-top-right-radius: 30%;
}
.product-card:nth-child(3) {
    border-bottom-left-radius: 30%;
}
.product-card:nth-child(3) .product-image {
    border-bottom-left-radius: 30%;
}
.product-card:nth-child(4) {
    border-bottom-right-radius: 30%;
}
.product-card:nth-child(4) .product-image {
    border-bottom-right-radius: 30%;
}

.product-image {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    background: var(--white);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-info {
    text-align: center;
    flex-grow: 1;
}

.product-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.product-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;

    margin-left: auto;
    margin-right: auto;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #F9F9F9;
    position: relative;
}

.about-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 4rem;
}

.about-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.about-image {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    opacity: 0.8;
}

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

.about-image:nth-child(1) {
    top: 60px;
    left: 5%;
    width: 120px;
    height: 180px;
}

.about-image:nth-child(2) {
    top: 20px;
    right: 25%;
    width: 140px;
    height: 190px;
}

.about-image:nth-child(3) {
    top: 150px;
    right: 8%;
    width: 110px;
    height: 160px;
}

.about-image:nth-child(4) {
    top: 180px;
    left: 15%;
    width: 130px;
    height: 170px;
}

.about-image:nth-child(5) {
    top: 120px;
    left: 35%;
    width: 100px;
    height: 140px;
}

.about-image:nth-child(6) {
    top: 260px;
    right: 30%;
    width: 120px;
    height: 160px;
}



.values-section {
    margin-top: 200px;
    position: relative;
    z-index: 2;
}

.values-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.value-card {
    text-align: center;
}

.value-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    padding: 0;
    background: transparent;
    border: none;
    transition: var(--transition);
}

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

.reviewer-name {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-color);
}

/* Footer */
.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}



.social-link:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid #777;
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.85rem;
    color: #ccc;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    font-size: 0.85rem;
    color: var(--white);
    transition: var(--transition);
}

.footer-link:hover {
    color: #ccc;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 2px solid var(--gray-medium);
    border-radius: 15px;
    padding: 2rem;
    max-width: 600px;
    width: calc(100% - 40px);
    box-shadow: var(--shadow-hover);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    min-width: 150px;
}

.btn-cookie.accept {
    background: var(--primary-color);
    color: var(--white);
}

.btn-cookie.accept:hover {
    background: #333;
}

.btn-cookie.refuse {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-cookie.refuse:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-images {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .image-1, .image-2, .image-3 {
        width: 280px;
        height: 350px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .product-image {
        height: 350px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .values-title {
        font-size: 2rem;
    }
    
    .about-image {
        display: none;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-direction: column;
    }
    
    .cookie-popup {
        bottom: 20px;
        padding: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn-cookie {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .image-1, .image-2, .image-3 {
        width: 100%;
        max-width: 280px;
        height: 300px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cookie-popup {
        padding: 1.2rem;
        width: calc(100% - 20px);
    }
    
    .cookie-title {
        font-size: 1.3rem;
    }
}











.product_page {
    background-color: #f8f8f8;
    padding: 40px 0;

}
@media (max-width: 768px) {
    .product_page {
        margin-top: 60px;
    } 
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;


    padding: 40px;

}

.product-images {
    position: relative;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.thumbnail {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.thumbnail:hover {
    opacity: 0.8;
}

.product-info {
    padding-top: 20px;
}

.product-title {
    font-size: 2.2rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 15px;
    text-align: left;
}

.product-price {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: left;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.quantity-btn {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.quantity-btn:hover {
    background-color: #f5f5f5;
}

.quantity-input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    background: transparent;
}

.buy-btn {
    background-color: #000;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buy-btn:hover {
    background-color: #333;
}

.product-description {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 25px;
    text-align: left;
}

.product-features {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
    }

    .main-image {
        height: 400px;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .product-price {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .product_page {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .main-image {
        height: 300px;
    }

    .product-title {
        font-size: 1.6rem;
    }

    .quantity-selector {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

.privacy{
    margin-top: 100px;
    padding-bottom: 100px;
}
.privacy h2{
   
    font-weight: 600;

    font-size: 36px;

    line-height: 110.00000000000001%;
    letter-spacing: -2%;
    text-align: center;
    margin-bottom: 40px;

}