/* ===================================
   ZAHRA COLLECTIONS V2.0
   MAIN STYLESHEET
=================================== */

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

/* Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;

  background: #faf7f2;

  color: var(--brown);

  overflow-x: hidden;

  line-height: 1.6;
}

/* Colors */

:root {
  --gold: #c8a165;

  --brown: #4b2e25;

  --cream: #faf7f2;

  --white: #ffffff;

  --light: #f4eee8;

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Links */

a {
  text-decoration: none;

  color: inherit;
}

/* Images */

img {
  max-width: 100%;

  display: block;
}

/* Buttons */

.btn {
  display: inline-block;

  padding: 15px 35px;

  background: var(--gold);

  color: white;

  border: none;

  border-radius: 40px;

  font-weight: 600;

  transition: 0.3s;

  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);

  background: var(--brown);
}
.action-btn {
  display: block;
  width: 100%;
  height: 56px; /* forces identical height on ALL buttons */
  padding: 0 20px; /* no vertical padding now — height controls it */
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid transparent;
  box-sizing: border-box; /* border won't add extra height/width */
  transition: 0.3s;
  cursor: pointer;
  margin-bottom: 1px; /* consistent spacing instead of <br> tags */
}

.btn-outline {
  background: transparent;
  color: #4b2e25;
  border-color: #4b2e25;
}

.whatsapp-order {
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.remove-btn {
  background: #e0324f;
  color: white;
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}
/* ===========================
NAVBAR
=========================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--brown);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease;
}

header.hide {
  transform: translateY(-100%);
}

.navbar {
  width: 100%;

  padding: 15px 30px;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.logo img {
  height: 120px;

  width: auto;

  display: block;

  transition: all 0.35s ease;
}

header.shrink .logo img {
  height: 80px;
}

.nav-links {
  display: flex;

  align-items: center;

  list-style: none;

  gap: 35px;

  margin-left: auto;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: white;

  font-weight: 500;

  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.active {
  color: var(--gold);
}

/* Cart */

.cart-icon {
  position: relative;

  font-size: 22px;
}

#cartCount {
  position: absolute;

  top: -10px;

  right: -14px;

  background: rgb(212, 44, 44);

  color: white;

  font-size: 12px;

  width: 22px;

  height: 22px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: bold;
}

/* Mobile menu */

.menu-btn {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* ===========================
HERO
=========================== */

.hero {
  position: relative;

  min-height: 100vh;

  height: auto;

  display: flex;

  justify-content: center;

  align-items: center;

  text-align: center;

  padding: 140px 20px 80px;

  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../images/hero.jpg");

  background-size: cover;

  background-position: center;

  color: white;
}

.overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;

  z-index: 2;

  max-width: 800px;

  padding: 20px;
}

.hero h1 {
  font-size: 62px;

  font-family: "Cinzel", serif;

  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;

  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 20px;
}

/* ===========================
SECTION TITLE
=========================== */

.section-title {
  text-align: center;

  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 40px;

  font-family: "Cinzel", serif;

  margin-bottom: 15px;

  color: var(--brown);
}

.section-title p {
  color: #777;

  font-size: 18px;
}

/* ===========================
FEATURES
=========================== */

.features {
  padding: 80px 5%;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;

  background: var(--white);
}

.feature {
  background: var(--cream);

  padding: 45px 35px;

  text-align: center;

  border-radius: 20px;

  transition: 0.3s;

  box-shadow: var(--shadow);
}

.feature:hover {
  transform: translateY(-10px);
}

.feature i {
  font-size: 45px;

  color: var(--gold);

  margin-bottom: 20px;
}

.feature h3 {
  margin-bottom: 12px;

  font-size: 22px;

  font-family: "Cinzel", serif;
}

.feature p {
  color: #666;
}

/* ===========================
    CATEGORIES
    =========================== */

.categories {
  padding: 100px 5%;
}

.category-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

.category-card {
  position: relative;

  overflow: hidden;

  border-radius: 20px;

  box-shadow: var(--shadow);
}

