.terms,
.cookie,
.return,
.disclaimer,
.refund,
.privacy {
  text-align: left;
  padding: 15rem 0;
}
/* Base Styles */
html {
    font-size: 10px;
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #fff;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}


h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.8rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}
.hero-title{
  position: relative;
}

.hero-subtitle, .statement-subtitle {
  font-family: 'Italianno', cursive;
  font-size: 3rem;
  color: rgba(225, 136, 86, 1);
}

/* Layout */
.container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.cookie-content {
    background-color: #fff;
    padding: 3rem;
    max-width: 90%;
    width: 60rem;
}

.cookie-content h2 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.cookie-content p {
    margin-bottom: 2rem;
}

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

.cookie-btn {
    padding: 1.5rem;
    border: none;
    background-color: #e8a87c;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn:hover {
    background-color: #d69268;
}

/* Header */
.site-header {
    background-color: #fff;
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    font-weight: bold;
    color: #000;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: #333;
}

.main-nav a:hover {
    color: #e8a87c;
}

/* Hero Section */
.hero {
  position: relative;
    padding: 0 2rem 4rem 2rem;
    text-align: center;
}

.hero-title {
  line-height: 100%;
  font-size: 8rem;
  text-align: center;
  margin-bottom: 1rem;
}

.hero-image {
    margin: -7rem auto 0;
    max-width: 60rem;
    position: relative;
    z-index: 10;
}

.hero-text {
  text-align: center;
  text-transform: uppercase;
  font-size: 2.8rem;
  line-height: 100%;
  max-width: 40rem;
  margin: 0 auto;
  font-weight: bold;
}

/* Sale Banner */
.sale-banner {
    background-color: #000;
    color: #fff;
    padding: 1.5rem 0;
    overflow: hidden;
}

.sale-content {
    white-space: nowrap;
    animation: scroll-text 20s linear infinite;
}

.sale-content p {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
}

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

/* Customer Types Section */
.customer-types {
    padding: 4rem 2rem;
}

.customer-container {
  align-items: center;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.customer-image {
  max-width: 49rem;
    margin: 0 auto;
}

.customer-segments {
  max-width: 68rem;
    display: flex;
    flex-direction: column;
}
.customer-segments .max {
  max-width: 37rem;
}
.customer-segments p{
  font-size: 1.6rem;
  line-height: 120%;
}

.segment h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

/* Brand Statement */
.brand-statement {
  position: relative;
  padding: 4rem 2rem 0;
  text-align: center;
}
.statement-content{
  min-height: 69rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.statement-subtitle{
  font-size: 6rem;
}

.statement-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.statement-title {
  text-align: left;
    font-size: 8rem;
    font-weight: 400;
    line-height: 100%;
    color: #fff;
}

.statement-title span{
  display: block;
  text-align: right;
}

/* Call to Action */
.cta-section {
    padding: 4rem 2rem;
}

.cta-title {
    font-size: 4.2rem;
    margin-bottom: 3rem;
}

.cta-title span {
    color: #777;
}

.cta-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-left-image, .cta-right-image {
    max-width: 30rem;
    margin: 0 auto;
}

.cta-contact-box {
    background-color: #f0f0f0;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #ddd;
}

.cta-contact-box p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.contact-btn {
    display: inline-block;
    background-color: #e8a87c;
    color: #fff;
    padding: 1.2rem 2.4rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #d69268;
}

/* Catalog Page */
.catalog-section {
    padding: 4rem 2rem;
}

.catalog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.catalog-header h1 {
    font-size: 8rem;
    text-align: left;
    line-height: 1;
    font-weight: 400;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.product-card {
    width: 100%;
    max-width: 58rem;
    margin-bottom: 3rem;
}

.product-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.product-name {
    font-size: 3rem;
    margin: 0;
    flex: 1;
}

.product-price {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    flex: 1;
}

.buy-btn {
    display: block;
    background-color: #e8a87c;
    color: #fff;
    padding: 0.8rem 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    transition: background-color 0.3s;
    text-align: center;
}

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

/* Product Page */
.product-section {
    padding: 2rem;
}

.product-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.product-image-large {
    max-width: 50rem;
    margin: 0 auto;
}

.product-title {
    font-size: 7rem;
    margin-bottom: 2rem;
}
.product-story p, .product-description p{
  font-size: 1.4rem;
}

.product-story h2, .product-description h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.product-purchase {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 5rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: bold;
}

.product-section .product-price{
  font-size: 4rem;
}

.buy-now-btn {
    display: inline-block;
    background-color: #e8a87c;
    color: #fff;
    padding: 1.2rem 3rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

/* Footer */
.site-footer {
    background-color: #222;
    color: #fff;
    padding: 4rem 2rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    display: inline-block;
    width: 4rem;
    height: 4rem;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links svg {
    width: 2rem;
    height: 2rem;
    fill: #fff;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info{
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.footer-links a {
  font-size: 2rem;
    color: #fff;
}

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

.copyright {
    color: #777;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.last-updated {
    font-size: 1rem;
    font-style: italic;
}

/* Media Queries */
@media (min-width: 768px) {
    .cookie-buttons {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .cookie-btn {
        flex: 1;
    }
    
    .customer-container {
        flex-direction: row;
    }
    
    .customer-image {
        flex: 1;
    }
    
    .customer-segments {
        flex: 2;
    }
    
    .cta-images {
        flex-direction: row;
        align-items: center;
    }
    
    .cta-left-image, .cta-right-image {
        flex: 1;
    }
    
    .cta-contact-box {
        flex: 2;
        margin: 0;
    }
    
    .product-container {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .product-image-large {
        flex: 1;
    }
    
    .product-details {
        flex: 1;
    }
    
    .footer-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .social-links, .contact-info {
        flex: 1 0 100%;
    }
    
    .footer-links, .copyright {
        flex: 1;
    }
}

@media (min-width: 992px) {
  .hero-image{
    margin: -15rem auto 0;
  }
  .hero-subtitle{
    font-size: 7rem;
  }
  .hero-title{
    font-size: 25rem;
  }
    .product-card {
        width: calc(33.333% - 2rem);
    }
    
    .social-links, .contact-info {
        flex: 1;
    }

    .product-card{
      width: 48%;
    }
}

@media (min-width: 1200px) {
  .hero-title{
    font-size: 30rem;
  }
   .hero-image{
    margin: -25rem auto 0;
  }
  .statement-title {
    font-size: 12rem;
    color: #fff;
  }
  .cta-title {
       font-size: 8rem;
       position: relative;
       left: -13rem;
        margin-bottom: 3rem;
    }

  .catalog-header h1 {
    font-size: 8.6rem;
  }
}