* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Georgia", serif;
}


body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

/* BACKGROUND IMAGE */
.page-bg {
  position: fixed;
  inset: 0;
  background-image: url("img.png");
  background-size: cover;
  background-position: fixed;
  z-index: -1;
}

/* MAIN LAYOUT */
.editorial{
    display:flex;
    min-height:100vh;
}

/* LEFT: INSTAGRAM COLUMN (RIGHT SIDE ON DESKTOP) */
.left-fixed {
  width: 45%;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(2px);
  overflow-y: auto;
  scrollbar-width: none;
}

.left-fixed::-webkit-scrollbar {
  display: none;
}

.image-stack {
  padding: 40px 20px;
}

/* Instagram embed polish */
.instagram-media {
  margin: 0 auto 40px !important;
  max-width: 100% !important;
  width: 100% !important;
  background: transparent !important;
}

/* RIGHT: TEXT COLUMN */
.right-scroll {
  width: 55%;
  height: 100vh;
  overflow-y: auto;
  padding: 80px 10%;
  background: rgba(238, 235, 235, 0.92);
  scrollbar-width: none;
}

.right-scroll::-webkit-scrollbar {
  display: none;
}

/* HERO TEXT */
.hero-text h1 {
  font-size: 64px;
  letter-spacing: 1px;
}

.hero-text p {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.7;
}

/* CONTENT BLOCKS */
.block {
  margin-top: 80px;
}

.block h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.block p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

/* ============================= */
/* MOBILE & TABLET RESPONSIVE */
/* ============================= */

@media (max-width: 1023px) {

  body {
    overflow: auto;
  }

  .editorial {
    flex-direction: column;
    height: 100vh;
  }

  /* TEXT FIRST */
  .right-scroll {
    order: 1;
    width: 100%;
    height: auto;
    padding: 60px 8%;
    overflow: visible;
  }

  /* INSTAGRAM AFTER TEXT */
  .left-fixed {
    order: 2;
    position: relative;
    width: 100%;
    height: auto;
    right: auto;
    top: auto;
    backdrop-filter: none;
    overflow: visible;
  }

  .image-stack {
    padding: 20px;
  }

  /* TYPOGRAPHY SCALE */
  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .block h2 {
    font-size: 26px;
  }

  .block p {
    font-size: 16px;
  }
}

.uk-dropdown {
  margin: 0 auto;

  display: block;
  padding: 10px 20px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: #eee9e9;
  background: #1a1a1a;
  border: 1px solid #cfcfcf;
  border-radius: 30px;
  backdrop-filter: blur(6px);
  cursor: pointer;
  appearance: none;
  text-align: center;
  z-index: 999;
}

/* MOBILE VIEW — bottom, centered, fully clickable */
@media (max-width: 768px) {
  .uk-dropdown {
    position: fixed; /* fixed so it floats above content */
    bottom: 20px; /* distance from bottom */
    left: 50%; /* horizontally center */
    transform: translateX(-50%); /* center perfectly */
    width: 90%;
    max-width: 400px; /* optional: limits large screens */
    border-radius: 30px;
    padding: 12px 20px;
    font-size: 14px;
    z-index: 9999; /* ensures it’s above everything */
  }
}

.image-stack img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}


.watch-buttons {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.watch-btn {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.watch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* Netflix */
.watch-btn.netflix {
  background-color: #e50914;
}

/* Amazon Prime */
.watch-btn.amazon {
  background-color: #00a8e1;
}
.watch-btn.apple {
  background-color: #aa0547;

}
.product-box {
  width: 100%;
  text-align: center;
  font-family: Arial, sans-serif;
}

.product-box img {
  width: 100%;
  border-radius: 12px;
}

.buy-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 22px;
  background: #000;
  color: #f1ebeb;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.buy-btn:hover {
  background: #f5a623; /* Amazon-style accent */
  color: #000;
}
.product-slider{
  width:100%;
  overflow-x:auto;
}

.product-list{
  display:flex;
  list-style:none;
  padding:0;
  margin:0;
  gap:20px;
}

.product-item{
  min-width:200px;
  text-align:center;
}

.product-item img{
  width:100%;
  height:220px;   /* fixed same height */
  object-fit:cover; /* keeps image nicely cropped */
  border-radius:8px;
  aspect-ratio: 1 ;
}

.product-item{
  min-width:200px;
  text-align:center;
    background:#fff;
  border-radius:10px;
  padding:10px;
  
}
.read-more a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid rgb(227, 220, 220);
  text-decoration: none;
  color: rgb(223, 170, 170);
  font-weight: bold;
  transition: 0.3s;
}

/* Hover for desktop */
.read-more a:hover {
  background-color: black;
  color: white;
}

/* 📱 Mobile optimization */
@media (max-width: 768px) {
  .read-more {
    text-align: center;
  }

  .read-more a {
    padding: 14px 24px;        /* bigger tap area */
    font-size: 16px;           /* more readable */
    width: 90%;                /* full-width feel */
    text-align: center;
    border-radius: 6px;        /* smoother look */
    background-color: rgb(220, 212, 212);   /* highlighted by default */
    color: white;
    border: none;
  }
}