.category-card img {
  height: 320px;

  width: 100%;

  object-fit: cover;

  transition: 0.5s;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-card div {
  position: absolute;

  bottom: 0;

  width: 100%;

  padding: 25px;

  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.category-card h3 {
  color: white;

  font-size: 26px;

  font-family: "Cinzel", serif;
}

/* ===========================
    PRODUCT GRID
    =========================== */

/* ================================
   PRODUCT GRID - DESKTOP
================================ */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px 60px;
    box-sizing: border-box;
    align-items: stretch;
}

/* ================================
   PRODUCT CARD
================================ */

.product-card {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
}

.product-info {
    height: auto;
}

.product-info h3 {
    margin-bottom: 10px;
}

.product-price {
    margin-top: 8px;
}

.rating {
    margin: 6px 0;
}

.old-price {
    margin-left: 6px;
}

/* Keep every product image the SAME size */

.product-card .image-box {
    width: 100%;
    height: 320px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-card .image-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Keep the information area consistent */

.product-card .product-info {
    display: flex;
    flex-direction: column;
    height: auto;
    box-sizing: border-box;
}

.product-card .product-buttons {
    margin-top: auto;
}

/* Product Image */

.image-box {
  position: relative;

  overflow: hidden;
}

.image-box img {
  height: 300px;

  width: 100%;

  object-fit: cover;

  transition: 0.5s;
}

.product-card:hover .image-box img {
  transform: scale(1.08);
}

/* NEW Badge */

.sale {
  position: absolute;

  top: 15px;

  left: 15px;

  background: var(--gold);

  color: white;

  padding: 8px 16px;

  border-radius: 30px;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1px;

  z-index: 2;
}

/* Wishlist Heart */

.wishlist {
  position: absolute;

  top: 15px;

  right: 15px;

  background: white;

  width: 42px;

  height: 42px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  cursor: pointer;

  box-shadow: var(--shadow);

  transition: 0.3s;
}

.wishlist:hover {
  background: var(--gold);

  color: white;
}

/* Product Info */

.product-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info h3 {
  font-family: "Cinzel", serif;

  font-size: 24px;

  margin-bottom: 10px;

  min-height: auto;
}

.product-info p {
  color: #777;

  margin-bottom: 15px;

  font-size: 15px;

  min-height: 42px;
}

.product-price {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 20px;
}

.price {
  font-size: 24px;

  font-weight: 700;

  color: var(--brown);
}

.old-price {
  text-decoration: line-through;

  color: #999;

  margin-left: 10px;

  font-size: 15px;
}

/* Rating */

.rating {
  color: #ffd43b;

  margin-bottom: 15px;

  font-size: 18px;
}

/* Product Buttons */

.product-buttons {
  display: flex;

  gap: 12px;

  margin-top: auto;
}

.product-buttons button {
  flex: 1;

  padding: 14px;

  border: none;

  border-radius: 30px;

  cursor: pointer;

  font-weight: 600;

  transition: 0.3s;
}

.add-cart {
  background: var(--brown);

  color: white;
}

.add-cart:hover {
  background: var(--gold);
}

.view-btn {
  background: #ececec;
}

.view-btn:hover {
  background: #ddd;
}

/* ===========================
    SEARCH BAR
    =========================== */

.search-box {
  margin: 40px auto;

  max-width: 600px;
}

.search-box input {
  width: 100%;

  padding: 16px 22px;

  border: 2px solid #eee;

  border-radius: 40px;

  font-size: 16px;

  outline: none;

  transition: 0.3s;
}

.search-box input:focus {
  border-color: var(--gold);
}

/* ===========================
    FILTER BUTTONS
    =========================== */

.filters {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 15px;

  margin: 40px 0 60px;
}

.filters button {
  padding: 12px 28px;

  border: none;

  background: white;

  border-radius: 40px;

  cursor: pointer;

  font-weight: 600;

  box-shadow: var(--shadow);

  transition: 0.3s;
}

.filters button:hover {
  background: var(--gold);

  color: white;
}

/* =====================================
   PRODUCT DETAILS PAGE
===================================== */

.product-details {
  max-width: 1300px;

  margin: 100px auto;
  
  margin-top: 240px;

  padding: 0 5%;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: start;
}

.product-gallery img {
  width: 100%;

  border-radius: 20px;

  box-shadow: var(--shadow);
}

.thumbnail-row {
  display: flex;

  gap: 15px;

  margin-top: 20px;
}

.thumbnail-row img {
  width: 90px;

  height: 90px;

  border-radius: 10px;

  cursor: pointer;

  object-fit: cover;

  transition: 0.3s;

  border: 2px solid transparent;
}

.thumbnail-row img:hover {
  border-color: var(--gold);
}

.product-info h1 {
  font-size: 42px;

  margin-bottom: 15px;

  font-family: "Cinzel", serif;
}

.product-info .price {
  font-size: 34px;

  margin: 20px 0;

  color: var(--brown);
}

.product-info p {
  color: #666;

  margin-bottom: 25px;

  line-height: 1.8;
}

.quantity {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 30px;
}

.quantity input {
  width: 80px;

  padding: 12px;

  text-align: center;

  border: 1px solid #ddd;

  border-radius: 8px;

  font-size: 18px;
}

.buy-buttons {
  display: flex;

  gap: 15px;

  flex-wrap: wrap;
}

.buy-buttons button {
  padding: 15px 30px;

  border: none;

  border-radius: 40px;

  cursor: pointer;

  font-weight: 600;

  transition: 0.3s;
}

.buy-now {
  background: var(--gold);

  color: white;
}

.buy-now:hover {
  background: #33271e;
}

.cart-btn {
  background: #33271e;

  color: white;
}

.cart-btn:hover {
  background: var(--gold);
}

/* =====================================
    CUSTOMER REVIEWS
    ===================================== */

.review-section {
  padding: 90px 5%;

  background: white;
}

.review-section form {
  max-width: 750px;

  margin: auto;

  display: flex;

  flex-direction: column;

  gap: 18px;
}

.review-section input,
.review-section textarea,
.review-section select {
  padding: 16px;

  font-size: 16px;

  border: 1px solid #ddd;

  border-radius: 12px;

  outline: none;
}

.review-section textarea {
  resize: vertical;
}

.review-card {
  background: #fafafa;

  padding: 25px;

  border-radius: 15px;

  margin-top: 30px;

  box-shadow: var(--shadow);
}

.review-card h4 {
  margin-bottom: 8px;
}

.review-stars {
  color: #ffd43b;

  font-size: 20px;

  margin-bottom: 10px;
}

/* =====================================
    TESTIMONIALS
    ===================================== */

.testimonials {
  padding: 100px 5%;

  background: var(--light);
}

.testimonial-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.testimonial-card {
  background: white;

  padding: 35px;

  border-radius: 20px;

  box-shadow: var(--shadow);

  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.stars {
  font-size: 24px;

  color: #ffd43b;

  margin-bottom: 15px;
}

.testimonial-card p {
  line-height: 1.8;

  margin-bottom: 20px;

  color: #666;
}

/* =====================================
    SHOPPING CART
    ===================================== */

.cart-container {
  max-width: 1300px;

  margin: 80px auto;

  padding: 0 5%;
}

.cart-row {
  display: grid;

  grid-template-columns: 140px 2fr 120px 120px 120px;

  align-items: center;

  gap: 20px;

  background: white;

  padding: 20px;

  border-radius: 18px;

  margin-bottom: 25px;

  box-shadow: var(--shadow);
}

.cart-row img {
  width: 120px;

  border-radius: 15px;
}

.cart-row input {
  width: 70px;

  padding: 10px;

  text-align: center;
}

.remove-btn {
  background: #dc3545;

  color: white;

  padding: 10px 18px;

  border: none;

  border-radius: 30px;

  cursor: pointer;
}

.cart-summary {
  margin-top: 40px;

  background: white;

  padding: 35px;

  border-radius: 20px;

  box-shadow: var(--shadow);
}

.cart-summary h2 {
  margin-bottom: 20px;
}

/* =====================================
    CHECKOUT
    ===================================== */

.checkout {
  max-width: 850px;

  margin: 100px auto;

  padding: 40px;

  background: white;

  border-radius: 20px;

  box-shadow: var(--shadow);
}

.checkout form {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

.checkout input,
.checkout textarea,
.checkout select {
  padding: 16px;

  border-radius: 10px;

  border: 1px solid #ddd;

  font-size: 16px;
}

.pay-btn {
  background: #635bff;

  color: white;

  padding: 16px;

  border: none;

  border-radius: 40px;

  cursor: pointer;

  font-size: 17px;

  transition: 0.3s;
}

.pay-btn:hover {
  opacity: 0.9;
}

.paypal {
  background: #0070ba;

  margin-top: 10px;
}

/* =====================================
    NEWSLETTER
    ===================================== */

.newsletter {
  padding: 100px 5%;

  background: var(--gold);

  color: white;

  text-align: center;

  margin-top: 50px;
}

.newsletter-content {
  max-width: 700px;

  margin: auto;
}

.newsletter h2 {
  font-size: 42px;

  margin-bottom: 20px;

  font-family: "Cinzel", serif;
}

.newsletter form {
  display: flex;

  justify-content: center;

  gap: 15px;

  flex-wrap: wrap;

  margin-top: 30px;
}

.newsletter input {
  padding: 16px;

  width: 350px;

  border: none;

  border-radius: 30px;

  font-size: 18px;
}

/* =====================================
    INSTAGRAM GALLERY
    ===================================== */

.instagram {
  padding: 90px 5%;
}

.instagram-grid {
  display: grid;

  grid-template-columns: repeat(6, 1fr);

  gap: 15px;
}

.instagram-grid img {
  height: 200px;

  width: 100%;

  object-fit: cover;

  border-radius: 15px;

  transition: 0.4s;

  cursor: pointer;
}

.instagram-grid img:hover {
  transform: scale(1.05);
}

/* ======================================
FOOTER
====================================== */

footer {
  background: var(--brown);

  color: white;

  padding: 80px 5% 30px;
}

.footer-container {
  max-width: 1300px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 50px;
}

.footer-column h3 {
  margin-bottom: 20px;

  font-family: "Cinzel", serif;

  font-size: 24px;
}

.footer-column p {
  line-height: 1.9;

  color: #ddd;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 15px;
}

.footer-column ul li a {
  color: #ddd;

  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: var(--gold);

  padding-left: 8px;
}

.footer-logo {
  width: 180px;

  margin-bottom: 20px;
}

.social-icons {
  display: flex;

  gap: 15px;

  margin-top: 25px;
}

.social-icons a {
  width: 45px;

  height: 45px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: var(--gold);

  color: white;

  font-size: 18px;

  transition: 0.3s;
}

.social-icons a:hover {
  transform: translateY(-6px);

  background: white;

  color: #4b2e25;
}

footer hr {
  margin: 50px 0 20px;

  border: none;

  height: 1px;

  background: #555;
}

.copyright {
  text-align: center;

  font-size: 15px;

  color: #ddd;
}

/* ======================================
    SCROLL TO TOP BUTTON
    ====================================== */

#topBtn {
  position: fixed;

  bottom: 30px;

  right: 30px;

  width: 55px;

  height: 55px;

  border: none;

  border-radius: 50%;

  background: var(--gold);

  color: white;

  font-size: 22px;

  cursor: pointer;

  display: none;

  justify-content: center;

  align-items: center;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

  transition: 0.3s;

  z-index: 999;
}

#topBtn:hover {
  background: #4b2e25;

  transform: translateY(-5px);
}

/* ======================================
    LOADER
    ====================================== */

#loader {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: white;

  display: flex;

  justify-content: center;

  align-items: center;

  z-index: 99999;
}

.loader-circle {
  width: 70px;

  height: 70px;

  border: 8px solid #eee;

  border-top: 8px solid var(--gold);

  border-radius: 50%;

  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* ======================================
    ANIMATIONS
    ====================================== */

.fade-up {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  0% {
    opacity: 0;

    transform: translateY(40px);
  }

  100% {
    opacity: 1;

    transform: translateY(0);
  }
}

.zoom {
  transition: 0.4s;
}

.zoom:hover {
  transform: scale(1.05);
}

.shadow {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.round {
  border-radius: 20px;
}

/* ======================================
    FORMS
    ====================================== */

input,
textarea,
select {
  font-family: "Poppins", sans-serif;

  outline: none;
}

button {
  font-family: "Poppins", sans-serif;
}

/* ======================================
    UTILITY CLASSES
    ====================================== */

.container {
  max-width: 1300px;

  margin: auto;

  padding: 0 5%;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 10px;
}
.mt-2 {
  margin-top: 20px;
}
.mt-3 {
  margin-top: 30px;
}
.mt-4 {
  margin-top: 40px;
}
.mt-5 {
  margin-top: 50px;
}

.mb-1 {
  margin-bottom: 10px;
}
.mb-2 {
  margin-bottom: 20px;
}
.mb-3 {
  margin-bottom: 30px;
}
.mb-4 {
  margin-bottom: 40px;
}
.mb-5 {
  margin-bottom: 50px;
}

/* ======================================
    SELECTION
    ====================================== */

::selection {
  background: var(--gold);

  color: white;
}

.logo {
  transition: 0.35s;
}

.logo.hide {
  opacity: 0;

  transform: translateY(-25px);

  pointer-events: none;
}

/* ===========================
WHY CHOOSE US
=========================== */

.why-us {
  padding: 100px 5%;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--cream);
  padding: 40px 35px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.why-card i {
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 20px;
}

.why-card h3 {
  margin-bottom: 15px;
  font-family: "Cinzel", serif;
}

.why-card p {
  color: #666;
  line-height: 1.8;
}

/* Featured Products Toggle */

.featured-products {
  padding: 40px 5%;
  background: var(--light);
}

#toggleProducts {
  margin-top: 20px;
}

.shop-page {
  padding-top: 140px;
}

.shop-title {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 45px;
}

.shop-title h1 {
  font-size: 52px;
  font-family: "Cinzel", serif;
  color: var(--brown);
  margin-bottom: 12px;
}

.shop-title p {
  font-size: 18px;
  color: #777;
}

.sort-box {
  text-align: center;
  margin: 45px 0;
}

.sort-box select {
  padding: 14px 25px 14px 22px;
  border: 2px solid var(--gold);
  border-radius: 35px;
  background: white;
  color: var(--brown);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.sort-box select:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.sort-box select:focus {
  outline: none;
  border-color: var(--brown);
}

.shop-title {
  margin-top: 50px;
  margin-bottom: 50px;
}

.search-box {
  margin: 35px auto;
}

.filters {
  margin: 35px 0;
}

.sort-box {
  margin: 45px 0 60px;
}

.contact-form {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  margin-bottom: 18px;

  border: 2px solid #ddd;
  border-radius: 12px;

  font-size: 16px;

  outline: none;

  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(212, 170, 94, 0.25);
}

.contact-form textarea {
  min-height: 180px;
  resize: none;
}

.instagram-btn {
  margin-top: 15px;
}

.contact-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact-trust {
  margin-top: 40px;
  width: 100%;
  background: #fff;
  padding: 25px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  box-sizing: border-box;
}

.contact-trust h3 {
  margin-bottom: 15px;
  color: var(--brown);
  font-size: 28px;
}

.contact-trust p {
  margin: 12px 0;
  font-size: 18px;
  color: #555;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form button {
  margin-bottom: auto;
  margin-top: 10px;
}

.order-details {
  margin-top: 30px;

  display: flex;

  flex-direction: column;

  gap: 15px;
}

.order-details input {
  padding: 15px;

  border: 1px solid #ddd;

  border-radius: 10px;

  font-size: 16px;
}

.whatsapp-order {
  background: #25d366;

  color: white;

  padding: 15px;

  border: none;

  border-radius: 30px;

  font-size: 17px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.whatsapp-order:hover {
  background: #128c7e;

  transform: translateY(-3px);
}

.cart-summary .btn,
.cart-summary .btn-outline,
.cart-summary .remove-btn,
.cart-summary .whatsapp-order {
  width: 100%;

  padding: 15px;

  border-radius: 30px;

  font-size: 16px;

  font-weight: 600;

  margin-top: 15px;

  display: block;

  text-align: center;
}

.insta-link {
  text-decoration: none;
  color: #666;
  font-size: 22px;
  transition: 0.3s;
}

.insta-link:hover {
  color: #cda15b;
}

/* ================= FAQ SECTION ================= */

.faq-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 20px;
}

.faq-section h2 {
  font-size: 52px;
  text-align: center;
  color: #4b2e25;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.faq-section .subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
  font-size: 20px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: #fff;
  padding: 22px 25px;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: #4b2e25;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #f7f2eb;
}

.faq-answer {
  display: block;
  padding: 0 25px 22px;
  color: #555;
  font-size: 18px;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-icon {
  font-size: 24px;
  transition: 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Announcement Bar */

.announcement-bar {
  width: 100%;
  background: var(--gold);
  color: white;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.announcement-text {
  display: inline-block;
  padding-left: 100%;
  animation: scrollNews 20s linear infinite;
}

@keyframes scrollNews {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.faq-header {
  padding-top: 250px;
  text-align: center;
  font-size: large;
}

.about-header {
  padding-top: 240px;
  text-align: center;
  font-size: large;
}

.shop-header {
  padding-top: 30px;
  text-align: center;
}

.product-card.locked {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.product-card.locked img {
  filter: grayscale(30%);
}

.product-card.locked .sale {
  background: #4b2e25;
  color: #f5e9c8;
}

.add-cart:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.product-grid {
    justify-items: center;
}

.coming-soon-message {
    grid-column: 1 / -1;
    width: 90%;
    max-width: 900px;
    margin: 50px auto !important;
    text-align: center;
    align-items: center;
}


.coming-soon-message h2{

    font-size:45px;

    font-family:"Cinzel", serif;

    margin-bottom:20px;

    color:#4B2E25;

}


.coming-soon-message p {
    font-size: 20px;

    width: 100%;
    
    max-width: 600px;

    margin: 10px auto;

    line-height: 1.7;

    color: #555;

    text-align: center;
}

.contact-header {
  padding-top: 200px;
  text-align: center;
  font-size: large;
}

.instagram-icon a{
  color:white;
  font-size:24px;
  transition:0.3s;
}

.instagram-icon a:hover{
  color:#E1306C;
  transform:scale(1.15);
}


/* =========================================
   PRODUCT CARD POLISH
   ========================================= */

/* Keep all product cards the same size */
.product-grid {
    align-items: stretch;
    gap: 32px;
}

/* Consistent product card */
.product-card {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-sizing: border-box;
}

/* Consistent image area */
.product-card .image-box {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
}

/* Make every product image fill the same area */
.product-card .image-box img,
.product-card > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Round the actual image */
.product-card img {
    border-radius: 22px 22px 0 0;
}

/* Keep product information aligned */
.product-card .product-info {
    display: flex;
    flex-direction: column;
    height: calc(100% - 320px);
    box-sizing: border-box;
}

/* Keep buttons at the bottom */
.product-card .product-buttons {
    margin-top: auto;
}

/* Desktop */
@media (min-width: 1201px) {

    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 1250px;
        margin-left: auto;
        margin-right: auto;
        gap: 32px;
    }

    .product-card .image-box {
        height: 320px;
    }

}

/* Large desktop */
@media (min-width: 1600px) {

    .product-grid {
        max-width: 1350px;
        gap: 36px;
    }

    .product-card .image-box {
        height: 340px;
    }

}

.product-image-clickable {
    cursor: pointer;
}

.clickable-product-image {
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.clickable-product-image img {
    cursor: pointer;
    width: 100%;
}


.product-details {
    visibility: hidden;
}

.product-details.loaded {
    visibility: visible;
}


/* =========================================================
   ZAHRA COLLECTIONS - CART PRODUCT LAYOUT FIX
   ONLY AFFECTS CART PAGE
========================================================= */

.cart-container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}

#cartItems {
    width: 100%;
}

#cartItems .cart-item {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
    max-width: 100%;
    padding: 20px;
    margin-bottom: 25px;
    background: #fff;
    border-radius: 15px;
    box-sizing: border-box;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

/* PRODUCT IMAGE */
#cartItems .cart-item img {
    width: 180px;
    height: 180px;
    min-width: 180px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* PRODUCT INFORMATION */
#cartItems .cart-item > div {
    flex: 1;
    min-width: 0;
}

#cartItems .cart-item h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.4;
}

#cartItems .cart-item p {
    margin: 8px 0;
}

#cartItems .cart-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
}

#cartItems .cart-item input[type="number"] {
    width: 80px;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

/* REMOVE BUTTON */
#cartItems .cart-remove-btn {
    padding: 8px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .cart-container {
        width: 94%;
        margin: 25px auto;
    }

    #cartItems .cart-item {
        gap: 15px;
        padding: 15px;
    }

    #cartItems .cart-item img {
        width: 130px;
        height: 130px;
        min-width: 130px;
    }

    #cartItems .cart-item h3 {
        font-size: 17px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .cart-container {
        width: 94%;
        margin: 20px auto;
    }

    #cartItems .cart-item {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px;
    }

    #cartItems .cart-item img {
        width: 100%;
        height: 240px;
        min-width: 0;
        object-fit: cover;
        border-radius: 10px;
    }

    #cartItems .cart-item > div {
        width: 100%;
    }

    #cartItems .cart-item h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    #cartItems .cart-item p {
        font-size: 14px;
    }

    #cartItems .cart-item label {
        flex-wrap: wrap;
    }

    #cartItems .cart-item input[type="number"] {
        width: 70px;
    }

    #cartItems .cart-remove-btn {
        width: 100%;
        padding: 10px;
    }

}

