
.teaser-slider .slider-item {
    height:unset !important;
}
img.imagearea {
    width: 100%;
}
.teaser-slider .slider-item:before {
		display:none;
}
.hide_on_mobile { display: none; }
.hide_on_desktop { display: block; }
@media screen and (max-width: 1024px) {
    .hide_on_mobile { display: block; }
    .hide_on_desktop { display: none; }
}


.home-supplier .supplier-highlight-container .supplier-item:nth-of-type(4n + 2) {
    width: 100%;
}


@media screen and (min-width: 1024px) {
    .home-teaser .teaser-container .teaser-title.contact-home {
        font-size: 35px;
        line-height: 35px;
    }
    .home-teaser .teaser-container .teaser-title {
        text-align: center;
    }
}
@media screen and (max-width: 1023px) {
    .home-teaser .teaser-container .teaser-title.contact-home {
        font-size: 30px;
        line-height: 30px;
    }
}

.slick-dots {
  position: absolute;
  bottom: 20px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

/* Section background and spacing */
.recommendations-section {
    background-color: #fbf7f4;
    padding: 150px 20px 70px 20px;
    text-align: center;
    margin-top: -50px; /* desktop only */
}

/* Remove margin-top for mobile/tablet */
@media (max-width: 1024px) {
    .recommendations-section {
        margin-top: -30px;
    }
}

.recommendations-header {
    max-width: 60vw;
    margin: 0 auto 30px;
}

.recommendations-subtitle {
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.recommendations-title {
    font-family: 'SilkSerif', serif;
    font-size: 46px;
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 15px;
}

.recommendations-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.recommendations-section p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #494949ff;
    line-height: 24px;
}
@media (max-width: 728px) {
    .recommendations-section p {
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.7;
    }
}

/* Desktop grid layout */
.recommendations-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-inline: 8%;
    margin-bottom: 47px;
}

.recommendation-card {
    background-color: #fff;
    border-radius: 7px;
    display: flex;
    width: 19vw;
    height: 19vw;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    overflow: hidden;
}

.recommendation-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

