:root {
  --primary:   #cb9e3c; 
  --secondary: #a88330; 
  --tertiary:  #e2be6a;  
  --dark:      #6b4f16;  
  --light:     #faf3e0; 
}


* {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  margin: 0;
  background: var(--secondary);
  color: var(--dark);
}

/* TOP BAR */
.top-bar {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 14px;
}

.marquee {
  width: 100%;
  overflow: hidden;
  background-color: #6b4f16;
  color: #ffffff;
  padding: 3px 0; /* even slimmer */
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.marquee p {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: marquee 30s linear infinite; 
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
}

.marquee i {
  margin-right: 4px;
  color: #fff; 
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}


/* HEADER STYLING */
.header {
  display: flex;
  align-items: center;  
  justify-content: space-between; 
  padding: 10px 20px;
  background-color: #fff; 
  box-sizing: border-box;
}

/* Logo */
.logo {

  padding: 20px;
  border-radius: 10px;
  width: 230px;
}


/* Navigation links */
.nav {
  display: flex;
  gap: 20px; 
}

.nav a {
  text-decoration: none;
  color: var(--dark);
  transition: color 0.3s;
  font-weight: 500;
}

.nav a:hover {
  color: var(--primary);
}

/* Header icons */
.header-icons {
  display: flex;
  align-items: center;
}

.header-icons i {
  margin-left: 15px;
  cursor: pointer;
  font-size: 18px;
}


/* ================================
   PRODUCT SECTION 
================================ */

.product-container {
  display: flex;
  gap: 50px;
  padding: 60px 5%;
  align-items: flex-start;  /* changed from stretch/center */
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap; /* optional, for smaller screens */
}

/* IMAGE COLUMN */
.product-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  max-width: 600px;
  height: auto;  
  max-height: 500px;
  object-fit: cover;
  border-radius: 22px;
  transition: transform 0.4s ease;
}

.product-image img:hover {
  transform: scale(1.04);
}

/* INFO COLUMN */
.product-info {
  flex: 1;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;       /* vertically centered */
}

/* PRICE */
.price {
  font-size: 22px;
  color: var(--primary);
  margin: 10px 0;
}

.price span {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-left: 8px;
}

/* FEATURES */
.features {
  padding: 0;
  margin: 20px 0;
}

.features li {
  list-style: none;
  margin: 10px 0;
  font-size: 14px;
}

.features i {
  color: var(--primary);
  margin-right: 6px;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #555;
}

.payment-methods span {
  font-weight: 600;
  margin-right: 8px;
}

.payment-methods i {
  font-size: 24px;
  color: #6b4f16
}


/* ================================
   ACTION BUTTONS (ANCHORS)
================================ */

.actions {
  display: flex;
  gap: 15px;
  margin: 25px 0;
}

.actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* OUTLINE */
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* PRIMARY */
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(244, 143, 177, 0.35);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ================================
   DELIVERY STATUS
================================ */

.delivery {
  display: flex;
  justify-content: space-between;
  margin: 25px 0;
  font-size: 14px;
}

.delivery i {
  color: var(--primary);
  margin-right: 6px;
}

/* DELIVERY STEPS */
.delivery {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--dark);
}

.delivery div {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
}

.delivery i {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 5px;
}

/* SELLING OUT SECTION */
.selling-out {
  margin-top: 20px;
  text-align: center;
}