/* =========================================================
   FINAL CART FIX
   PRODUCT SIZE + HEADER SPACE
========================================================= */

/* Keep cart content below the header */
.cart-container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1200px;
    margin: 45px auto 40px !important;
    padding: 25px 0 0 !important;
}

/* Keep product image SMALL and controlled */
#cartItems .cart-item {
    display: flex !important;
    align-items: center !important;
    gap: 25px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#cartItems .cart-item img {
    width: 180px !important;
    height: 180px !important;
    min-width: 180px !important;
    max-width: 180px !important;
    max-height: 180px !important;
    object-fit: cover !important;
    display: block !important;
    flex-shrink: 0 !important;
    border-radius: 12px !important;
}

/* Product information */
#cartItems .cart-item > div {
    flex: 1 !important;
    min-width: 0 !important;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .cart-container {
        width: 94% !important;
        margin: 30px auto 30px !important;
        padding-top: 20px !important;
    }

    #cartItems .cart-item {
        gap: 15px !important;
        padding: 15px !important;
    }

    #cartItems .cart-item img {
        width: 130px !important;
        height: 130px !important;
        min-width: 130px !important;
        max-width: 130px !important;
        max-height: 130px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .cart-container {
        width: 94% !important;
        margin: 25px auto 25px !important;
        padding-top: 15px !important;
    }

    #cartItems .cart-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        padding: 14px !important;
    }

    #cartItems .cart-item img {
        width: 100% !important;
        height: 240px !important;
        min-width: 0 !important;
        max-width: 100% !important;
        max-height: 240px !important;
        object-fit: cover !important;
    }

    #cartItems .cart-item > div {
        width: 100% !important;
    }

}

