/* Fonts Logo */
@font-face {
  font-family: "Made Saonara";
  src: url("fonts/MADE SAONARA 2 PERSONAL USE.otf") format("opentype");
}

@font-face {
  font-family: "Move Only";
  src: url("fonts/MoveOnlyRegular.ttf") format("truetype");
}

:root {
  --primary: #c4a484;
  --bg: #7a6652;
  --third: #f7e7ce;
  --dark: #5a4a3a;
  --light: #ffffff;
  --gold: #d4af37;
  --cream: #faf8f5;
  --shadow: rgba(122, 102, 82, 0.15);
  --gradient: linear-gradient(135deg, #f7e7ce 0%, #e8d5b7 100%);

  --font-display: "Carattere", sans-serif;
  --font-primary: "Libre Baskerville", sans-serif;
  --font-secondary: "Cormorant Garamond", sans-serif;
  --font-body: "Lora", sans-serif;
}

@font-face {
  font-family: "Made Saonara";
  src: url("fonts/MADE SAONARA 2 PERSONAL USE.otf") format("opentype");
}

@font-face {
  font-family: "Move Only";
  src: url("fonts/MoveOnlyRegular.ttf") format("truetype");
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--dark);
  padding-top: 120px;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background-color: #ffffff;
  padding: 1rem;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navbar saat scrolling */
.navbar.scrolled {
  padding: 0.5rem 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(152, 106, 59, 0.24);
}

.navbar.scrolled .navbar-top {
  position: static;
  margin-bottom: 0;
}

.navbar.scrolled .logo-main {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  line-height: 1;
}

.navbar.scrolled .logo-c {
  font-size: 40px;
  top: 0;
}

.navbar.scrolled .logo-w {
  font-size: 24px;
  margin-left: 1px;
  position: relative;
  top: 10px;
}

/* subtitle scroll */
.navbar.scrolled .logo-subtitle {
  display: none;
}

.navbar.scrolled .navbar-bottom {
  justify-content: center;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

/* navbar sosmed saat scroll */
.navbar.scrolled .navbar-sosmed {
  display: none;
}

.navbar.scrolled .navbar-nav {
  margin-top: 0;
  gap: 2rem;
}

.navbar.scrolled .navbar-nav a {
  font-size: 1.2rem;
}

.navbar.scrolled .navbar-right {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.navbar.scrolled .navbar-right a {
  font-size: 1.2rem;
}

/* Logo */
.logo-main {
  display: inline-block;
  position: relative;
  text-align: center;
  line-height: 0.8;
}

.logo-c {
  font-family: "Made Saonara 2", serif;
  font-size: 85px;
  color: #7a6652;
  display: inline-block;
  vertical-align: top;
  position: relative;
  top: -5px;
}

.logo-w {
  font-family: "Move Only", serif;
  color: #7a6652;
  font-size: 45px;
  display: inline-block;
  position: relative;
  top: 30px;
  left: 2px;
  transform: translateY(-20%);
}

.logo-subtitle {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  color: #7a6652;
  margin-top: 0;
  letter-spacing: 0.08rem;
  display: block;
}
/* end logo */

.navbar-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  padding: 0 2rem;
  margin-top: 1rem;
}

/* Sosmed kiri */
.navbar-sosmed {
  display: flex;
  gap: 1rem;
}

.navbar-sosmed a {
  color: var(--primary);
  font-size: 1.1rem;
  text-decoration: none;
}

.navbar .navbar-sosmed a:hover {
  color: var(--bg);
}

/* Nav tengah */
.navbar-nav {
  display: flex;
  gap: 3rem;
  margin-top: 1rem;
  position: relative;
}

.navbar-nav .dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  border-radius: 4px;
  padding: 0.5rem 0;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: var(--primary);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.dropdown-content a:hover {
  background-color: var(--third);
  color: var(--bg);
}

.dropdown-content a::after {
  display: none !important;
}

.navbar .navbar-nav a {
  color: var(--primary);
  font-size: 1.1rem;
  text-decoration: none;
  position: relative;
}

.navbar .navbar-nav a:hover {
  color: var(--bg);
}

.navbar .navbar-nav a::after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 2px solid var(--bg);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  margin-top: 0.2rem;
  transform-origin: center;
}

.navbar .navbar-nav a:hover::after {
  transform: scaleX(0.5);
}

/* Ikon kanan */
.navbar-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.navbar .navbar-right a {
  color: var(--primary);
  font-size: 1.1rem;
  text-decoration: none;
}

.navbar .navbar-right a:hover {
  color: var(--bg);
}

/* Tablet */
/* saat default sidebar & menu tidak aktif */
#menu {
  display: none;
}