/* Clickable word style */
.open-video {
  color: rgb(64, 64, 154);
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}

/* Modal background */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
}

/* Modal content centered */
.modal-content {
  position: relative;
  width: 70%;
  max-width: 800px;
  margin: 8% auto;
  background: #000;
  padding: 10px;
  border-radius: 10px;
}

/* Close button */
.close {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 24px;
  background: white;
  border-radius: 50%;
  padding: 5px 10px;
  cursor: pointer;
}


/* Shop Now button */
.shop-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background-color: #ff6600;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.shop-btn:hover {
  background-color: #e65c00;
}



/* Clickable word */
.open-link {
  color: rgb(98, 93, 231);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

/* Overlay background */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 999;
}

/* Left side modal panel */
.side-modal {
  position: fixed;
  top: 0;
  left: -550px; /* hidden initially */
  width: 550px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.side-modal .body-section {
  flex-grow: 1;
}

.bottom-actions a {
  width: 100%;
  display: inline-block;
  text-align: center;
}

/* Show modal */
.side-modal.active {
  left: 0;
}

/* Image */
.side-modal img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Title */
.modal-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Link button */
.modal-link {
  display: inline-block;
  padding: 10px 14px;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

/* Close button */
.close-btn {
  font-size: 22px;
  cursor: pointer;
  float: right;
  position: absolute;
  right: 20px;
  top: 20px;
}

.product-item {
  position: relative;
  list-style: none;
}

.sponsored-label {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: #ffcc00;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
}
/* =========================
CLASSY IMAGE SLIDER
========================= */

.slider-container{
    position:relative;
    width:100%;
    max-width:600px;
    margin:auto;
}

.slider{
    position:relative;
    overflow:hidden;
    border-radius:24px;
}

.slide{
    width:100%;
    height:1000px;
    object-fit:cover;

    display:none;

    border-radius:24px;

    transition:0.5s ease;
}

.slide.active{
    display:block;
    animation:fade 0.8s ease;
}

@keyframes fade{

    from{
        opacity:0;
        transform:scale(1.03);
    }

    to{
        opacity:1;
        transform:scale(1);
    }

}

.prev,
.next{

    position:absolute;
    top:50%;

    transform:translateY(-50%);

    width:45px;
    height:45px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,0.85);

    backdrop-filter:blur(10px);

    cursor:pointer;

    font-size:20px;

    z-index:10;
}

.prev{
    left:15px;
}

.next{
    right:15px;
}

.dots{
    display:flex;
    justify-content:center;
    gap:10px;

    margin-top:18px;
}

.dot{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#ccc;
}

.active-dot{
    background:#111;
}

/* =========================
CLASSY IMAGE SLIDER
========================= */

.slider-container{
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: auto;
    padding-bottom: 20px;
}

.slider{
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

/* DESKTOP IMAGE */
.slide{
    width: 100%;
    height: 1000px;
    object-fit: cover;

    display: none;

    border-radius: 28px;

    transition: all 0.5s ease;
}

.slide.active{
    display: block;
    animation: fade 0.8s ease;
}

/* FADE EFFECT */

@keyframes fade{

    from{
        opacity: 0;
        transform: scale(1.02);
    }

    to{
        opacity: 1;
        transform: scale(1);
    }
}

/* ARROWS */

.prev,
.next{

    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 52px;
    height: 52px;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,0.82);

    backdrop-filter: blur(10px);

    cursor: pointer;

    font-size: 22px;
    font-weight: bold;

    z-index: 20;

    transition: 0.3s ease;
}

.prev:hover,
.next:hover{
    background: #fff;
    transform: translateY(-50%) scale(1.08);
}

.prev{
    left: 18px;
}

.next{
    right: 18px;
}

/* DOTS */

.dots{
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;

    margin-top: 18px;
}

.dot{

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: rgba(0,0,0,0.2);

    transition: 0.3s ease;
}

.active-dot{
    width: 28px;
    border-radius: 30px;
    background: #111;
}

/* =========================
TABLET VIEW
========================= */

@media (max-width: 800px){

    .slider-container{
        max-width: 100%;
    }

    .slide{
        height: 1200px;
    }
}

/* =========================
MOBILE VIEW
========================= */

@media (max-width: 768px){

    .slider-container{
        width: 100%;
        max-width: 100%;
        padding: 0 14px 25px;
    }

    .slider{
        border-radius: 22px;
    }

    .slide{

        height: 520px;

        border-radius: 22px;

        object-fit: cover;
    }

    .prev,
    .next{

        width: 42px;
        height: 42px;

        font-size: 18px;

        background: rgba(255,255,255,0.9);
    }

    .prev{
        left: 10px;
    }

    .next{
        right: 10px;
    }

    .dots{
        margin-top: 14px;
        gap: 8px;
    }

    .dot{
        width: 8px;
        height: 8px;
    }

    .active-dot{
        width: 22px;
    }
}

/* =========================
SMALL MOBILE VIEW
========================= */

@media (max-width: 480px){

    .slide{
        height: 420px;
    }

    .prev,
    .next{
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .slider{
        border-radius: 18px;
    }

    .slide{
        border-radius: 18px;
    }
}