/* =========================================================
   CART TOP SPACING - FIX HEADER OVERLAP
   ONLY AFFECTS CART PAGE
========================================================= */


@media (max-width: 768px) {
    .cart-container {
        padding-top: 115px !important;
    }
}

@media (max-width: 480px) {
    .cart-container {
        padding-top: 100px !important;
    }
}

/* =========================================================
   FINAL FIX - FIRST CART PRODUCT BELOW HEADER
   ========================================================= */


/* Tablet */
@media (max-width: 768px) {
    #cartItems {
        margin-top: 110px !important;
    }
}

/* Mobile */
@media (max-width: 480px) {
    #cartItems {
        margin-top: 90px !important;
    }
}

/* =========================================================
   FINAL CART HEADER FIX
   Keep cart completely below the fixed navbar
   ========================================================= */

.cart-container {
    position: relative !important;
    width: 90% !important;
    max-width: 1200px !important;

    /* Header is approximately 140px tall */
    margin: 170px auto 40px !important;

    padding: 0 !important;
    box-sizing: border-box !important;
}

/* IMPORTANT: remove extra spacing from cart items */
#cartItems {
    width: 100% !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Cart product */
#cartItems .cart-item {
    position: relative !important;
    display: flex !important;
    align-items: center !important;

    width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 25px !important;

    padding: 20px !important;
    box-sizing: border-box !important;

    background: #fff !important;
    border-radius: 15px !important;
}

