/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.2;
    font-size: 14px;
    color: rgba(33, 33, 33, 1);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: content-box;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #E8B4CB;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    z-index: 1000;
    display: block;
}

.cookie-banner.hidden {
    display: none;
}


.cookie-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cookie-banner h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.cookie-banner p {
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #333;
}

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

.btn-accept {
    background: #333;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-reject {
    background: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Header */
.header {
    background: white;
    
    margin: 20px;
    position: relative;
    z-index: 100;
}

.header .container {
  border: 2px solid #333;
  border-radius: 50px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-decoration: unset;
}

.logo img {
    width: 30px;
    height: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #E8B4CB;
}

/* Hero Section */
.hero {
    padding: 20px 0 40px;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.hero h1 {
    font-size: 136px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.1;
}

.hero-block {
  max-width: 285px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-image {
    margin-top: -80px;
    z-index: 2;
    position: relative;
}

.hero-image img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.hero p {
    font-size: 14px;
    line-height: 1.2;
    text-align: justify;
}

.btn-primary {
  display: inline-flex;
  justify-content: center;
  text-align: center;
    background: #E8B4CB;
    color: #333;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #d99bb8;
    transform: translateY(-2px);
}

section p {
  color: rgba(33, 33, 33, 0.8);
}

/* About Section */
.about {
    padding: 40px 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  width: 100%;
  padding: 20px;
  border: 1px solid rgba(33, 33, 33, 1);
  border-radius: 80px;
  font-weight: 900;
  font-size: 62px;
  text-transform: uppercase;
  margin-bottom: 30px;
}


.about-content {
    display: grid;
    grid-template-columns: 285px 1fr 285px;
    gap: 70px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    height: auto;
}

.about-col {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.about-text h3 {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 900;
    margin-top: auto;
}

/* Stats Section */
.stats {
    padding: 40px 0;
}

.stat-content {
  display: grid;
  grid-template-columns: 1fr 324px;
  gap: 20px;
  align-items: center;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    background: rgba(33, 33, 33, 1);
    color: white;
    padding: 20px;
    border-radius: 26px;
    max-width: 285px;
    width: 100%;
}

.stat-item h3 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 10px;
    color: rgba(228, 166, 189, 1);
}

.stat-item p {
    font-weight: 900;
    font-size: 24px;
    color: #fff;
    letter-spacing: 0%;

}

.stat-image {
  max-width: 246px;
}

.stat-image {
    background: transparent;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(33, 33, 33, 1);
}

.stat-image img {
    width: 100%;
    height: 100%;
    object-position: left bottom;
    object-fit: contain;
      max-height: 180px;
}

.stat-content img {
  width: 100%;
  height: auto;
  object-fit: contain;
      max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    height: auto;

}

/* Products Section */
.products {
    padding: 40px 0;
}

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

.product-card {
    background: white;
    border-radius: 36px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    
    text-align: left;
    border: 1px solid rgba(33, 33, 33, 1);
}

.product-grid {
display: grid;
    grid-template-columns: 1fr 275px;
    gap: 20px;
    align-items: flex-end;
    margin-bottom: 20px;
}

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

.product-card h3 {
    font-size: 30px;
    font-weight: 700;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #E8B4CB;
}

.product-image {
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-description {
    margin-bottom: 30px;
}

.btn-secondary {
  display: flex;
  justify-content: center;
  align-items: center;
    background: #E8B4CB;
    color: #333;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-secondary:hover {
    background: #d99bb8;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 30px;
    align-items: center;
}

.contact-content .section-title {
  border: none;
  padding: 0;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.contact h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact p {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    text-align: center;
}

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

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(33, 33, 33, 1);
    border-radius: 80px;
    padding: 20px 30px;
    font-weight: 900;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
}
/* Footer */
.footer {
    margin: 40px 20px 20px;
}

.footer .container {
  border: 1px solid rgba(33, 33, 33, 1);
  padding: 15px 30px;
  border-radius: 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.footer-logo img {
    width: 30px;
    height: 30px;
}

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

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

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

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

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.05);
}

.footer-info {
    text-align: left;
}

.footer-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}



.footer-copyright p {
    font-size: 14px;
    color: #999;
}

/* Catalog Page Styles */
.catalog-header {
    padding: 60px 0;
    text-align: center;
    background: #f8f8f8;
    border-radius: 50px;
    margin: 40px 20px;
}

.catalog-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
}

.catalog-products {
    padding: 80px 0;
}

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

.catalog-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 30px;
    padding: 40px;
    transition: all 0.3s ease;
}

