@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Antonio:wght@400;700&family=Bebas+Neue&family=Oswald:wght@400;700&display=swap');

/* --- General Settings --- */
        :root {
            --bg-color: #cfbdae; /* The beige background color */
            --text-color: #ffffff;
            --btn-bg: #f5f0e6;   /* Light cream for buttons */
            --btn-text: #bcaaa0; /* Darker tone for button text */
            --nav-pill: rgba(255, 255, 255, 0.25);
        }

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

        html, body {
  height: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 20px 40px 0; 
  overflow-x: hidden;
}

        /* --- Header / Navigation --- */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            margin-bottom: 40px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        nav {
            display: flex;
            gap: 15px;
        }

        nav a {
            display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 34px;
  border-radius: 999px;
  background-color:  #AB9A80;
  color: var(--text-color);                  
  font-size: 1.02rem;
  font-weight: 600;
  text-decoration: none;
}
        
        nav a:hover {
            background-color: rgba(255, 255, 255, 0.4);
        }

        .cart-icon img {
            width: 24px;
            height: auto;
            cursor: pointer;
        }

        /* --- Main Content --- */
        main {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        h1 {
            font-family: 'Antonio', sans-serif; 
            font-size: 6rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 40px;
            text-align: center;
            color: #fdfcf5; 
            opacity: 0.9;
        }

        /* --- Gallery Grid (4 images side by side) --- */
.gallery-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%); 
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
}

.gallery {
    display: flex;
    gap: 20px;
    width: fit-content;
    will-change: transform;
}

.gallery-container .gallery-item { /* Specifik til karrusel */
    flex: 0 0 280px; /* Reduceret fra 350px */
    min-width: 280px;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 15px;
}

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

/* --- Text and CTA --- */
        .description {
            font-size: 2rem;
            font-weight: 600;
            text-align: center;
            max-width: 700px;
            line-height: 1.8;
            margin-bottom: 25px;
            color: #fff;
        }

        .cta-btn {
            background-color: #3D3529;
            color: #ffffff;
            padding: 14px 40px;
            border: none;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .cta-btn:hover {
            transform: scale(1.05);
        }

        /* --- Responsivitet (Mobil) --- */
        @media (max-width: 768px) {
            h1 { font-size: 3.5rem; }
            .gallery { grid-template-columns: repeat(2, 1fr); }
            header { flex-direction: column; gap: 20px; }
            nav { flex-wrap: wrap; justify-content: center; }
        }
  
/* --- Layout Container --- */
.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}


.content-left {
    flex: 1 1 0%;
    color: #ffffff;
}

.sub-heading {
    font-family: 'Antonio', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #D88373;
}

.headline-sub {
    font-family: 'Antonio', sans-serif;
    font-size: 2rem;;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.main-heading {
    font-family: 'Antonio', sans-serif;
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #fdfcf5;
}

.description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: #f5f0e6;
    color: #a08f7f;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s;
    margin-top: 20px;
}

.cta-button:hover {
    transform: scale(1.05);
}


.content-right {
    flex: 0 0 420px;       
    display: flex;
    justify-content: flex-end; 
    align-items: flex-start;
}

.images-gallery {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end; 
}


.image-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 50px 0; 
    background-color: #D0BBA6;
    text-align: right;
    margin-top: 0;
}

.image-wrapper img {
    width: 200px;
    height: auto;
    display: inline-block;
    margin: 0 10px;
}

body {
    background: #d8c2a7;
    font-family: Arial, sans-serif;
}

.reviews {
    display: flex;
    gap: 20px;
    padding: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 20px 25px;
    width: 300px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.stars {
    color: #00b67a;
    font-size: 22px;
    margin-bottom: 10px;
}

.card h3 {
    margin: 0 0 10px;
    font-size: 14px;
    color: black;
}

.card p {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 12px;
    color: #666;
}

.review-text {
    color: #6d6159;
    font-size: 0.9rem;
    margin-top: 5px;
    padding: 0 15px;
    white-space: normal;
    text-align: center;
}

.large-image-section {
    width: 100%;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center; 
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    color: white;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero-image {
    width: 100%;
    max-width: 1200px; 
    height: auto;
    border-radius: 0;
    display: block;
    margin: 0 auto; 
}

/* --- Product Cards Section --- */
.products-section {
    padding: 80px 20px;
    background-color: #D0BBA6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.product-image-wrapper {
    background-color: #e8e9ec;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image-wrapper img {
    width: 100%;
    max-width: 220px;
    height: auto;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.product-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.buy-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
    background-color: #E8DDD0;
    color: #333;
}

.buy-button:hover {
    opacity: 0.8;
}

.buy-button.lavender {
    background-color: #C3DDE8;
}

.buy-button.green {
    background-color: #A9C5A0;
}

.buy-button.rose {
    background-color: #F4C2C2;
}


@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .large-card {
        grid-column: span 1;
    }
}

/* --- Productinformation Section --- */
.product-info-section {
    padding: 80px 20px;
    background-color: #D0BBA6;
}

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

.info-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 60px; 
}

.info-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 30px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}

.info-content {
    color: #ffffff;
}

.info-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: #3D3529;
    margin-bottom: 30px;
    letter-spacing: 3px;
    line-height: 1;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #3D3529;
}

.info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3D3529;
    font-size: 1.5rem;
    line-height: 1.2;
}

@media (max-width: 900px) {
    .product-info-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-title {
        font-size: 2.5rem;
    }
}

