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

body {
    font-family: 'Raleway', sans-serif;
    background: rgba(23, 23, 23, 1);
    color: white;
    line-height: 1.6;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(23, 23, 23, 0.95);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.cookie-content {
    max-width: 800px;
    padding: 40px;
    text-align: left;
}

.cookie-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cookie-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-link {
    color: rgba(207, 43, 43, 1);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 15px 30px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.accept-btn {
    background: rgba(207, 43, 43, 1);
    color: white;
}

.accept-btn:hover {
    background: rgba(207, 43, 43, 0.8);
}

.refuse-btn {
    background: rgba(207, 43, 43, 1);
    color: white;
}

.refuse-btn:hover {
    background: rgba(207, 43, 43, 0.8);
}

.cookie-btn::after {
    content: '↗';
    font-size: 1.2rem;
}

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

/* Header */
.header {
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

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

.nav-brand a {
    color: white;
    font-weight: 400;
    font-size: 24px;
    line-height: 90%;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: capitalize;
    text-decoration: unset;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: rgba(207, 43, 43, 1);
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 354px;
    gap: 32px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
  font-weight: 400;
  font-size: 72px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 32px 60px;
    background: rgba(207, 43, 43, 1);
    color: rgba(23, 23, 23, 1);
    text-decoration: none;
    font-weight: 600;
    width: max-content;
    max-width: 100%;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: rgba(207, 43, 43, 0.8);
}

.hero-images {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;

}

.hero-img {
  height: 320px;
  width: 100%;
}

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


/* Why Ultrapiku Section */
.why-ultrapiku {
    padding: 60px 0;
}

.why-ultrapiku .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.section-title {
    font-weight: 400;
    font-size: 56px;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
}

.feature-number {
    font-size: 24px;
    font-weight: 400;
}


.feature-image img {
    max-width: 164px;
    height: auto;
    object-fit: contain;
    
}

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

/* About Section */
.about {
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 178px 0 40px;
  position: relative;
}

.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.about-bg::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}

.about-content {
    display: grid;
    position: relative;
    z-index: 3;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-end;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content h2 {

}

.about-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}


/* Key Features Section */
.key-features {
    padding: 60px 0;
}

.key-features h2 {

    margin-bottom: 32px;
}

.features-grid-detailed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.07);
}

.feature-card h3 {
    font-size: 24px;
  
    margin-bottom: 20px;
    color: white;
}

.feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Sustainability Section */
.sustainability {
    padding: 60px 0;
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.sustainability-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sustainability-text h2 {
  
    margin-bottom: 30px;
}

.sustainability-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.sustainability-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Catalog Section */
.catalog {
    padding: 60px 0;
}

.catalog h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: left;
}

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

.product-card {
    display: flex;
    background: rgba(255, 255, 255, 0.07);
    padding: 24px;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.product-image img {
  height: 315px;
  width: 277px;
  object-fit: cover;
}


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

.product-info h3 {
    font-size: 24px;
    color: white;
}

.product-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.product-price {
    font-size: 1.1rem;
    color: white;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(207, 43, 43, 1);
    transition: background 0.3s ease;
}

.product-btn:hover {
    background: rgba(207, 43, 43, 0.8);
}

.product-btn img {

}

/* Product Detail Section */
.product-detail {
    padding: 60px 0;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

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

.product-details {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.07);
  padding: 30px;
  height: 100%;
  justify-content: space-between;
}

.product-details h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: white;
}

.product-price-large {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 40px;
}

.buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 40px;
    background: rgba(207, 43, 43, 1);
    color: white;
    border: none;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.buy-btn:hover {
    background: rgba(207, 43, 43, 0.8);
}

.buy-btn::after {
    content: '↗';
    font-size: 1.2rem;
}

.product-description {
    max-width: 100%;
}

.product-description p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
}

.product-features h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

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

.product-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.product-features li::before {
    content: '•';
    color: rgba(207, 43, 43, 1);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: rgba(15, 15, 15, 1);
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

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

.social-link {

    transition: all 0.3s ease;
}

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

.social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

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

.footer-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgba(207, 43, 43, 1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .sustainability-content,
    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .product-image {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 20px;
    }

    .hero-content h1 {
      font-size: 48px;
    }

    .why-ultrapiku .container {
      grid-template-columns: 1fr;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .why-ultrapiku h2,
    .about-text h2,
    .sustainability-text h2,
    .key-features h2 {
        font-size: 2rem;
    }
    
    .catalog h1 {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid-detailed {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-info {
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-content {
        padding: 20px;
        margin: 20px;
    }
    
    .cookie-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .footer-bottom {
      flex-direction: column-reverse;
    }

    .footer-links {
      flex-direction: column;
    }
    
    .nav {
        padding: 0 15px;
    }
    
    .hero-content,
    .about-content,
    .sustainability-content {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .product-details h1 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

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

.policy h1 {
  font-weight: 400;
  font-size: 40px;
  line-height: 130%;
  margin-bottom: 40px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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