/* Slider styles for mobile/tablet */
.recommendations-slider .recommendation-card {
    background-color: transparent;
    border-radius: 12px;
    padding: 8%;
    aspect-ratio: 1 / 1;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recommendations-slider .recommendation-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Pagination spacing */
.swiper-pagination {
    margin-top: 20px;
}

/* Button styles */
.recommendations-btn-wrapper {
    text-align: center;
}

.recommendations-btn {
    background-color: #ac998b;
    color: #fdfcf8;
    padding: 22px 40px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
}

.recommendations-btn:hover {
    background-color: #9c8a7d;
}

/* ==== Desktop vs Mobile/Tablet Control ==== */

/* Desktop: hide slider, show grid */
@media (min-width: 1025px) {
    .recommendations-slider {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    .recommendations-grid {
        display: grid !important;
    }
}

/* Mobile/Tablet: show slider, hide grid */
@media (max-width: 1024px) {
    .recommendations-slider {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .recommendations-grid {
        display: none !important;
    }

    .swiper-slide {
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .swiper-slide-active .recommendation-card {
        transform: scale(1.05);
        border-radius: 12px;
    }

    .recommendation-card {
        background-color: #fff;
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        aspect-ratio: 1 / 1;
        box-sizing: border-box;
        overflow: hidden;
        padding: 8%;
    }

    .recommendation-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 5px;
    }
}

/* Mobile: 1 main slide centered */
@media (max-width: 600px) {
    .recommendation-card {
        width: 70vw;
        height: 70vw;
        background-color: none;
    }
}

/* Tablet: 2 slides visible with peeking */
@media (min-width: 601px) and (max-width: 1024px) {
    .recommendation-card {
        width: 42vw;
        height: 42vw;
        background-color: none;
    }
}

/* Custom line bullets */
.custom-line {
    display: inline-block;
    width: 22px;
    height: 3px;
    background-color: #d1c0b2;
    border-radius: 2px;
    margin: 0 4px;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.custom-line-active {
    background-color: #ac998b;
    width: 36px;
}


/** Second Component */
.nitsch-handmade {
  display: flex;
  max-height: 760px; /* Reduced height */
  background-color: #d4b9a5;
}

.nitsch-handmade-image {
  flex: 7;
}

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

.nitsch-handmade-content {
  flex: 2;
  padding: 74px 4%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: center; /* horizontal center */
  text-align: center;
  color: #fff;
}

.white-title-main {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
}

.white-title-main-titlec {
  font-family: 'SilkSerif', serif;
  font-size: 51px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 40px 0;
  color: #fff;
}

.description {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  margin-top: 0px;
  color: white;
  margin-bottom: 50px;
  line-height: 24px;
  max-width: 400px;
}

.cta-btn {
  color: #b49b86ff;
  background-color: #fff;
  padding: 22px 24px;
  border-radius: 16px; /* rectangle with slightly rounded corners */
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
  font-family: 'Poppins', sans-serif;
  display: inline-block;
}

.cta-btn:hover {
  background-color: #fbf7f4;
  color: #ac998b;
}

/* Tablet & Mobile */
@media (max-width: 1024px) {
  .nitsch-handmade {
    flex-direction: column;
    min-height: auto;
  }

  .nitsch-handmade-content {
    padding: 40px 8%;
  }
  .nitsch-handmade {
    max-height: 1000px;
  }
  .white-title-main-titlec {
    margin: 0px 0px 40px 0px;
  }
  .description {
    margin: 0px 0px 40px 0px;
  }

  .nitsch-handmade-image {
    width: 100%;
  }

  .nitsch-handmade-image img {
    height: 450px;
  }
}


/* third component */
/* ====== Section Wrapper ====== */
.section-gap-maker {
  margin-bottom: 70px;
}
.jewelry-brands {
    padding: 76px 20px 0px 0px;
    font-family: 'Poppins', sans-serif;
}

.jewelry-brands .container {
    max-width: 1200px;
    margin: 0 auto;
}
.paragraph-main {
    text-align: center;
    padding: 0vw 4vw;
    font-size: 16px;
    margin: 0px;
    line-height: 24px;
    color: #5e5e5e;
}
.paragraph-mains {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #494949ff;
    line-height: 24px;
    padding: 0px 4.4vw;
    
}
/* Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Brand Layout */
.brand-block {
    display: flex;
    align-items: center;
    padding: 0vw 0vw;
    margin-bottom: 75px;
    position: relative;
}

.brand-block.reverse {
    flex-direction: row-reverse;
}

/* Image */
.brand-image {
    flex: 1;
}

.brand-image img {
    width: 100%;
    height: 475px;
    object-fit: cover;
    display: block;
}

/* Text Overlay */
.brand-text {
    flex: 1;
    background: #f9f7f5;
    padding: 40px 40px;
    max-width: 558px;
    position: relative;
    z-index: 2;
    margin-left: -95px; /* overlap into image */
}

.brand-block.reverse .brand-text {
    margin-left: 0;
    margin-right: -80px;
}

/* Text styles */
.brand-text h3 {
     font-size: 16px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 15px;
    letter-spacing: 0.6px;
}

.brand-text p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}

.discover-link {
    text-decoration: none;
    font-size: 0.85rem;
    padding-bottom: 2px;
    color: #5e5e5e;
    transition: 0.3s;
}

.discover-link:hover {
    color: #a67c52;
   
}

/* All Brands Button */
.all-brands {
    text-align: center;
    margin-top: 40px;
}

.brands-btn {
    background-color: #ac998b; /* new color */
    color: #fdfcf8; /* new text color */
    padding: 18px 48px;
    border-radius: 16px; /* rectangle with slightly rounded corners */
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
}
.brands-btn:hover {
    background: #a18471;
}

/* Responsive */
@media (max-width: 992px) {
    .brand-block {
        flex-direction: column;
    }
    .brand-block.reverse {
        flex-direction: column;
    }
    .brand-text {
        margin: 0px;
        max-width: 100%;
        padding: 10%;
        min-width: 100%;
        box-sizing: border-box;
    }
    .brand-block.reverse .brand-text {
        margin: 0px;
    }
    .jewelry-brands{
      padding: 30px 5%; 
    }
}


.rolex-clock-iframe-section {
    max-width: 1200px;
    margin: 40px auto; 
}


/** Image Section */
.custom-bg {
     /* Replace with your image link */
  background-size: cover; /* Makes image cover the whole div */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents tiling */
  height: 600px; /* Adjust height */
  width: 100%; /* Full width */
}



/** News Section **/
.latest-news {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.latest-news .section-title h4 {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: bold;
  color: #393735;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
}

.latest-news .section-title h2 {
  font-family: 'SilkSerif', serif;
  font-size: 46px;
  font-weight: 400;
  margin-top: 5px;
  color: #2f2f2f;
  margin-bottom: 15px;
}

/* Base layout for all screen sizes handled by JS */
.news-grid {
  display: flex; /* Use flexbox for all layouts to be controlled by JS */
  flex-wrap: nowrap;
  gap: 20px;
  padding-bottom: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

/* Cards retain consistent flex properties */
.news-card {
  flex: 0 0 100%; /* Default to 1 per slide */
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  text-align: left;
}

.news-image {
  width: 100%;
  padding-top: 100%; /* square ratio */
  background-size: cover;
  background-position: center;
  margin-bottom: 15px;
}

.news-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 10px;
}

.news-content p {
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  line-height: 24px;
  color: #5e5e5e;
  margin-bottom: 15px;
}

.read-more {
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #5e5e5e;
}

.news-card:hover {
  opacity: 0.95;
}

.news-grid::-webkit-scrollbar {
  display: none;
}

/* Pagination container */
.carousel-pagination {
  height: 4px;
  background-color: #ddd;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 10px;
}

/* Actual progress bar */
.carousel-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  background-color: #5e5e5e;
  transition: transform 0.3s ease;
}

/* Desktop layout override, controlled by CSS */
@media (min-width: 1025px) {
  .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    overflow-x: hidden;
    scroll-snap-type: none;
  }

  .news-card {
    flex: initial; /* Reset flex properties */
    scroll-snap-align: none;
  }
  
  .carousel-pagination {
    display: none; /* Hide pagination on desktop */
  }
}

/* Tablet layout */
@media (max-width: 1024px) {
    .news-card {
        flex: 0 0 calc(50% - 10px); /* Two cards per slide with gap */
    }
}

/* Mobile layout */
@media (max-width: 600px) {
    .news-card {
        flex: 0 0 100%; /* One card per slide */
    }
}

/** Instagram Carousel */
.instagram-section {
  padding: 60px 0px;
  text-align: center;
}
.instagram-gallery__actions {
    display: none !important;
}

.instagram-section .instagram-title h5 {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.instagram-section .instagram-title h2 {
    font-family: 'SilkSerif', serif;
    font-size: 46px;
    font-weight: 400;
    margin-top: 5px;
    color: #2f2f2f;
    margin-bottom: 15px;
}

.instagram-carousel {
  margin-bottom: 70px;
}

.instagram-handle {
  margin: 40px 0px 40px 0px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
}
a.no-style {
  text-decoration: none;   /* removes underline */
  color: inherit;      
}


.discover-link {
  display: inline-flex;
  align-items: center;
  gap: 10px; /* space between line and text */
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 18px;
}

.discover-link .line {
  display: inline-block;
  width: 30px; /* adjust line length */
  height: 2px;
  background-color: #5e5e5e; /* black line */
}





@media (max-width: 728px) {
    .recommendations-title {
        font-family: 'SilkSerif', serif;
        font-size: 38px;
        font-weight: 400;
        margin-top: 5px;
        color: #2f2f2f;
        margin-bottom: 15px;
        text-align: center;
        line-height: 1.2;
    }
    .recommendations-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
        font-weight: bold;
        color: #393735;
        margin-bottom: 5px;
        font-family: 'Poppins', sans-serif;
    }
    .recommendations-header {
        max-width: 86vw;
        margin: 0 auto 30px;
    }
    .white-title-main {
        font-size: 14px;
        letter-spacing: 2px;
        font-weight: bold;
        color: #fff;
        margin-bottom: 5px;
        font-family: 'Poppins', sans-serif;
    }
    .recommendations-text {
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        font-size: 17px;
        color: #494949ff;
        line-height: 1.7;
    }
    .recommendations-btn {
        background-color: #ac998b;
        color: #fdfcf8;
        font-size: 14px;
        padding: 16px 21px;
        border-radius: 16px;
        text-decoration: none;
        font-weight: 600;
        letter-spacing: 1px;
        transition: background-color 0.3s ease;
        font-family: 'Poppins', sans-serif;
        display: inline-block;
    }
    .description {
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        font-size: 16px !important;
        margin-top: 0px;
        color: white;
        margin-bottom: 0px;
        line-height: 1.7 !important;
        max-width: 400px;
    }
    .cta-btn {
        color: #b49b86ff;
        background-color: #fff;
        padding: 16px 21px;
        border-radius: 16px;
        text-decoration: none;
        font-weight: 700;
        letter-spacing: 1px;
        transition: background-color 0.3s ease;
        font-family: 'Poppins', sans-serif;
        display: inline-block;
        font-size: 14px;
    }
    .paragraph-main {
        text-align: center;
        padding: 0vw 4vw;
        font-size: 16px;
        margin: 0px;
        line-height: 1.7;
        color: #5e5e5e;
    }
    .brand-text p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
        color: #5e5e5e;
    }
    .brands-btns {
        background-color: #ac998b;
        color: #fdfcf8;
        padding: 16px 44px;
        border-radius: 16px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 1px;
        transition: background-color 0.3s ease;
        font-family: 'Poppins', sans-serif;
        display: inline-block;
    }
    .custom-bg {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 347px;
        width: 100%;
    }
    .paragraph-main {
        text-align: center;
        padding: 0vw 4vw;
        font-size: 16px;
        margin: 0px;
        line-height: 1.7;
    }
    .latest-news .section-title h4 {
        font-size: 14px;
        letter-spacing: 2px;
        font-weight: bold;
        color: #393735;
        margin-bottom: 5px;
        font-family: 'Poppins', sans-serif;
    }
    .latest-news .section-title h2 {
        font-family: 'SilkSerif', serif;
        font-size: 41px;
        font-weight: 400;
        margin-top: 5px;
        color: #2f2f2f;
        margin-bottom: 15px;
    }
    .instagram-section .instagram-title h2 {
        font-family: 'SilkSerif', serif;
        font-size: 42px;
        font-weight: 400;
        margin-top: 5px;
        color: #2f2f2f;
        margin-bottom: 15px;
    }
    .brands-btn {
        background-color: #ac998b;
        color: #fdfcf8;
        padding: 16px 35px;
        border-radius: 16px;
        font-size: 14px;
        text-decoration: none;
        font-weight: 600;
        letter-spacing: 1px;
        transition: background-color 0.3s ease;
        font-family: 'Poppins', sans-serif;
        display: inline-block;
    }
    .recommendations-section {
        background-color: #fbf7f4;
        padding: 58px 20px 70px 20px;
        text-align: center;
        margin-top: -50px;
    }
}















