@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --header-height: 3rem;

  --font-semi: 600;
  --font-bold: 700;

  --first-color: #E55947;
  --first-color-alt: #D2321E;
  --white-color: #FAFAFF;
  --dark-color: #101010;
  --dark-color-light: #606060;
  --gray-color: #F0F1F3;

  --body-font: 'Poppins', sans-serif;
  

  --big-font-size: 3rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --normal-font-size: .938rem;
  --small-font-size: .75rem;

  --mb1: .5rem;
  --mb2: 1rem;
  --mb3: 1.5rem;
  --mb4: 2rem;

  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 768px) {
  :root {
    --big-font-size: 6rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: .813rem;
  }
}

*,
::before,
::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--dark-color);
  line-height: 1.6;
}

h1,
h2,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: -1pc;
}

a {
  text-decoration: none;
  color: var(--dark-color);
}

img {
  display: block;
  /* remove inline gap */
  margin: 0 auto;
  /* centers horizontally */
  max-width: 100%;
  height: auto;
}

.section {
  padding: 3.5rem 0;
}

.section-title {
  font-size: var(--h2-font-size);
  color: var(--dark-color);
  margin: var(--mb4) 0 var(--mb1);
  text-align: center;
  margin-bottom: 5pc;
}

.section-all {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi);
  color: var(--dark-color-light);
  text-align: center;
  margin-bottom: var(--mb2);
}

.bd-grid {
  max-width: 1024px;
  display: grid;
  grid-template-columns: 100%;
  grid-column-gap: 2rem;
  width: calc(100% - 3rem);
  margin-left: var(--mb3);
  margin-right: var(--mb3);
}

/*NAV*/

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: var(--gray-color);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-item {
  margin-bottom: var(--mb4);
}

.nav-link {
  color: var(--dark-color);
  font-weight: var(--font-semi);
}

.nav-link:hover {
  color: var(--first-color);
}

.nav-logo {
  font-weight: var(--font-bold);
}

.nav-cart {
  font-size: 1.5rem;
  margin-right: var(--mb2);
  cursor: pointer;
}

.nav-toggle {
  font-size: 1.5rem;
  cursor: pointer;
}

.active {
  color: var(--first-color);
}

@media screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 80%;
    height: 100%;
    padding: 2rem;
    background-color: var(--white-color);
    transition: .5s;
  }

  .show {
    right: 0;
  }
}

/*HOME*/

.home {
  background-color: var(--gray-color);
  position: relative;
  overflow: hidden;
  height: 54vh;
  display: flex;
  align-items: center;
}

.home-container {
  height: calc(100vh - var(--header-height));
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 5%;
}

.home-data {
  padding-top: 6rem;
  z-index: 2;
  max-width: 500px;
}

.home-title {
  align-self: center;
  font-size: var(--big-font-size);
  line-height: 1;
  letter-spacing: .5rem;
  margin-bottom: -3rem;
}

.home-title span {
  font-size: var(--h1-font-size);
}

.home-img {
  position: absolute;
  right: 0;
  bottom: 0;
  /* width: 260px; */
}

.button {
  display: inline-block;
  background-color: #e53935;
  color: var(--white-color);
  padding: 1rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi);
  border-radius: 8px;
  margin-top: 20px;
  text-decoration: none;

  
  
}

/* Carousel */
.home-carousel {
 position: absolute;
  width: 366px;
  height: auto;
  margin-left: 33pc;
}

.home-carousel .home-img {
  position: inherit;
  top: -12pc;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.home-carousel .home-img.active {
  opacity: 1;
}


.video-section {
  position: relative;
  padding: 4em 1em;
  background: #f7f7f7;
  text-align: center;
}

.video-container {
  max-width: 1000px;
  margin: 0 auto;
}

.video-header {
  margin-bottom: 2em;
}

.video-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0rem;
}

.video-description {
  font-size: 1rem;
  color: #555;
}

.video-slider {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.video-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.video-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.video-slide iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Arrows */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  font-size: 2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 0%;
  user-select: none;
  transition: 0.3s;
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.7);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}



/*COLLECTION*/

.collection-container {
  row-gap: 2rem;
}

.collection-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  background-color: var(--gray-color);
  transition: .3s;
}

.collection-box:hover {
  transform: translateY(-.5rem);
}

.collection-img {
  width: 100px;
}