.selling-out h3 {
  font-size: 18px;
  color: var(--danger);
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.selling-out p {
  font-size: 13px;
  color: var(--dark);
  margin-bottom: 10px;
}

/* PROGRESS BAR */
.progress-bar {
  width: 100%;       
  max-width: 300px;   
  height: 12px;
  background-color: var(--secondary);
  border-radius: 6px;
  margin: 0 auto 40px auto; 
  overflow: hidden;
  position: relative; 
}

.progress-bar .progress {
  height: 100%;
  width: 0; 
  background-color: var(--primary);
  border-radius: 6px;
  transition: width 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 5px; 
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

/* ================================
   ACCORDION (POLISHED)
================================ */

.accordion-item {

  background: #fff; 
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid #000000;
  background-clip: padding-box;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Hover lift - subtle shadow lang */
.accordion-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* subtle shadow */
  transform: translateY(-2px);
}

/* Header */
.accordion-header {
  width: 100%;
  background: #fff; /* solid white background for header */
  border: none;
  outline: none;
  box-shadow: none;
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #333;
}

/* Remove default pseudo-element */
.accordion-header::after {
  display: none;
}

/* Icon animation */
.accordion-header i {
  font-size: 14px;
  color: var(--primary);
  transition: transform 0.35s ease;
}

/* Rotate icon when active */
.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

/* Content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  transition: max-height 0.45s ease, padding 0.35s ease;
}

/* Open state */
.accordion-item.active .accordion-content {
  max-height: 260px;
  padding: 0 20px 20px;
}



/* TRUST BAR */
.trust-bar {
  background: linear-gradient(135deg, #6b4f16, #6b4f16);
  padding: 35px 5%;
  margin-top: 40px;
}

.trust-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--light);
}

.trust-item i {
  font-size: 24px;
  color: var(--light);
  margin-bottom: 6px;
  padding: 12px;
  border: 2px solid var(--light); 
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effect (optional) */
.trust-item i:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* MODERN FOOTER */
.modern-footer {
  background: #fff;
  margin-top: 60px;
  border-top: 1px solid #f3d3df;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 5%;
}

.footer-brand h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.footer-brand span {
  color: var(--primary);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  margin-right: 12px;
  color: var(--primary);
  font-size: 18px;
  transition: transform 0.3s, opacity 0.3s;
}

.social-icons a:hover {
  transform: translateY(-4px);
  opacity: 0.7;
}

.footer-links h4,
.footer-trust h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-trust ul {
  list-style: none;
  padding: 0;
}

.footer-trust li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

.footer-trust i {
  color: var(--primary);
  margin-right: 8px;
}

/* BOTTOM BAR */
.footer-bottom {
  text-align: center;
  padding: 18px;
  background: var(--secondary);
  font-size: 13px;
  color: #ffffff;
}

/* RESPONSIVE FOOTER */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

.header-content {
  display: flex;
  flex-direction: column; 
  align-items: flex-start;
  gap: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
    align-items: center;
  }

  .nav {
    display: none;
  }

  .delivery {
    flex-direction: row; 
    justify-content: space-between;
    gap: 15px;
  }

  .delivery div i {
    font-size: 24px;
  }

.trust-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    grid-template-rows: repeat(3, auto); 
    gap: 15px;
    justify-items: center;
    align-items: center;
  }

  .trust-item i {
    font-size: 20px;
    padding: 8px;
  }

  .trust-item {
    font-size: 13px;
  }
   .product-container {
    flex-direction: column;
    gap: 30px;
  }

  .product-image img {
    max-height: 420px;
  }

  .product-info {
    padding: 30px 22px;
  }

  .delivery {
    flex-direction: column;
    gap: 10px;
  }

  .actions {
    flex-direction: column;
  }

  .header-content {
    flex-direction: column; 
    align-items: center; 
    text-align: center;
  }

  .header-content h1 {
    order: 2;
    font-size: 20px; 
  }

  .actions {
    order: 1; 
    flex-direction: row;
    gap: 10px;
    width: 100%; 
    align-items: center;
  }

  .actions .btn {
    width: 80%;  
    font-size: 14px;
  }
}

@media (max-width: 480px) {
   .trust-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 items per row */
    grid-template-rows: repeat(3, auto);  /* 2 rows */
    gap: 15px;
    justify-items: center;
    align-items: center;
  }

  .trust-item i {
    font-size: 20px;
    padding: 8px;
  }

  .trust-item {
    font-size: 13px;
  }
  .delivery {
    flex-direction: row;       
    justify-content: space-between;
    gap: 15px;
  }

  .delivery div i {
    font-size: 24px;
  }
   .product-container {
    flex-direction: column;
    gap: 30px;
  }

  .product-image img {
    max-height: 420px;
  }

  .product-info {
    padding: 30px 22px;
  }

  .delivery {
    flex-direction: column;
    gap: 10px;
  }

  .actions {
    flex-direction: column;
  }

  .header-content {
    flex-direction: column; 
    align-items: center; 
    text-align: center;
  }

  .header-content h1 {
    order: 2; 
    font-size: 20px; 
  }

  .actions {
    order: 1;  
    flex-direction: row; 
    gap: 10px;
    width: 100%;
    align-items: center;
  }

  .actions .btn {
    width: 80%; 
    font-size: 14px;
  }
}

