@import url('https://fonts.googleapis.com/css2?family=Kalnia:wght@400;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;600;800;900&family=Red+Hat+Display:wght@300;400;500;600;700&display=swap');

body {
  padding-top: 70px;
  font-family: 'Red Hat Display', sans-serif;
  background: linear-gradient(to right, #950606, #B24C1E, #DAAF37);
  background-attachment: fixed;
  color: #EADFCF;
  margin: 0;
  overflow-x: hidden;
}

.film-page {
  background: #000;
  color: #f5f5f5;
}
/* NAVBAR */

.navbar {
  background-color: #0C0C0C !important;
  padding: 12px 30px;
}

.navbar .nav-link {
  color: #EADFCF !important;
}

.navbar .nav-link:hover {
  color: #DAAF37 !important;
}

.brand-logo img {
  height: 36px;
}

/* HERO */

.hero-wrapper {
  padding: 40px 60px 0 60px;
}

.hero-slide {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
}

.hero-content {
  position: absolute;
  bottom: 100px;
  left: 60px;
  max-width: 600px;
}

.hero-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: #DAAF37;
}

.hero-sub {
  color: #EADFCF;
}

/* RAIL GRID */

.coming-soon-section {
  padding: 70px 0px;
}

.rail-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 35px;
  color: #DAAF37;
}

/* ================= PRODUCTIONS GRID ================= */

.project-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

.productions-page h1,
.productions-page .all-productions-title {
padding-left: 40px;
}

.project-rail {
  padding-bottom: 10px;
}

.project-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #EADFCF;
  transition: transform 0.3s ease;
  
}
.coming-soon-section .untitled-card .project-info {
z-index: 2;
}
.untitled-bg {
position: relative;
z-index: 1;
border-radius: 14px;
}
.project-card {
  transition: box-shadow 0.3s ease;
}

.thumb-img {
  transition: transform 0.3s ease;
}

.project-card:hover .thumb-img {
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.5),
    0 0 35px rgba(218, 175, 55, 0.6);
}

.project-info {
  position: relative;
  z-index: 2;
}

.thumb-img {
  position: relative;
  z-index: 1;
}

.thumb-img {
width: 100%;
height: 320px;
object-fit: cover;
display: block;
border-radius: 10px;
}

.all-productions-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}
.all-productions-wrapper {
  margin-top: 30px;
}
/* UNTITLED PROJECT CARDS */

.untitled-bg {
  background: #000000;
  height: 320px;
}

/* ================= ABOUT ================= */

.about-section {
  padding: 60px 40px 40px;
  max-width: 1600px;
  margin: 0 auto;
  text-align: left;
}

.about-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 2.7rem;
  color: #DAAF37;
}

.about-divider {
  width: 80px;
  height: 3px;
  background-color: #DAAF37;
  margin: 20px 0 40px 0;
}

.about-manifesto {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-body {
  margin-bottom: 18px;
  line-height: 1.6;
  font-size: 1.05rem;
  max-width: 100%;
}

.about-closer {
  margin-top: 25px;
  font-size: 1.2rem;
  font-weight: 600;
}

/* SERVICES */

.services-section {
  padding: 20px 60px 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1500px;
  margin: 40px auto;
}

.service-card {
  background: #0C0C0C;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.service-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  color: #DAAF37;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 0.9rem;
}

.productions-page .coming-soon-section {
  padding: 0px 0 20px 0;
}

.coming-wrapper {
  position: relative;
  width: 100%;
}

.horizontal-scroll {
  display: flex;
  align-items: flex-start;
  gap: 60px;

  overflow-x: auto;
  overflow-y: visible;

  padding-left: 43px;
  padding-right: 80px;
}
@media (max-width: 768px) {

  .scroll-card {
    flex: 0 0 280px;
  }

  .horizontal-scroll {
    gap: 25px;
    padding-left: 20px;
  }

}
.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.horizontal-scroll {
  scrollbar-width: none;
}

/* Vertical Coming Soon */
.vertical-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);

  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 10px;
  color: #DAAF37;
  flex: 0 0 auto;
}

.scroll-card {
  flex: 0 0 420px;
  text-decoration: none;
  color: inherit;
}

.scroll-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* =====================
   BLEUSKM CONTACT FORM 
===================== */
.contact-wrapper {
  padding: 20px;
}
.bleuskm-form {
    font-family: 'Red Hat Display', sans-serif;
    max-width: 800px;
    width: 100%;
    margin: 40px auto;
    background: rgba(10, 10, 10, 0.92);
    border: 1px solid rgba(212, 161, 68, 0.35);
    border-radius: 14px;
    padding: 30px 28px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
    color: #f2f2f2;
}