.collection-title {
  font-size: var(--h1-font-size);
  line-height: 1.2;
  margin-bottom: var(--mb2);
  text-transform: uppercase;
  font-weight: var(--font-semi);
}

.collection-subtitle {
  font-size: var(--h2-font-size);
  color: var(--dark-color-light);
}

.collection-view {
  font-size: var(--small-font-size);
  color: var(--dark-color-light);
}

.collection-view:hover {
  text-decoration: underline;
}

/* FEATURED TOP PRODUCT */

.featured-top-container {
  row-gap: 2rem;
}

.featured-top-product {
  transition: .3s;
}

.featured-top-product:hover {
  transform: translateY(-.5rem);
}

.featured-top-box {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: var(--gray-color);
}

.featured-top-new {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 0.3rem 0.75rem;
  font-size: var(--small-font-size);
}

.featured-top-data {
  text-align: center;
}

.featured-top-name {
  margin-bottom: var(--mb1);
  text-transform: uppercase;
  font-size: var(--normal-font-size);
}

.featured-top-price {
  color: var(--dark-color-light);
  font-weight: var(--font-semi);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .featured-top-container {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
  }

  .featured-top-name {
    font-size: 0.9rem;
  }

  .featured-top-price {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .featured-top-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .featured-top-box {
    padding: 0.5rem;
  }

  .featured-top-name {
    font-size: 0.85rem;
  }

  .featured-top-price {
    font-size: 0.8rem;
  }
}


/*FEATURED PRODUCT*/

.featured-container {
  row-gap: 2rem;
}

.featured-product {
  transition: .3s;
}

.featured-product:hover {
  transform: translateY(-.5rem);
}

.featured-box {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: var(--gray-color);
}

.featured-new {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 0.3rem 0.75rem;
  font-size: var(--small-font-size);
}

.featured-data {
  text-align: center;
}

.featured-name {
  margin-bottom: var(--mb1);
  text-transform: uppercase;
  font-size: var(--normal-font-size);
}

.featured-price {
  color: var(--dark-color-light);
  font-weight: var(--font-semi);
}


/* Responsive tweaks */
@media (max-width: 768px) {
  .featured-container {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
  }

  .featured-name {
    font-size: 0.9rem;
  }

  .featured-price {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .featured-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .featured-box {
    padding: 0.5rem;
  }

  .featured-name {
    font-size: 0.85rem;
  }

  .featured-price {
    font-size: 0.8rem;
  }
}


/*OFFER*/

.offer-bg {
  background: url('assets/offer.jpg') no-repeat center/cover;
  text-align: center;
}

.offer-data {
  padding: 3.5rem 0.25rem;
  background: rgba(0, 0, 0, 0.868);
  color: var(--white-color);
}

.offer-title {
  font-size: var(--h1-font-size);
  letter-spacing: .2rem;
  text-transform: uppercase;
  font-weight: var(--font-semi);
}

.offer-description {
  margin-bottom: var(--mb2);
  letter-spacing: .2rem;
}

/*NEW*/

.new-container {
  row-gap: 2rem;
}

.new-box {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: var(--gray-color);
  overflow: hidden;
}

.new-box:hover .new-link {
  bottom: 0;
}

.new-link {
  position: absolute;
  bottom: -100%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(229, 89, 71, .2);
  transition: .3s;
}

/* Subscribe Section */
.subscribe-section {
  padding: 4rem 1rem;
  text-align: center;
  background: #f4f4f4;
  color: #111;
  font-family: "Inter", system-ui, sans-serif;
  margin-top: 5pc;
}

.subscribe-container {
  max-width: 460px;
  margin: 0 auto;
}

.subscribe-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.subscribe-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.subscribe-form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.subscribe-input {
  flex: 1;
  min-width: 220px;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.subscribe-input:focus {
  border-color: #111;
  outline: none;
}

.subscribe-button {
  padding: 0.75rem 1.5rem;
  border: none;
  background: #fd6c6c;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.subscribe-button:hover {
  background: #e53935;
  transform: translateY(-2px);
}

/* Messages */
.form-message {
  display: none;
  margin-top: 1rem;
  font-size: 0.95rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-message.success {
  color: #0a7d3a;
}

.form-message.error {
  color: #c62828;
}

.form-message.warning {
  color: #b98400;
}

/* Responsive */
@media (max-width: 480px) {
  .subscribe-button {
    width: 100%;
  }
}



/* SPONSORS */

.sponsors-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0;
  text-align: center;
}

/* Center when only 1 item */
.sponsors-container:has(:only-child) {
  grid-template-columns: 1fr;
  justify-items: center;
}

/* Center when exactly 2 items */
.sponsors-container:has(:nth-child(2):last-child) {
  grid-template-columns: repeat(2, auto);
  justify-content: center;
}

/* Logo styling */
.sponsors-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sponsors-logo img {
  width: 170px;
  height: 136px;
  filter: opacity(70%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.sponsors-logo img:hover {
  filter: none;
  transform: scale(1.05);
}

/* --- Responsive adjustments --- */

/* Smaller tablets (max-width: 768px) */
@media (max-width: 768px) {
  .sponsors-container {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
  }

  .sponsors-logo img {
    width: 140px;
    height: auto;
  }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .sponsors-container {
    grid-template-columns: 1fr;
  }

  .sponsors-logo img {
    width: 120px;
  }
}

/*FOOTER*/

/* Footer Base */
.footer {
  background-color: #000; /* pure black */
  color: #fff; /* white text */
  padding: 0rem 2rem;
  font-family: 'Poppins', sans-serif;
}

.footer a {
  color: #ccc; /* softer gray for links */
  text-decoration: none;
}

.footer a:hover {
  color: #fff; /* brighten on hover */
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.footer-copy {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}

/* Left Column */
.footer-logo {
  width: 140px;
  margin-bottom: 1rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}

.footer-socials a {
  font-size: 1.4rem;
  color: #e6f2ef;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #00c897;
}

.footer-btn {
  display: inline-block;
  background: #00c897;
  color: #064d4c;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.footer-btn:hover {
  background: #00a47a;
}

/* Middle Column (Links) */
.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: #e6f2ef;
  text-decoration: none;
  margin-bottom: .5rem;
  display: block;
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #00c897;
}

/* Right Column */
.footer-right {
  text-align: right;
}

.footer-tagline {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-copy {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #c8dedc;
}

.footer-legal {
  font-size: 0.8rem;
  line-height: -1.4;
  color: #a8c3c1;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .footer-right {
    text-align: center;
  }
}


/*MEDIA QUERIES*/

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }

  .section-all {
    margin-bottom: var(--mb4);
  }

  .nav {
    height: calc(--header-height) + 1rem;
    justify-content: initial;
  }

  .nav-menu {
    margin-left: auto;
  }

  .nav-list {
    display: flex;
  }

  .nav-item {
    margin-left: var(--mb4);
    margin-bottom: 0;
  }

  .nav-toggle {
    display: none;
  }

  .home-container {
    height: 100vh;
  }

  .home-data {
    padding: 0;
    height: max-content;
    align-self: center;
  }

  .home-title {
    line-height: 0.6;
    letter-spacing: 1.5rem;
  }

  .home-img {
    width: 370px;
  }

  .collection-container {
    display: grid;
    gap: 1.5rem;
    justify-content: center;
  }
  
  .collection-container:has(> :nth-child(3):last-child) {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
  }
  
  .collection-container:has(> :nth-child(3):last-child) > :nth-child(3) {
    grid-column: 1 / span 2;
    justify-self: center;
  }
  

  /* .collection-box { padding: 0.5rem 3rem 0; } */
  .collection-img {
    width: 130px;
  }

  .featured-container,
  .sponsors-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-container,
   .featured-top-container
     {
    grid-template-columns: repeat(4, 1fr);
   }

  .footer-container {
    padding: 2rem 0;
  }

  .offer-data {
    padding: 10rem 0px;
    margin-bottom: -3pc;
  }

  .new-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .newsletter-form {
    width: 440px;
    margin: 0 auto;
  }
}

.jouda-footer-logo {
  display: flex;
  justify-content: center;
}

.jouda-footer-logo img {
width: 13pc;
  filter: opacity(70%);
  display: block;
  margin: 0 auto;
  padding: 1.5pc;
  margin-bottom: -3pc;
}

.footer-section {

   width: 80px;
  filter: opacity(70%);


}

.footer-socials {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: -1pc;
}

.footer-inquiries {
  margin-top: -1.5rem;
  /* padding: 1rem; */
  background: rgba(255, 255, 255, 0.05); /* soft highlight untuk dark bg */
  border-radius: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f1f1f1; /* terang agar mudah dibaca */
}

.footer-inquiries strong,
.footer-inquiries a {
  color: #fff; /* putih biar jelas di background hitam */
  font-weight: 600;
  text-decoration: none;
}.footer-inquiries {
  margin-top: -1.5rem;
  /* padding: 1rem; */
  background: rgba(0, 0, 0, 0.05); /* soft background highlight */
  border-left: 4px solid #555; /* subtle accent */
  border-radius: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f1f1f1;
}

.footer-inquiries strong,
.footer-inquiries a {
  color: #f8f8f8;
  font-weight: 600;
  text-decoration: none;
}

.footer-inquiries a:hover {
  text-decoration: underline;
}


.footer-inquiries a:hover {
  text-decoration: underline;
  color: #ffd700; /* optional: highlight hover dengan gold */
}


@media screen and (max-width: 768px) {
  .footer-inquiries {
    font-size: 0.9rem;
    padding: 0.8rem;
  }
}

@media screen and (max-width: 480px) {
  .footer-inquiries {
    font-size: 0.85rem;
    padding: 0.7rem;
  }
}



@media screen and (min-width: 1024px) {
  .bd-grid {
    margin-right: auto;
    margin-left: auto;
  }

  .home-data {
    padding-left: 3rem;
  }

  .home-img {
    right: 15%;
  }

  .collection-box {
    padding: 0.5rem 8rem 0;
  }

  .footer-copy {
    font-size: var(--normal-font-size);
  }

    .footer-inquiries {
    font-size: 0.85rem;
    padding: 0.7rem;
  }
}


/* Modal styling */
.modal {
  display: none;
  /* hidden by default */
  position: fixed;
  z-index: 1000;
  padding-top: 5%;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
}

.modal-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

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

.modal-close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  background: #e74c3c;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.modal-close:hover {
  background: #c0392b;
  transform: scale(1.1);
}

.modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0,0,0,0.7);
  padding: 2rem 1rem;
}