/* Responsive Dropdown */
@media (max-width: 768px) {
  .dropdown-content {
    position: static;
    background-color: transparent;
    box-shadow: none;
    min-width: 100%;
    transform: none;
    padding-left: 1rem;
  }

  .dropdown-content a {
    padding: 0.5rem 1rem;
  }
}

.mobile-sidebar {
  display: none;
}

/* Tampil di tablet/mobile */
@media (max-width: 768px) {
  #menu {
    display: inline-block;
  }

  .mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.3s ease-in-out;
    z-index: 1001;
  }

  .mobile-sidebar.active {
    right: 0;
  }

  .mobile-sidebar .sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .mobile-sidebar .sidebar-nav a {
    color: var(--primary);
    font-size: 1.4rem;
    text-decoration: none;
  }

  .mobile-sidebar .sidebar-nav a:hover {
    color: var(--bg);
  }

  .mobile-sidebar .sidebar-nav a::after {
    content: "";
    display: block;
    width: 100%;
    border-bottom: 2px solid var(--bg);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    margin-top: 0.2rem;
    transform-origin: left;
  }

  .mobile-sidebar .sidebar-nav a:hover::after {
    transform: scaleX(0.5);
  }

  .mobile-sidebar .sidebar-sosmed a {
    color: var(--primary);
    font-size: 1.2rem;
    text-decoration: none;
  }

  .mobile-sidebar .sidebar-sosmed {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
  }

  .mobile-sidebar .sidebar-sosmed a:hover {
    color: var(--bg);
  }

  .navbar-nav,
  .navbar-sosmed {
    display: none;
  }
}

/*tetap kanan */
@media (min-width: 768px) {
  .navbar-icons-center {
    justify-content: flex-end;
    flex: 1;
  }
}

/* Tablet/Mobile: pindah ke tengah */
@media (max-width: 768px) {
  .navbar-bottom {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    0deg,
    rgba(212, 188, 143, 0.644) 3%,
    rgba(224, 196, 136, 0) 25%
  );
  pointer-events: none;
}

.hero-content {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
}

.signature-looks {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-transform: inherit;
  letter-spacing: 2px;
  color: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.signature-looks:hover {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(255, 245, 227, 0.5);
}

.btn-shop {
  display: inline-block;
  padding: 10px 25px;
  background-color: transparent;
  color: white;
  border: 1px solid white;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-shop:hover {
  color: var(--bg);
  background-color: rgba(244, 215, 165, 0.84);
  font-weight: bold;
  transition: all 0.3s ease;
}

.scroll-down-arrow {
  position: absolute;
  left: 50%;
  bottom: -20%;
  transform: translateX(-50%);
  z-index: 10;
  text-decoration: none;
  cursor: pointer;
}

.scroll-down-arrow .circle {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.scroll-down-arrow:hover .circle {
  transform: scale(1.1);
  background-color: #f5f5f5;
}

.scroll-down-arrow .circle i {
  color: var(--primary);
  font-size: 1.2rem;
}

/* Efek saat hover */
.scroll-down-arrow:hover .circle {
  transform: scale(1.1);
  background-color: var(--primary);
}
.scroll-down-arrow:hover .circle i {
  color: var(--third);
}

/* Bounce animation */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%);
  }
  40% {
    transform: translate(-50%, calc(-50% - 10px));
  }
  60% {
    transform: translate(-50%, calc(-50% - 5px));
  }
}
.scroll-down-arrow {
  animation: bounce 5s infinite;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.custom-context-menu {
  display: none;
  position: fixed;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  min-width: 150px;
}

.custom-context-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-context-menu li {
  padding: 8px 12px;
  cursor: pointer;
  color: var(--bg);
  font-family: var(--font-primary);
  font-size: 14px;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.custom-context-menu li:hover {
  background-color: var(--third);
}

/* newArr section */
.new-arrivals {
  padding: 4rem 7% 1.4rem;
  scroll-margin-top: 120px;
}

.new-arrivals h2 {
  text-align: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
  position: relative;
}

.new-arrivals h2::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--primary);
}

.new-arrivals h2 span {
  color: var(--primary);
}

.product-carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.product-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
}

.product-card {
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  height: 100%;
}

.product-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
  width: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.product-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 3/4;
  width: 100%;
  height: 400px; /* Tambahkan tinggi tetap */
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

product-info {
  padding: 1rem;
  text-align: center;
}

.product-info h3 {
  margin: 0.5rem 0;
  transition: color 0.3s ease;
  text-align: center;
}

.product-card:hover .product-info h3 {
  color: var(--primary);
}

.product-info .price {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
}

.product-card:hover .product-info .price {
  transform: translateY(-5px);
}

.product-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.product-item:hover img {
  transform: scale(1.1);
}

.product-item:hover {
  cursor: pointer;
}

.price {
  font-weight: 500;
  color: var(--bg);
}