.bleuskm-form h2 {
    margin: 0 0 8px;
    font-family: 'Kalnia', sans-serif;
    letter-spacing: 1px;
    color: #DAAF37;
    text-transform: uppercase;
    font-size: 1.3rem;
}

.bleuskm-form .subtext {
    margin: 0 0 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
}

.bleuskm-form label {
    display: block;
    margin-top: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
}

.bleuskm-form input,
.bleuskm-form select,
.bleuskm-form textarea {
    width: 100%;
    margin-top: 5px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    font-size: 0.9rem;
    box-sizing: border-box;
}

/* Chrome autofill fix */
.bleuskm-form input:-webkit-autofill,
.bleuskm-form input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff;
    transition: background-color 5000s ease-in-out 0s;
}

/* placeholders */
.bleuskm-form input::placeholder,
.bleuskm-form textarea::placeholder {
    color: rgba(255,255,255,0.45);
}

/* dropdown option colors */
.bleuskm-form select option {
    color: #000000;
    background-color: #ffffff;
}

/* focus */
.bleuskm-form input:focus,
.bleuskm-form select:focus,
.bleuskm-form textarea:focus {
    outline: none;
    border-color: rgba(218, 175, 55, 0.9);
    box-shadow: 0 0 0 3px rgba(218, 175, 55, 0.22);
}

/* valid state */
.bleuskm-form input:valid,
.bleuskm-form textarea:valid,
.bleuskm-form select:valid {
    border-color: rgba(218, 175, 55, 0.55);
}

.bleuskm-form .checks {
    margin-top: 16px;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);

    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bleuskm-form .checks {
  align-items: flex-start;
}

.bleuskm-form .check {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 12px;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #DAAF37;
    cursor: pointer;
}

.bleuskm-form .check input[type="checkbox"] {
    margin: 0;
}

.bleuskm-form .helper-text {
    display: block;
    margin-top: 6px;
    font-size: 0.75rem;
    color: #DAAF37;
}

.bleuskm-form button {
    width: 100%;
    margin-top: 18px;
    padding: 12px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: #DAAF37;
    color: #0b0b0b;
}

.bleuskm-form button:hover {
    background-color: #b9892e;
}

.bleuskm-form .fineprint {
    margin-top: 16px;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
}

/* responsive so it doesn't feel cramped on phones */
@media (max-width: 600px) {
    .bleuskm-form {
        margin: 20px 12px;
        padding: 22px 18px;
    }
}
/* =========================
   PRODUCTIONS PAGE ONLY
========================= */

.project-rail .project-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255,255,255,0.25);
  text-transform: uppercase;
}

.project-rail .project-category {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #EADFCF;
}

.project-rail .project-name {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  color: #DAAF37;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

 .project-rail .project-year {
  font-size: 0.8rem;
  color: #EADFCF;
}

/* ===== UNTITLED CARD CENTERED TEXT ===== */

.coming-soon-section .untitled-card .project-info {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
border-bottom: none;
margin-top: 0;
}

.project-rail .untitled-card {
position: relative;
}

.project-rail .untitled-card .project-info {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
border-bottom: none;
margin: 0;
z-index: 2;
}

.project-rail .untitled-card .untitled-bg {
border-radius: 20px;
}

.coming-soon-section .untitled-card .project-name {
  color: #DAAF37;
  text-align: center;
}

/* ===== FULL WIDTH COMING SOON ===== */

.productions-page .coming-soon-section {
  padding: 0px 0 20px 0;
}

/* Image source styling */
.image-credit {
  font-size: 0.7rem;
  color: #DAAF37;
  padding: 12px 20px 0 20px;
}

.image-credit a {
  color: #DAAF37;
  text-decoration: underline;
  font-weight: 600;
}

.image-credit a:hover {
  opacity: 0.8;
}
/* FORCE ALL LINKS INSIDE COMING WRAPPER TO BE GOLD */

.coming-wrapper a,
.coming-wrapper a:visited {
  color: #DAAF37 !important;
  text-decoration: none;
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
}

.coming-wrapper a:hover {
  color: #DAAF37 !important;
}

.home-page .coming-soon-section > h2,
.home-page .coming-soon-section > p {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

.productions-page .coming-wrapper {
  width: 100%;
  background: transparent;
  padding: 55px 0;
}
.scroll-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.scroll-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  color: #DAAF37;
}

.scroll-format {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  font-weight: 600;

 color: #EADFCF;
 opacity: 0.6;
  
  text-align: right;
  margin-left: auto; /* forces it to the far right */
}
/* ABOUT PAGE SERVICES TITLE */

.services-section .rail-title {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

.services-section .rail-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #DAAF37;
  margin: 12px auto 0 auto;
}
/* HERO CAROUSEL ARROWS GOLD */

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;   /* remove default white svg */
  width: 2.5rem;
  height: 2.5rem;
}

