@font-face {
    font-family: "MyCustomFont";
    src: url("../fonts/myfont.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    
}

/* body {
    font-family: "MyCustomFont";
} */

 
  /*newly added */
 
        /* ========================================================================= */
/* General Section Styles */
/* ========================================================================= */
.limited-edition {
  background-color: transparent; /* Light beige background */
  padding: 50px 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}

.limited-edition-box {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Playfair Display', serif; /* Use a more decorative font for the title if available */
  font-size: 2.5rem;
  font-weight: normal;
  color: #0b3d2c; /* Dark green color */
  margin-bottom: 5px;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

/* ========================================================================= */
/* Desktop Layout (Default) */
/* ========================================================================= */


.edition-grid {
  display: flex;
  gap: 15px;
  border-radius: 15px;
  overflow: hidden;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  /* background-color: #f8f6f1; */
  height: 743px; /* New: Set a fixed height for the entire grid */
  width: 100%;

}

.edition-main {
  position: relative;
  flex: 2;
  border-radius: 15px;
  overflow: hidden;
}

.edition-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 15px; /* Reduced padding inside the overlay */
  color: #fff;
}

.overlay h3 {
  font-size: 1.5rem; /* Smaller "Own the Extraordinary" text */
  font-weight: 600;
  margin: 0;
}

.overlay p {
  font-size: 0.8rem; /* Smaller body text */
  line-height: 1.4;
  margin: 8px 0 15px; /* Reduced vertical margins */
  max-width: 80%;
}

.overlay button {
  padding: 8px 20px; /* Smaller button */
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.overlay button:hover {
  background-color: #fff;
  color: #333;
}

.edition-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 15px;
  overflow: hidden;
}

.edition-side img {
  width: 100%;
  height: 50%;
  object-fit: cover;
  border-radius: 15px;
}


/* ========================================================================= */
/* Mobile Layout */
/* ========================================================================= */
@media (max-width: 768px) {
  .edition-grid {
    flex-direction: column; /* Stack the image sections vertically */
    height: 500px;
  }

  /* Adjustments for the main image on mobile */
  .edition-main {
    flex: none;
    width: 100%;
    /* Dark overlay for mobile version without the text and button */
    /*background-color: #0b3d2c;*/
    min-height: 300px; /* Set a minimum height for the dark box */
  }
  
  .edition-main img {
    /* Hide the image on mobile if it's replaced by the color block */
    display: block; 
  }

  .edition-main .overlay {
    display: none; /* Hide the text and button overlay */
  }

  /* Adjustments for the side images on mobile */
  .edition-side {
    flex: none;
    width: 100%;
    flex-direction: row; /* Display side images in a row on mobile */
    gap: 15px;
  }

  .edition-side img {
    width: 50%;
    height: auto;
    border-radius: 10px;
  }
}


.vedaro-hero {
    max-width: 1200px;
    margin: 20px auto;
    text-align: center;
}

/* Top text */
.vedaro-overlay {
    margin-bottom: 30px;
}

.vedaro-logo {
    font-size: 38px;
    font-weight: 600;
    color: #0f2a1d;
    margin-bottom: 10px;
}

.vedaro-heading {
    font-size: 22px;
    font-weight: normal;
    line-height: 1.5;
    color: #0f2a1d;
}

/* Image box */
.vedaro-img-container {
    position: relative;
    background: #d9bfa6;
    border-radius: 16px;
    overflow: hidden;
    margin: 30px 20px;
}

.vedaro-bg {
    width: 100%;
    max-height: 402px;
    display: block;
    object-fit: cover;
}

/* Shop button on image */
.vedaro-btn {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: #3a2c2c;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.vedaro-btn:hover {
    background: #241a1a;
}

/* Responsive */
@media (max-width: 768px) {
    .vedaro-logo {
        font-size: 22px;
    }

    .vedaro-heading {
        font-size: 14px;
        padding: 0 10px;
    }

    .vedaro-btn {
        font-size: 14px;
        padding: 10px 20px;
        bottom: 15px;
    }

    .vedaro-bg {
        height: 200px;
    }
}

/* #0f2a1d -dark ...... #f2ecdd - light */

.carousel-container {
    perspective: 1500px;
}

.carousel {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.video-slide {
    backface-visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.6s ease, box-shadow 0.6s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 4px solid #0f2a1d;
    border-radius: 30px;
    overflow: hidden;
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Center Slide */
.video-slide.active {
    transform: translateZ(0) scale(1.1);
    opacity: 1;
    z-index: 10;
}

/* Immediate Neighbors */
.video-slide.prev,
.video-slide.next {
    transform: translateX(-80%) translateZ(-150px) rotateY(-25deg) scale(0.9);
    opacity: 0.8;
    z-index: 5;
}

.video-slide.next {
    transform: translateX(80%) translateZ(-150px) rotateY(25deg) scale(0.9);
}

/* Outer Neighbors */
.video-slide.prev-outer,
.video-slide.next-outer {
    transform: translateX(-150%) translateZ(-300px) rotateY(-35deg) scale(0.8);
    opacity: 0.5;
    z-index: 1;
}

.video-slide.next-outer {
    transform: translateX(150%) translateZ(-300px) rotateY(35deg) scale(0.8);
}

/* Hidden slides far away */
.video-slide.hide-prev {
    transform: translateX(-200%) translateZ(-400px) rotateY(-40deg) scale(0.7);
    opacity: 0;
    z-index: 0;
}

.video-slide.hide-next {
    transform: translateX(200%) translateZ(-400px) rotateY(40deg) scale(0.7);
    opacity: 0;
    z-index: 0;
}

.nav-arrow {
    background-color: #1A3A32;
    color: #F8F5EC;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.v-logo {
    background-color: #FFD700;
    color: #1A3A32;
    width: 32px;
    height: 32px;
    top: -12px;
    left: -12px;
}

/* @font-face {
    font-family: "MyCustomFont";
    	src: url("/assets/fonts/myfont.ttf") format("truetype"); 

    font-weight: normal;
    font-style: normal;
    font-display: swap;

} */

.features-section {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    text-align: center;
    padding: 60px 20px;
    gap: 10px;
    width: 1200px;
}

.feature-box {
    flex: 1;
    max-width: 300px;
}

.feature-icon {
    font-size: 40px;
    color: #0f2d1c;
    /* dark green */
    margin-bottom: 15px;
}

.feature-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-text {
        font-size: 10px;
    }
.feature-title{
    font-size: 15px;
}

    .feature-icon {
        font-size: 25px;
    }
}

/* @font-face {
    font-family: "MyCustomFont";
    src: url("../fonts/myfont.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;

} */

.about-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

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

.about-text p.highlight {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    border: 2px solid #2e8af6;
    /* blue border */
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image img {
        margin-top: 20px;
    }
}

/* @font-face {
    font-family: "MyCustomFont";
	src: url("/assets/fonts/myfont.ttf") format("truetype"); 
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */

.category-section {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.category-header h2 {
    font-size: 2rem;
    color: #2f4f2f;
    margin-bottom: 10px;
    font-weight: 600;
}

.category-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(254px, 1fr));
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

.category-card {
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 235px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    transition: transform 0.3s ease;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.category-card h3 {
    font-size: 1.1rem;
    color: #2f4f2f;
    z-index: 1;
    margin: 0;
    text-align: center;
    font-weight: 500;
}

.category-card:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-header h2 {
        font-size: 1.5rem;
    }

    .category-header p {
        font-size: 1rem;
    }

    .category-card {
        height: 150px;
    }

    .category-card h3 {
        font-size: 1rem;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .category-section {
        padding: 20px 10px;
    }

    .category-header h2 {
        font-size: 1.2rem;
    }

    .category-header p {
        font-size: 0.9rem;
    }

    .category-card {
        height: 120px;
    }

    .category-card h3 {
        font-size: 0.9rem;
    }
}
/* @font-face {
    font-family: "MyCustomFont";
    src: url("../fonts/myfont.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* 
body {
    font-family: "MyCustomFont", sans-serif;
    background-color: #f8f8f8;
    padding: 20px;
} */

/* ===== Universal Section Styles (Suggestions + Divinity) ===== */
.suggestions-section,
.divinity-section {
    max-width: 1450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.header-title-suggestion {
    font-size: 28px;
    margin-bottom: 80px;
    color: #0e2a1d;
    text-align: center;
}

.row-container {
    position: relative;
    width: 100%;
    /*margin: 40px 0;*/
    overflow: hidden;
    max-width: 1300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-wrapper {
    overflow: hidden;
    width: calc(100% - 80px);
    /* leaves room for arrows */
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 80px;
}

.product-card {
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
    width: 160px;
    flex-shrink: 0;
    text-align: left;
    font-size: 14px;
}

.product-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.product-card p {
    margin: 8px;
    line-height: 1.4;
}

.product-card .price {
    font-weight: bold;
    color: #0e2a1d;
}

.arrow {
    font-size: 32px;
    color: #0e2a1d;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    z-index: 10;
    transition: all 0.2s ease;
    margin: 0 10px;
}

.arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ---------------- RESPONSIVE FIXES ---------------- */

/* Tablets */
@media (max-width: 992px) {
    .header-title-suggestion {
        font-size: 24px;
        margin-bottom: 50px;
    }

    .slider-track {
        gap: 40px;
        /* reduce spacing */
    }

    .product-card {
        width: 140px;
        font-size: 13px;
    }

    .product-card img {
        height: 140px;
    }
}

/* Mobiles */
@media (max-width: 576px) {
    .header-title-suggestion {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .slider-track {
        gap: 20px;
        /* tighter gap */
    }

    .product-card {
        width: 120px;
        font-size: 12px;
    }

    .product-card img {
        height: 120px;
    }

    .arrow {
        font-size: 24px;
        width: 30px;
        height: 30px;
    }
}

/* @font-face {
    font-family: "MyCustomFont";
    src: url("../fonts/myfont.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;

} */

.carousel-container {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

.carousel-track {
    display: flex;
    align-items: center;
}

.carousel-slide {
    /* Mobile styles first */
    flex: 0 0 85vw;
    /* Each slide takes up 85% of the viewport width */
    margin: 0 2.5vw;
    /* Creates a 5vw gap between slides */
    opacity: 0.5;
    transform: scale(0.9);
    transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    /* 16px */
    box-shadow: 0 10px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    display: block;
    object-fit: cover;
}

/* Styles for the pagination dots */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    margin-top: 50px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #A3B18A;
    /* Inactive color */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    padding: 0;
}

.dot.active {
    background-color: #3A5A40;
    /* Active color */
    transform: scale(1.2);
}


/* Styles for large screens (desktops) */
@media (min-width: 1024px) {
    .carousel-slide {
        flex: 0 0 972px;
        /* Fixed width as requested */
        margin: 0 40px;
        /* 80px gap between slides */
    }

    .carousel-slide img {
        height: 402px;
        /* Fixed height for desktop */
        object-fit: cover;
    }

}

@media (max-width: 1024px) {
    .dot {
        width: 6px;
        height: 6px;
        margin-top: 15px;
    }
}



@font-face {
    font-family: "MyCustomFont";
    src: url("../fonts/myfont.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;

}

.carousel-container {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

.carousel-track {
    display: flex;
    align-items: center;
}

.carousel-slide {
    /* Mobile styles first */
    flex: 0 0 85vw;
    /* Each slide takes up 85% of the viewport width */
    margin: 0 2.5vw;
    /* Creates a 5vw gap between slides */
    opacity: 0.5;
    transform: scale(0.9);
    transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    /* 16px */
    box-shadow: 0 10px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    display: block;
    object-fit: cover;
}

/* Styles for the pagination dots */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    margin-top: 50px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #A3B18A;
    /* Inactive color */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    padding: 0;
}

.dot.active {
    background-color: #3A5A40;
    /* Active color */
    transform: scale(1.2);
}


/* Styles for large screens (desktops) */
@media (min-width: 1024px) {
    .carousel-slide {
        flex: 0 0 972px;
        /* Fixed width as requested */
        margin: 0 40px;
        /* 80px gap between slides */
    }

    .carousel-slide img {
        height: 402px;
        /* Fixed height for desktop */
        object-fit: cover;
    }

}

@media (max-width: 1024px) {
    .dot {
        width: 6px;
        height: 6px;
        margin-top: 15px;
    }
}


@font-face {
    font-family: "MyCustomFont";
    		src: url("/assets/fonts/myfont.ttf") format("truetype"); 


    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.collection-section {
    font-family: "MyCustomFont";
    padding: 50px 20px;
    text-align: center;
}

.collection-header h2 {
    font-family: "MyCustomFont";
    font-size: 2rem;
    font-weight: bold;
    color: #123123;
}

.collection-header p {
    color: #555;
    margin-top: 5px;
    margin-bottom: 30px;
}

.collection-banner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    border-radius: 15px;
    overflow: hidden;
}

.collection-banner img {
    width: 100%;
    height: 326px;
    object-fit: cover;
    border-radius: 15px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.collection-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.3s;
}

.collection-item img:hover {
    transform: scale(1.02);
}


@media (max-width: 992px) {
    .collection-banner img {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .collection-banner img {
        height: 120px;
    }
}