.modal-body {
  max-width: 600px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}

.modal-content {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.modal-cta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.arrow-buy {
display: flex;

}

.cta-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt, #444));
  color: #fff;
  font-weight: 600;
  font-size: -0.1rem;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
  min-width: 110px;
  text-align: center;
}

.cta-btn:hover {
  background: linear-gradient(135deg, var(--first-color-alt, #333), var(--first-color));
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Responsive: stack buttons on small screens */
@media (max-width: 480px) {
  .modal-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-btn {
    width: 100%;
  }
}

/* Countdown */

.countdown-section {
  position: relative;
  background-image: url('assets/banner/countdownbanner.png'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.4); /* optional dark overlay */
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.countdown {
  display: flex;
  gap: 15px;
  font-size: 2rem;
}

.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-box small {
  font-size: 0.9rem;
  margin-top: 5px;
}

.shop-button {
  display: inline-block;
  margin: 16px;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
  border: none;
}

/* Button states */
.shop-button.coming-soon {
  background-color: #aaa;
  color: #fff;
  cursor: not-allowed;
}

.shop-button.shop-now {
  background-color: #4caf50;
  color: #fff;
  cursor: pointer;
}

.shop-button.sold-out {
  background-color: #e53935;
  color: #fff;
  cursor: not-allowed;
}

/* WhatsApp Modal - Fully Unique */
.whatsapp-modal-unique {
  display: none;
  position: fixed;
  z-index: 3000; /* higher than other modals */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 94, 84, 0.85); /* WhatsApp dark green overlay */
  justify-content: center;
  align-items: center;
}

.whatsapp-modal-box {
  background: #ffffff;
  padding: 30px 35px;
  border-radius: 16px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  animation: whatsappFadeIn 0.3s ease-in-out;
}

.whatsapp-modal-title {
  font-size: 22px;
  margin-bottom: 12px;
  color: #075e54; /* WhatsApp green */
}

.whatsapp-modal-text {
  font-size: 15px;
  color: #333;
  margin-bottom: 22px;
  line-height: 1.5;
}

.whatsapp-modal-btn {
  display: inline-block;
  background: #25d366; /* WhatsApp light green */
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.whatsapp-modal-btn:hover {
  background: #20b358;
}

.whatsapp-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 26px;
  font-weight: bold;
  color: #888;
  cursor: pointer;
  transition: color 0.2s ease;
}

.whatsapp-modal-close:hover {
  color: #000;
}

@keyframes whatsappFadeIn {
  from {
    opacity: 0;
    transform: translateY(-15px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.rate-limit-warning,
.success-message {
  margin-top: 10px;
  text-align: center;
  font-weight: 500;
}