.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #DAAF37;
}

/* Left arrow shape */
.carousel-control-prev-icon::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M11 1 3 8l8 7' stroke='black' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}

/* Right arrow shape */
.carousel-control-next-icon::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M5 1l8 7-8 7' stroke='black' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}
/* =========================
   GLOBAL MOBILE FIXES
========================= */

@media (max-width: 992px) {

  .project-rail {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }

}

@media (max-width: 768px) {

  .project-rail {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    left: 25px;
    bottom: 60px;
    max-width: 85%;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-wrapper {
    padding: 20px 20px 0 20px;
  }

  .about-section,
  .services-section,
  .all-productions-wrapper {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media (max-width: 768px) {
.scroll-btn {
  position: absolute;
  bottom: 6px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 20;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}
}
/* ======================
   HORIZONTAL SCROLL ARROWS
====================== */

.coming-wrapper {
  position: relative;
}
/* ======================
   MINIMAL RED ARROWS
====================== */

.scroll-btn {
  position: absolute;
  bottom: 6px;            
  background: none;       
  border: none;       
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 20;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}

.scroll-btn:hover {
  transform: scale(1.15);
  opacity: 1;
}

/* left side near vertical title */
.scroll-left {
  left: 60px;
  color: #DAAF37;   /* yellow */
}

/* right side near edge */
.scroll-right {
  right: 40px;
  color: #950606;   /* red */
}

/* Pushes footer to bottom */
.site-footer {
  margin-top: 40px;
  padding: 20px 40px;
  font-size: 0.9rem;
  color: #DAAF37;
  text-align: left;
}
/* =========================
   ECHOS PAGE CLEAN STYLE
========================= */

.echos-container {
  max-width: 1400px;
  width: 88%;
  margin: 40px auto 80px;
}

.echo-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 28px 0;
}

.echo-header {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

/* SMALL LABEL  */
.echo-category {
  font-size: 11px;
  letter-spacing: 2px;
  color: #ffffff;  
  margin-bottom: 6px;
  display: block;
  opacity: 0.7;
}

/* TITLE */
.echo-header h3 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 25px;   
  color: #DAAF37;   
  margin-bottom: 6px;
}

/* DATE TEXT */
.echo-date {
  font-size: 13px;
  color: #EADFCF;
  opacity: 0.6;
}

.echo-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  margin-top: 10px;
}

.echo-content p {
  margin: 15px 0;
  font-size: 15px;
  max-width: 800px;
}

.echo-button {
  display: inline-block;
  padding: 8px 16px;
  background: #950606;
  color: white;
  text-decoration: none;
  font-size: 13px;
  border-radius: 4px;
}

/* FILTER MENU */

.echos-filter {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 40px auto 10px;
  max-width: 1400px;
  width: 88%;
}

.filter-btn {
  background: none;
  border: none;
  color: #EADFCF;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  font-size: 15px;
  position: relative;
}

.filter-btn.active,
.filter-btn:hover {
  color: #DAAF37;
}

.filter-btn.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #DAAF37;
}
/* Remove hover effect ONLY for untitled cards */

.project-card.untitled-card:hover .thumb-img {
  transform: none;
  box-shadow: none;
}
html, body {
  height: 100%;
}

body {
  min-height: 100vh;
}

/* PRODUCT PAGE */

/* ================= PRODUCT PAGE ================= */

.product-layout {
  max-width: 1600px;
  margin: 140px auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 120px;
  align-items: start;
}

.product-left img {
  width: 100%;
  max-height: 650px;
  object-fit: contain;
}

.product-right h1 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.price {
  font-size: 1.6rem;
  color: #DAAF37;
  margin-bottom: 30px;
}

.product-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.product-details h1 {
  font-family: 'League Spartan', sans-serif;
  color: #DAAF37;
}


.add-to-cart-btn {
  background: #DAAF37;
  border: none;
  padding: 14px 28px;
  font-weight: 800;
  cursor: pointer;
  border-radius: 6px;
}

/* CART PAGE */