/* --- New Section - Split Layout --- */
.split-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: -80px auto 80px;
  padding: 0 60px;
}

.split-text {
  flex: 1;
  color: #3D3529;
}

.split-text h1 {
  font-family: 'Antonio', sans-serif;
  font-size: 2rem; 
  color: #3D3529;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.split-text p {
  font-size: 1rem;
  line-height: 1.8; 
  max-width: 520px;
  opacity: 0.9;
  margin-bottom: 34px;
}

.split-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

@media (max-width: 900px) {
  .split-section {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
    margin: 40px auto;
  }
  .split-text p {
    margin: 0 auto 24px;
  }
}


/* --- Container for content --- */
        .content-wrapper {
            max-width: 1200px; /* Ensures images do not become too wide on large screens */
            width: 100%;
            text-align: center;
        }

        /* --- Heading Styling --- */
        h2.section-title {
            font-size: 3rem; /* Large text */
            text-transform: uppercase;
            font-weight: bold;
            color: #A69685; 
            margin-bottom: 30px;
            margin-top: 0;
            letter-spacing: 2px;
            font-family: 'Oswald', sans-serif; 
        }


        /* Mobile adjustment */
        @media (max-width: 768px) {
            h2.section-title {
                font-size: 2rem; /* Smaller text on mobile */
            }
        }

       .gallery-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.gallery-section h1 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 40px;
    color: #3D3529;; 
}

/* Grid styling */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/* Images */
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Instagram box */
.instagram-box {
    background: #77685D;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.instagram-box:hover {
    background: #eda897;
}

.insta-link {
    text-decoration: none;
    font-size: 18px;
    color: white;
    letter-spacing: 1px;
    font-weight: bold;
}

/* SUBSCRIBE SECTION */

.subscribe {
    margin-bottom: 0;
    padding-bottom: 0;
}

.subscribe-section {
    text-align: center;
    padding: 80px 20px;
}

.subscribe-section h1 {
    font-size: 70px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #3D3529;
    margin-bottom: 20px;
}

.subscribe-section .subtext {
    font-size: 16px;
    margin-bottom: 35px;
}

.input-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.input-wrapper input {
    width: 280px;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #d9dce2;
    font-size: 14px;
}

.input-wrapper button {
    background: #f4b8ab;
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-size: 15px;
    cursor: pointer;
}

/* FOOTER STYLING */
footer {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 50px 120px 50px 70px;
  background-color: #bfb2a0;
  color: #333333;
  overflow: hidden;
  margin: 0 auto;
}

/* Footer content */
.footer-content {
    display: flex;
    gap: 120px;
    margin-bottom: 10px;
}

.footer-content h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.footer-content ul {
    list-style: none;
    padding: 0;
}

.footer-content li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Payment methods */
.payment-icons {
  position: absolute;
  left: 70px;            
  bottom: 1px;          
  display: flex;
  gap: 15px;
  margin: 0;
  z-index: 10;
  align-items: center;
  transform: none;       
}

.payment-icons img {
  height: 30px;
}

.payment-icons img[src*="mp.png"]  { height: 40px; }
.payment-icons img[src*="applepay.png"] { height: 30px; }

/* Mobile adjustment — move closer to the edge */
@media (max-width: 480px) {
  .payment-icons { left: 16px; bottom: 12px; gap: 10px; }
  .payment-icons img { height: 26px; }
}


/* Copyright */
footer .copyright {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;       
  margin: 0;
  font-size: 14px;
  opacity: 0.7;
  text-align: center;
  z-index: 5;
}

/* Social icons */
.socials {
    position: absolute;
    right: 50px;
    bottom: 10px;
    display: flex;
    gap: 20px;
}

.socials img {
    height: 35px;
}


.headline-left {
  display: block;
  text-align: left;     
  margin: 0 0 20px 0;   
  transform: none;      
}

.content-left .headline-left {
  max-width: 100%;
  margin-left: 0;
}

.split-text .headline-left,
.headline-left {
  color: rgb(250, 105, 129); 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #D0BBA6;
    color: #f4efea;
}

.about-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
}


.back-btn {
background-color: #f5f0e6;
            color: #a08f7f;
            padding: 14px 40px;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: transform 0.3s;
}


.title {
    font-size: 72px;
    letter-spacing: 4px;
    margin-bottom: 40px;
    color: #3D3529;
}

.content {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
    align-items: flex-start;
}

.image-left {
    width: 30%;
    border-radius: 25px;
    object-fit: cover;
}

.text-block {
    width: 50%;
    font-size: 18px;
    line-height: 1.6;
color: #3D3529;
}

.text-block h3 {
    margin-top: 20px;
    font-size: 22px;
    color: #3D3529;
}

.product-section {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.image-right {
    width: 45%;
    border-radius: 25px;
    object-fit: cover;
}

/* Toast / pop-up if purchase */
.cart-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%) translateY(12px);
  background: rgba(112, 111, 109, 0.95);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(172, 153, 132, 0.25);
  opacity: 0;
  transition: opacity 260ms ease, transform 260ms ease;
  z-index: 9999;
  font-weight: 600;
  pointer-events: none;
}

/* When toast is visible */
.cart-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Smaller devices: move toast slightly up */
@media (max-width: 480px) {
  .cart-toast { bottom: 18px; padding: 10px 14px; font-size: 14px; }
}

/* Ensure main content fills available height */
main {
  flex: 1 0 auto;
}