/* Product image */
#cartItems .cart-item img {
    width: 180px !important;
    height: 180px !important;
    min-width: 180px !important;
    max-width: 180px !important;
    max-height: 180px !important;

    object-fit: cover !important;
    flex-shrink: 0 !important;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 768px) {

    .cart-container {
        width: 94% !important;
        margin: 150px auto 30px !important;
        padding: 0 !important;
    }

    #cartItems {
        margin-top: 0 !important;
    }

    #cartItems .cart-item {
        gap: 15px !important;
        padding: 15px !important;
    }

    #cartItems .cart-item img {
        width: 130px !important;
        height: 130px !important;
        min-width: 130px !important;
        max-width: 130px !important;
        max-height: 130px !important;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .cart-container {
        width: 94% !important;
        margin: 125px auto 25px !important;
        padding: 0 !important;
    }

    #cartItems {
        margin-top: 0 !important;
    }

    #cartItems .cart-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        padding: 14px !important;
    }

    #cartItems .cart-item img {
        width: 100% !important;
        height: 240px !important;
        min-width: 0 !important;
        max-width: 100% !important;
        max-height: 240px !important;
    }
}

/* =========================================
   ZAHRA COLLECTIONS - PROFESSIONAL MESSAGES
   Global styled replacement for browser alert()
========================================= */