.cart-wrapper {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 40px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.cart-summary {
  margin-top: 30px;
  text-align: right;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group input {
  padding: 12px;
  border: none;
  border-radius: 4px;
  background: #1c1c1c;
  color: white;
}

.form-row {
  display: flex;
  gap: 20px;
}

.checkout-btn {
  margin-top: 20px;
  padding: 14px;
  background: gold;
  border: none;
  font-weight: bold;
  cursor: pointer;
}
.floating-cart {
  position: fixed;
  top: 85px;
  right: 60px;
  background: #DAAF37;
  color: #000;
  padding: 10px 18px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 6px;
  z-index: 1000;
  transition: transform 0.2s ease;
}

.floating-cart:hover {
  transform: scale(1.05);
}
.product-description {
  margin: 20px 0 35px;
  line-height: 1.7;
  max-width: 500px;
  font-size: 1.05rem;
}
.cart-toast {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: #DAAF37;
  color: #000;
  padding: 12px 18px;
  font-weight: 700;
  border-radius: 6px;
  z-index: 2000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}
/* ================= VISUALS COMING SOON ================= */

.visuals-coming {
  position: relative;
  min-height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.visuals-overlay-logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
  pointer-events: none;
}

.visuals-overlay-logo img {
  width: 70vw;
  max-width: 900px;
}

.visuals-coming-content {
  position: relative;
  z-index: 2;
}

.visuals-coming-content h1 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: #DAAF37;
  letter-spacing: 2px;
}

.coming-label {
  margin-top: 20px;
  font-size: 0.9rem;
  letter-spacing: 4px;
  color: #EADFCF;
  opacity: 0.7;
}

.coming-sub {
  margin-top: 18px;
  font-size: 0.95rem;
  color: #EADFCF;
  opacity: 0.6;
}

.visuals-page {
  background-color: #000;
}

.visuals-page .site-footer {
  background-color: #000;
}
/* =========================
   ARTICLE PAGES
========================= */

.article-wrapper {
  max-width: 820px;
  margin: 140px auto 100px;
  padding: 0 20px;
}

.article-content {
  background: none;
  padding: 0;
}

.article-category {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #DAAF37;
  font-weight: 600;
}

.article-content h1 {
  font-family: 'Kalnia', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #ffffff;
  margin: 18px 0 25px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.article-date {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}
.article-date::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #DAAF37;
  margin-top: 25px;
}
.article-body {
  font-size: 17px;
  line-height: 1.9;
  color: #EADFCF;
}
.article-body p:first-of-type {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 500;
}

.article-body p {
  margin-bottom: 22px;
  max-width: 100%;
}
.article-body p strong {
  font-weight: 700;
  color: #ffffff;
}

.film-page h1 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 4.5rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.film-meta {
  opacity: 0.7;
  margin-bottom: 40px;
}

.film-block {
  margin-bottom: 60px;
}

.film-logline {
  font-size: 1.2rem;
  line-height: 1.7;
}

.film-block h3 {
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.film-block ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.film-block ul li {
  margin-bottom: 0;
  opacity: 0.8;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.film-page .back-link {
  display: inline-block;
  margin-bottom: 50px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #DAAF37 !important;
  text-decoration: none;
  position: relative;
  transition: opacity 0.2s ease;
}

.back-link:hover {
  opacity: 0.7;
}

.film-page .back-link:hover {
  opacity: 0.7;
}

.film-page {
  max-width: 1100px;
  margin: 40px auto 100px auto;
  padding: 0 40px;
}

.film-hero-img img {
  width: 100%;
  height: 85vh;
  object-fit: cover;
  margin-bottom: 80px;
}

.film-meta {
  opacity: 0.7;
  margin-bottom: 40px;
}
.back-link {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #DAAF37;
  text-decoration: none;
}

.back-link:hover {
  opacity: 0.7;
}
.image-gallery {
  position: relative;
  width: 100%;
}

.gallery-image {
  display: block;
  width: 100%;
  max-height: 850px;
  object-fit: contain;
}

.gallery-dots {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  padding-left: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #999;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
}

.dot.active {
  opacity: 1;
  background: #DAAF37;
}
.product-left {
  background: none;
  display: block;
  padding: 0;
}

.image-gallery {
  border-radius: 16px;
  overflow: visible;
}

.product-hero {
  max-width: 85%;
  height: auto;
  object-fit: contain;
}
#product-component-1773634032721,
#product-component-1773634855622,
#product-component-1773634810608,
#product-component-1773712116724 {
  margin-top: 20px;
  display: block;
}
.product-layout {
  max-width: 1600px;
  margin: 140px auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 120px;
  align-items: start;
}

.product-left {
  grid-column: 1;
}

.product-right {
  grid-column: 2;
  width: 100%;
}
.product-left,
.product-right {
  min-width: 0;
}
.shopify-buy__option-select {
  background: rgba(0,0,0,0.6) !important;
  border: 1px solid #DAAF37 !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 10px !important;
}

.shopify-buy__option-select:focus {
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(218,175,55,0.4) !important;
}
.gallery-dots {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}