/* Media Queries
Desktop/Laptop */
@media (max-width: 1366px) {
  html {
    font-size: 90%;
  }
}

/* Special Eid Section */
.carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  text-align: center;
  color: var(--primary);
  padding-top: 2rem;
}

.carousel h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.carousel h1::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--primary);
}

.eid {
  width: 100%;
  height: 100%;
}

.eid .list {
  position: relative;
  width: 100%;
  height: 100%;
}

.eid .list .item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.eid .list .item.active {
  opacity: 1;
  visibility: visible;
}

.eid .list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.eid .list .item .contains {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  width: 500px;
  max-width: 80%;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.eid .list .item .contains .name {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.eid .list .item.active .contains .name {
  opacity: 1;
  transform: translateY(0);
}

.eid .list .item .contains .desc {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.eid .list .item.active .contains .desc {
  opacity: 1;
  transform: translateY(0);
}

.eid .list .item .contains .price {
  font-size: 2rem;
  margin-bottom: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.eid .list .item .contains .buttons:hover + .price,
.eid .list .item .contains .price:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.eid .list .item .contains .buttons {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
}

.eid .list .item.active .contains .buttons {
  opacity: 1;
  transform: translateY(0);
}

.eid .list .item .contains .buttons button {
  position: relative;
  padding: 1.2rem 3rem;
  background: transparent;
  color: #fff;
  border: 2px solid var(--primary);
  border-radius: 0;
  font-size: 1.1rem;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s ease;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.eid .list .item .contains .buttons button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: all 0.5s ease;
  z-index: -1;
}

.eid .list .item .contains .buttons button:hover {
  color: var(--bg);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.eid .list .item .contains .buttons button:hover::before {
  left: 0;
}

.eid .list .item .contains .price {
  display: none;
}

/* Thumbnail Navigation */
.thumbnail {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 15px;
  z-index: 10;
}

.thumbnail .item {
  width: 100px;
  height: 100px;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.thumbnail .item:hover {
  opacity: 0.8;
}

.thumbnail .item.active {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.thumbnail .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Progress Bar */
.time {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  z-index: 10;
  transition: width 0.1s linear;
}

/* Navigation Arrows */
.arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
}

.arrows button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrows button:hover {
  background: var(--primary);
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .eid .list .item .contains {
    left: 5%;
    width: 90%;
    text-align: center;
  }

  .eid .list .item .contains .name {
    font-size: 2rem;
  }

  .eid .list .item .contains .desc {
    font-size: 1rem;
  }

  .thumbnail {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
  }

  .thumbnail .item {
    width: 70px;
    height: 100px;
  }

  .arrows {
    padding: 0 15px;
  }

  .arrows button {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .eid .list .item .contains {
    left: 5%;
    width: 90%;
    text-align: center;
  }

  .eid .list .item .contains .name {
    font-size: 2rem;
  }

  .eid .list .item .contains .desc {
    font-size: 1rem;
  }

  .eid .list .item .contains .btn-shop {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .thumbnail {
    gap: 10px;
  }

  .thumbnail .item {
    width: 60px;
    height: 90px;
  }

  .arrows {
    gap: 10px;
  }

  .arrows button {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* Special Eid Section */
.carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  text-align: center;
  color: var(--primary);
  padding-top: 2rem;
}

.carousel h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.carousel h1::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--primary);
}

.eid {
  width: 100%;
  height: 100%;
}

.eid .list {
  position: relative;
  width: 100%;
  height: 100%;
}

.eid .list .item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.eid .list .item.active {
  opacity: 1;
  visibility: visible;
}

.eid .list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.eid .list .item .contains {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  width: 500px;
  max-width: 80%;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.eid .list .item .contains .name {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.eid .list .item.active .contains .name {
  opacity: 1;
  transform: translateY(0);
}

.eid .list .item .contains .desc {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.eid .list .item.active .contains .desc {
  opacity: 1;
  transform: translateY(0);
}

.eid .list .item .contains .price {
  font-size: 2rem;
  margin-bottom: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.eid .list .item .contains .buttons:hover + .price,
.eid .list .item .contains .price:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.eid .list .item .contains .buttons {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
}

.eid .list .item.active .contains .buttons {
  opacity: 1;
  transform: translateY(0);
}

.eid .list .item .contains .buttons button {
  position: relative;
  padding: 1.2rem 3rem;
  background: transparent;
  color: #fff;
  border: 2px solid var(--primary);
  border-radius: 0;
  font-size: 1.1rem;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s ease;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.eid .list .item .contains .buttons button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: all 0.5s ease;
  z-index: -1;
}

.eid .list .item .contains .buttons button:hover {
  color: var(--bg);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.eid .list .item .contains .buttons button:hover::before {
  left: 0;
}

.eid .list .item .contains .price {
  display: none;
}

/* Thumbnail Navigation */
.thumbnail {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 15px;
  z-index: 10;
}

.thumbnail .item {
  width: 100px;
  height: 100px;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.thumbnail .item:hover {
  opacity: 0.8;
}

.thumbnail .item.active {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.thumbnail .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Progress Bar */
.time {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  z-index: 10;
  transition: width 0.1s linear;
}

/* Navigation Arrows */
.arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
}

.arrows button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrows button:hover {
  background: var(--primary);
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .eid .list .item .contains {
    left: 5%;
    width: 90%;
    text-align: center;
  }

  .eid .list .item .contains .name {
    font-size: 2rem;
  }

  .eid .list .item .contains .desc {
    font-size: 1rem;
  }

  .thumbnail {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
  }

  .thumbnail .item {
    width: 70px;
    height: 100px;
  }

  .arrows {
    padding: 0 15px;
  }

  .arrows button {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .eid .list .item .contains {
    left: 5%;
    width: 90%;
    text-align: center;
  }

  .eid .list .item .contains .name {
    font-size: 2rem;
  }

  .eid .list .item .contains .desc {
    font-size: 1rem;
  }

  .eid .list .item .contains .btn-shop {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .thumbnail {
    gap: 10px;
  }

  .thumbnail .item {
    width: 60px;
    height: 90px;
  }

  .arrows {
    gap: 10px;
  }

  .arrows button {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* Promo Section Styles */
.promo-section {
  padding: 6rem 0;
  background-color: #fff;
  position: relative;
}

.promo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.promo-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 4rem;
  position: relative;
}

.promo-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--primary);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.promo-card {
  position: relative;
  background: #fff;
  padding: 2.5rem;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.promo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(var(--primary-rgb), 0.05),
    rgba(var(--primary-rgb), 0.1)
  );
  opacity: 0;
  transition: all 0.4s ease;
}

.promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.promo-card:hover::before {
  opacity: 1;
}

.promo-content {
  position: relative;
  z-index: 1;
}

.promo-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.promo-content .discount {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary);
  margin: 1.5rem 0;
}

.promo-content .description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.code-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(var(--primary-rgb), 0.05);
  padding: 1rem;
  border-radius: 5px;
}

.promo-code {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--primary);
  letter-spacing: 2px;
}

.copy-btn {
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: var(--bg);
  color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

/* Responsive Design */
@media (max-width: 992px) {
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-card {
    padding: 2rem;
  }

  .promo-content .discount {
    font-size: 2.5rem;
  }
}

/* Footer Styles */
.footer {
  background-color: var(--primary);
  color: var(--third);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
  font-family: var(--font-body);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-section h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  color: var(--third);
}

.footer-section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 50px;
  height: 2px;
  background-color: var(--third);
}

.footer-section p {
  margin: 0.5rem 0;
  font-size: 1rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin: 0.6rem 0;
}

.footer-section ul li a {
  color: var(--third);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--bg);
}

.footer-social {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.footer-social a {
  color: var(--third);
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--bg);
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.3rem auto 0;
  padding-top: 1rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--third);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }
}

/* Shop Page-Dropdown Styling */
.shop-section {
  padding: 4rem 7% 1.4rem;
  scroll-margin-top: 120px;
}

.shop-header {
  text-align: center;
  margin-bottom: 3rem;
}

.shop-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary);
  position: relative;
}

.shop-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--primary);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.shop-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.shop-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px; /* Semua gambar card tinggi sama */
}

.shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.shop-card:hover .shop-image img {
  transform: scale(1.05); 
}

.shop-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.shop-card:hover .shop-overlay {
  opacity: 1;
}

.shop-cart-btn {
  background: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(20px);
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.shop-card:hover .shop-cart-btn {
  transform: translateY(0);
}

.shop-info {
  padding: 1.5rem;
  text-align: center;
}

.shop-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.7rem;
  transition: all 0.4s ease;
}

.shop-price {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 500;
}

.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .shop-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

/* Shop Page 4 product - Preview Styles */
.signature-looks-section {
  padding: 6rem 7% 1rem;
  scroll-margin-top: 120px;
  background-color: #fff;
}

.signature-looks-section .section-heading {
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: 2px;
  line-height: 1.4;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
  position: relative;
}

.signature-looks-section .section-heading::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--primary);
}

.signature-looks-section .section-heading span {
  color: var(--primary);
}

.shop-preview {
  padding: 2rem 5%;
  background-color: #fff;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.preview-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.preview-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.preview-card:hover img {
  transform: scale(1.1);
}

.preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1.5rem;
  color: #fff;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.preview-card:hover .preview-overlay {
  transform: translateY(0);
}

.preview-overlay h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.preview-overlay span {
  font-family: "Libre Baskerville", serif;
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .preview-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