.zc-message-overlay {
    position: fixed;
    inset: 0;
    background: rgba(35, 20, 15, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
    box-sizing: border-box;

    z-index: 999999;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.zc-message-overlay.show {
    opacity: 1;
    visibility: visible;
}

.zc-message-box {
    width: min(420px, 100%);
    background: #fff;
    border-radius: 20px;

    padding: 30px 28px 26px;

    text-align: center;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.22);

    transform: translateY(20px) scale(0.96);
    transition: transform 0.25s ease;

    font-family: "Poppins", sans-serif;
}

.zc-message-overlay.show .zc-message-box {
    transform: translateY(0) scale(1);
}

/* Icon */

.zc-message-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f4e5c7;
    color: #543025;

    font-size: 25px;
}

/* Title */

.zc-message-title {
    margin: 0 0 10px;

    color: #4b2920;

    font-family: "Poppins", sans-serif;
    font-size: 21px;
    font-weight: 600;
}

/* Message */

.zc-message-text {
    margin: 0 auto 24px;

    color: #5f514d;

    font-size: 15px;
    line-height: 1.6;

    max-width: 340px;
}

/* OK button */

.zc-message-btn {
    width: 100%;

    border: none;
    border-radius: 10px;

    padding: 13px 20px;

    background: #cda45d;
    color: #fff;

    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.zc-message-btn:hover {
    background: #b98f48;
    transform: translateY(-1px);
}

.zc-message-btn:active {
    transform: translateY(0);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px) {

    .zc-message-overlay {
        padding: 18px;
    }

    .zc-message-box {
        width: 100%;
        max-width: 350px;

        padding: 26px 20px 22px;

        border-radius: 18px;
    }

    .zc-message-icon {
        width: 52px;
        height: 52px;

        font-size: 22px;

        margin-bottom: 15px;
    }

    .zc-message-title {
        font-size: 19px;
    }

    .zc-message-text {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 20px;
    }

    .zc-message-btn {
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* Hide product descriptions from shop cards */
.product-grid .product-card .product-info > p {
    display: none !important;
}

/* =========================================
   CATEGORY GRID - FINAL FIX
   ONLY AFFECTS CATEGORY SECTION
========================================= */

.categories .category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    width: 100%;
}

/* Category cards */
.categories .category-card {
    position: relative;
    width: 100%;
    height: 170px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
    grid-column: auto;
}

/* Images */
.categories .category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text overlay */
.categories .category-card div {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px;
    text-align: center;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.12)
    );
}

/* Category title */
.categories .category-card h3 {
    margin: 0;
    color: white;
    font-family: "Cinzel", serif;
    font-size: 1.6rem;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}