.catalog-card:hover {
    border-color: #E8B4CB;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.catalog-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.catalog-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #E8B4CB;
    margin-bottom: 20px;
}

.catalog-image {
    margin: 20px 0;
    text-align: right;
}

.catalog-image img {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.catalog-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.btn-catalog {
    background: #E8B4CB;
    color: #333;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-catalog:hover {
    background: #d99bb8;
    transform: translateY(-2px);
}

/* Product Detail Page Styles */
.product-detail {
    padding: 30px 0 80px;
}

.product-detail .container {
  border: 1px solid rgba(33, 33, 33, 1);
    padding: 20px;
    border-radius: 36px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: flex-end;
    
}

.product-info h1 {
    font-size: 62px;
    font-weight: 700;
}

.product-price {
    font-size: 34px;
    font-weight: 700;
    color: #E8B4CB;
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 20px;
}

.product-description p {
    font-size: 14px;
    line-height: 1.2;
    color: rgba(33, 33, 33, 0.8);
}

.specifications {
    margin-bottom: 40px;
}

.specifications h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.spec-list {
    list-style: none;
    padding: 0;
}

.spec-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 8px;
}

.spec-list strong {
    color: #333;
}

.product-actions {
    margin-top: 40px;
}

.btn-buy-now {
    background: #E8B4CB;
    color: #333;
    padding: 20px 60px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-buy-now:hover {
    background: #d99bb8;
    transform: translateY(-2px);
}


.product-image-large img {
    width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 100px;
    }

    .product-detail .container {
      margin-left: 20px;
      margin-right: 20px;
    }


    .section-title {
      font-size: 36px;
    }

    .stat-content {
      grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-image {
      max-width: 150px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
      flex-direction: column;
    }

    .cookie-buttons {
        flex-direction: column;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Catalog responsive */
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .catalog-header h1 {
        font-size: 36px;
    }
    
    /* Product detail responsive */
    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-info h1 {
        font-size: 36px;
    }
    
    .product-image-large {
        position: static;
        order: -1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .product-grid {
      grid-template-columns: 1fr;
    }

    .stat-item {
      max-width: 100%;
    }
    
    .header {
        margin: 10px;
    }
    
    .nav {
        padding: 10px 20px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .hero {
        padding: 40px 0;
    }

    .hero-image {
      margin-top: -60px;
    }

    .hero-block {
      max-width: 100%;
    }
    
    .hero h1 {
        font-size: 66px;
    }

    .hero-content {
      flex-direction: column;
    }
    
    .about, .stats, .products {
        margin: 20px 10px;
        padding: 40px 0;
    }
    
    .product-card {
        padding: 20px;
    }
    
    .footer {
        margin: 20px 10px 10px;
        padding: 20px;
    }
    
    /* Catalog mobile */
    .catalog-header {
        margin: 20px 10px;
        padding: 40px 0;
    }
    
    .catalog-header h1 {
        font-size: 28px;
    }
    
    .catalog-card {
        padding: 20px;
    }
    
    /* Product detail mobile */
    .product-info h1 {
        font-size: 28px;
    }
    
    .product-price {
        font-size: 24px;
    }
    
    .btn-buy-now {
        padding: 15px 40px;
        font-size: 16px;
    }
}

.policy h1 {
  font-weight: 900;
  font-size: 62px;
  line-height: 100%;
  margin-bottom: 20px;
}

.policy {
  padding-top: 40px;
  padding-bottom: 40px;
}

.policy-content a {
  text-decoration: unset;
  color: inherit;
}

@media (max-width:768px){
    .policy h1 {
      font-size: 36px;
    }
}