/* =========================================
   MOBILE
   2 + 2 + 1 LEFT
========================================= */

@media (max-width: 768px) {

    .categories {
        padding: 60px 5%;
    }

    .categories .category-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .categories .category-card {
        grid-column: auto !important;
        width: 100% !important;
        max-width: none !important;
        height: 170px;
    }

    /* Fifth card stays on the LEFT */
    .categories .category-card:nth-child(5) {
        grid-column: auto !important;
        width: 100% !important;
        max-width: none !important;
        justify-self: stretch !important;
    }

}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 480px) {

    .categories {
        padding: 50px 23px;
    }

    .categories .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .categories .category-card {
        height: 165px;
    }

    .categories .category-card h3 {
        font-size: 1.35rem;
    }

}

/* =====================================================
   DESKTOP CATEGORY LAYOUT
   3 TOP + 2 CENTERED BOTTOM
   MOBILE NOT TOUCHED
===================================================== */

@media screen and (min-width: 769px) {

    .categories .category-grid {
        display: grid !important;
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
        gap: 24px !important;
        width: 100% !important;
    }

    /* All category cards */
    .categories .category-card {
        width: 100% !important;
        max-width: none !important;
        height: 320px !important;
        min-width: 0 !important;
        grid-column: span 2 !important;
        overflow: hidden !important;
        border-radius: 20px !important;
    }

    /* TOP ROW — 3 cards */
    .categories .category-card:nth-child(1) {
        grid-column: 1 / span 2 !important;
    }

    .categories .category-card:nth-child(2) {
        grid-column: 3 / span 2 !important;
    }

    .categories .category-card:nth-child(3) {
        grid-column: 5 / span 2 !important;
    }

    /* BOTTOM ROW — 2 centered cards */
    .categories .category-card:nth-child(4) {
        grid-column: 2 / span 2 !important;
    }

    .categories .category-card:nth-child(5) {
        grid-column: 4 / span 2 !important;
    }

    /* Images */
    .categories .category-card img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    /* Text overlay */
    .categories .category-card div {
        width: 100% !important;
        height: 100% !important;
    }

    .categories .category-card h3 {
        margin: 0 !important;
    }
}

/* =========================================================
   ZAHRA COLLECTIONS
   PROFESSIONAL ORDER SUMMARY
   CART PAGE ONLY
   UPDATED - FULL WIDTH ORDER SUMMARY
========================================================= */


/* =========================================================
   MAIN ORDER SUMMARY CARD
========================================================= */

.cart-summary {
    width: 100%;
    max-width: 100%;

    margin: 35px 0 0 0 !important;

    padding: 32px !important;

    background: #ffffff;

    border: 1px solid rgba(75, 46, 37, 0.08);

    border-radius: 22px !important;

    box-shadow:
        0 10px 35px rgba(75, 46, 37, 0.08);

    box-sizing: border-box;

    color: var(--brown);
}


/* =========================================================
   ORDER SUMMARY TITLE
========================================================= */

.cart-summary > h2:first-child {
    margin: 0 !important;

    font-family: "Cinzel", serif;

    font-size: 25px;

    font-weight: 700;

    color: #4b2e25;

    letter-spacing: 0.3px;
}


/* Remove old horizontal line */

.cart-summary > hr {
    border: none !important;

    height: 1px !important;

    margin: 18px 0 22px !important;

    background: #eadfd5;
}


/* Remove old <br> spacing ONLY inside summary */

.cart-summary > br {
    display: none !important;
}


/* =========================================================
   SUBTOTAL / SHIPPING / DISCOUNT ROWS
========================================================= */

.cart-summary > p:not(#discountMessage) {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin: 0 0 14px !important;

    padding: 0 0 14px;

    border-bottom: 1px solid #eee7e1;

    color: #6a5952;

    font-size: 15px;

    line-height: 1.5;
}


/* Prices on right */

.cart-summary > p:not(#discountMessage) span {
    color: #4b2e25;

    font-weight: 600;

    white-space: nowrap;
}


/* =========================================================
   DISCOUNT SECTION
========================================================= */

.cart-summary .discount-box {
    margin: 24px 0 20px !important;

    padding: 20px !important;

    background: #faf7f2;

    border: 1px solid #eee3d8;

    border-radius: 16px;

    box-sizing: border-box;
}


/* Discount heading */

.cart-summary .discount-box label {
    display: block;

    margin: 0 0 10px !important;

    color: #4b2e25;

    font-size: 13px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.8px;
}


/* Override inline flex style */

.cart-summary .discount-box > div {
    display: flex !important;

    flex-direction: row !important;

    align-items: stretch;

    gap: 10px !important;

    margin-top: 0 !important;

    width: 100%;
}


/* Discount input */

.cart-summary #discountCode {
    flex: 1;

    min-width: 0;

    height: 46px;

    padding: 0 14px;

    border: 1px solid #d8c8bb;

    border-radius: 10px;

    background: #ffffff;

    color: #4b2e25;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    box-sizing: border-box;

    transition: 0.25s ease;
}


.cart-summary #discountCode::placeholder {
    color: #aaa09a;
}


.cart-summary #discountCode:focus {
    outline: none;

    border-color: var(--gold);

    box-shadow:
        0 0 0 3px rgba(200, 161, 101, 0.13);
}


/* Apply button */

.cart-summary .discount-box button {
    height: 46px;

    padding: 0 20px;

    border: none;

    border-radius: 10px;

    background: var(--brown);

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.25s ease;

    white-space: nowrap;
}


.cart-summary .discount-box button:hover {
    background: var(--gold);

    transform: translateY(-1px);
}


/* Discount message */

.cart-summary #discountMessage {
    margin: 9px 0 0 !important;

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   DISCOUNT APPLIED ROW
========================================================= */

.cart-summary #discountRow {
    color: #39724a !important;

    border-bottom-color: #e4eee7 !important;
}


.cart-summary #discountAmount {
    color: #39724a !important;

    font-weight: 600;
}


/* =========================================================
   TOTAL
========================================================= */

.cart-summary > h2:last-of-type {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin: 22px 0 0 !important;

    padding: 20px 0 0;

    border-top: 2px solid #eadfd5;

    font-family: "Cinzel", serif;

    font-size: 24px;

    color: #4b2e25;
}


.cart-summary > h2:last-of-type span {
    color: var(--gold);

    font-family: "Poppins", sans-serif;

    font-size: 25px;

    font-weight: 700;

    white-space: nowrap;
}


/* =========================================================
   CUSTOMER DETAILS
========================================================= */

.cart-summary .order-details {
    margin-top: 30px !important;

    padding-top: 25px;

    border-top: 1px solid #eee5de;

    gap: 12px !important;
}


/* Customer Details title */

.cart-summary .order-details h3 {
    margin: 0 0 7px;

    color: #4b2e25;

    font-family: "Cinzel", serif;

    font-size: 19px;

    font-weight: 600;
}


/* Customer inputs */

.cart-summary .order-details input {
    width: 100%;

    height: 48px;

    padding: 0 15px;

    border: 1px solid #ddd1c8;

    border-radius: 10px;

    background: #ffffff;

    color: #4b2e25;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    box-sizing: border-box;

    transition: 0.25s ease;
}


.cart-summary .order-details input::placeholder {
    color: #a69a94;
}


.cart-summary .order-details input:focus {
    outline: none;

    border-color: var(--gold);

    box-shadow:
        0 0 0 3px rgba(200, 161, 101, 0.12);
}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.cart-summary .action-btn {
    width: 100%;

    min-height: 48px;

    height: 48px;

    margin: 0 !important;

    border-radius: 12px;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 0.1px;

    box-sizing: border-box;

    transition: all 0.25s ease;
}


/* WhatsApp */

.cart-summary .whatsapp-order {
    background: #25d366;

    color: #ffffff;

    border: none;

    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.18);
}


.cart-summary .whatsapp-order:hover {
    background: #1fba59;

    transform: translateY(-2px);

    box-shadow: 0 7px 18px rgba(37, 211, 102, 0.25);
}


/* Outline buttons */

.cart-summary .btn-outline {
    background: #ffffff;

    color: #4b2e25;

    border: 1px solid #cdbeb4;
}


.cart-summary .btn-outline:hover {
    background: #faf7f2;

    border-color: var(--gold);

    color: #4b2e25;
}


/* Clear cart */

.cart-summary .remove-btn {
    background: #fff4f4;

    color: #a63333;

    border: 1px solid #efcccc;
}


.cart-summary .remove-btn:hover {
    background: #a63333;

    color: #ffffff;

    border-color: #a63333;
}


/* =========================================================
   DESKTOP
   FULL WIDTH UNDER PRODUCTS
========================================================= */

@media (min-width: 769px) {

    .cart-summary {
        width: 100% !important;

        max-width: 100% !important;

        margin: 35px 0 0 0 !important;

        padding: 34px !important;

        box-sizing: border-box;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .cart-summary {
        width: 100%;

        max-width: 100%;

        margin: 28px 0 0 !important;

        padding: 25px 20px !important;

        border-radius: 20px !important;
    }


    .cart-summary > h2:first-child {
        font-size: 23px;
    }


    .cart-summary > h2:last-of-type {
        font-size: 22px;
    }


    .cart-summary > h2:last-of-type span {
        font-size: 23px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .cart-summary {
        width: 100%;

        margin-top: 22px !important;

        padding: 22px 16px !important;

        border-radius: 18px !important;

        box-shadow:
            0 7px 25px rgba(75, 46, 37, 0.08);
    }


    /* Heading */

    .cart-summary > h2:first-child {
        font-size: 21px;

        letter-spacing: 0;
    }


    /* Rows */

    .cart-summary > p:not(#discountMessage) {
        font-size: 14px;

        margin-bottom: 12px !important;

        padding-bottom: 12px;
    }


    /* Discount box */

    .cart-summary .discount-box {
        padding: 16px !important;

        margin: 20px 0 18px !important;

        border-radius: 14px;
    }


    /* Discount input/button */

    .cart-summary .discount-box > div {
        flex-direction: column !important;

        gap: 9px !important;
    }


    .cart-summary #discountCode {
        width: 100%;

        height: 46px;

        font-size: 14px;
    }


    .cart-summary .discount-box button {
        width: 100%;

        height: 46px;
    }


    /* Total */

    .cart-summary > h2:last-of-type {
        margin-top: 20px !important;

        padding-top: 17px;

        font-size: 20px;
    }


    .cart-summary > h2:last-of-type span {
        font-size: 21px;
    }


    /* Customer details */

    .cart-summary .order-details {
        margin-top: 25px !important;

        padding-top: 21px;
    }


    .cart-summary .order-details h3 {
        font-size: 18px;

        margin-bottom: 6px;
    }


    .cart-summary .order-details input {
        height: 47px;

        font-size: 14px;
    }


    /* Buttons */

    .cart-summary .action-btn {
        height: 48px;

        min-height: 48px;

        font-size: 13.5px;
    }

}