
/* breadcrumb */

.breadcrumb {
  
  background-color: #f6f6f6;
  font-size: 14px;
  margin: 0 20px;
  
  padding: 20px 20px;
  color: #555;
}
.breadcrumb a {
  text-decoration: none;
  color: #00704a; /* green coffee-tone link */
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #004d2b; /* darker shade on hover */
}

.breadcrumb span {
  margin: 0 6px;
  color: #999;
}

.breadcrumb .current {
  font-weight: 600;
  color: #333;
}

/* product*/
 /* ===== PRODUCT DETAILS 3-COLUMN LAYOUT ===== */
.product-details-3col {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 30px;
  margin: 20px; /* total margin left + right */
}

/* ===== Column 1: Product Gallery ===== */
.product-gallery .main-image {
  aspect-ratio: 1 / 1; /* always square */
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-gallery .main-image img {
  padding: 10px;
  width: 100%;
  height: 100%;
  object-fit: contain; /* show whole image */
}

.product-gallery .thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.product-gallery .thumb {
  aspect-ratio: 1 / 1;
  width: 70px;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-gallery .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* no cropping */
}
.product-gallery .thumb:hover {
  transform: scale(1.05);
}
/* ===== Mobile Responsive Product Gallery ===== */

 
 
/* ===== Column 2: Product Info ===== */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-info .collection a {
  color: #1D435F;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}
.product-info .title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}
 .rating {
  color: #646464;
  font-size: 1rem;
  font-weight: 600;
  display: flex;          /* keeps all spans in one line */
  align-items: center;    /* vertical centering */
  gap: 10px;              /* spacing between items */
}

.rating .star-icons {
  color: #ecec00;         /* gold stars */
  font-weight: normal;
}

.rating .reviews {
  font-weight: normal;
  color: #777;
}
.sale-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #e2e5f5;        /* light red background */
  border: 1px solid #afa6f4;  /* soft border */
  border-radius: 6px;
  padding: 4px 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: black;             /* red text for urgency */
  width: fit-content;
}

.sale-timer i {
  font-size: 1.1rem;
  color: #1D435F;             /* same as text */
}

.sale-timer .label {
  color: #333;                /* neutral for text */
  font-weight: 500;
}

.sale-timer .time {
  font-family: monospace;     /* uniform digits */
  font-weight: 700;
}

 
 
 .price-box {
  display: flex;
  align-items: flex-end; /* Align prices at bottom */
  gap: 15px;
  padding: 12px 16px;
  border-radius: 10px;
  width: fit-content;
}

/* Current Price */
.current-price,
.compared-price {
  display: flex;
  align-items: center; /* vertically align image & text */
  gap: 4px;
}

/* Make currency symbol match the text height */
.current-price .currency-symbol img {
  height: 3em; /* same as current price text */
  width: auto;
}

.compared-price .currency-symbol img {
  height: 2.0em; /* same as compared price text */
  width: auto;
}

/* Text styles */
.current-price .price {
  font-size: 4rem;
  font-weight: 700;
  color: black;
}

.compared-price .price-text {
  font-size: 3.0rem; /* smaller than current price */
  font-weight: 550;
  color: red;
  text-decoration: line-through;
}











.shipping-row {
  display: flex;
  gap: 12px;                 /* little space between badges */
  margin-top: -10px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f5f5f5;
  border-radius: 3px;
  padding: 6px 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  width: fit-content;
}

.badge i {
  color: black;            /* green truck */
}

.badge.fulfilled {
  background: #eaf3ff;       /* light blue for brand */
}

.badge.fulfilled img {
  height: 20px;
  width: auto;
  border-radius: 3px;
}

.colors {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-weight: 600;
}
.color-options {
  display: flex;
  gap: 8px;
  
}
.color-circle {
  width: 22px;
  height: 22px;
  border-radius: 20%;
  border: 1px solid #ccc;
  cursor: pointer;
  margin-top: 4px;
}
.color-circle.black { background: #000; }
.color-circle.red { background: #d32f2f; }
.color-circle.gold { background: gold; }

 .description-box {
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  overflow: hidden;
  margin-top: 20px;
}

.description-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  cursor: pointer;
  background: #f0f0f0;
}

.description-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.description-header i {
  transition: transform 0.3s ease;
  color: #666;
}

.description-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.description-box.active .description-content {
  max-height: 500px; /* enough for text */
  padding: 12px 16px 16px;
}

.description-box.active .description-header i {
  transform: rotate(180deg); /* arrow up */
}


 .policy-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;            /* subtle premium look */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); /* soft professional shadow */
  margin: 0 auto;
  object-fit: cover;
}

/* Optional container for better layout control */
.policy-image-wrapper {
  max-width: 1300px;
  margin: 40px auto;
  padding: 0 16px;
}

 
 /* ============================= */
/* Product Description Section */
/* ============================= */
.product-description-section {
  font-family: 'Arial', sans-serif;
  color: #333;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  max-width: 1350px;
  margin: 30px auto;
  line-height: 1.7;
}

/* Container Flex for Two Columns */
.pd-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================= */
/* Left Column (Main Description) */
/* ============================= */
.pd-left-column {
  flex: 0 0 73%;
}

/* ============================= */
/* Right Column (Desc + Promo) */
/* ============================= */
.pd-right-column {
  flex: 0 0 24%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Right Column Boxes */
.desc-column,
.promo-column {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.desc-column:hover,
.promo-column:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* ============================= */
/* Section Titles & Typography */
/* ============================= */
.pd-section-title {
  font-size: 24px;
  margin: 0 0 20px 0;
  color: #1D435F;
  border-bottom: 3px solid #1D435F;
  padding-bottom: 8px;
}

.pd-intro,
.pd-paragraph {
  font-size: 16px;
  margin-bottom: 25px;
  color: #333;
}

.pd-highlight {
  color: #1D435F;
  font-weight: 600;
}

/* ============================= */
/* Features Grid / Cards */
/* ============================= */
.pd-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.pd-feature-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  font-size: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.pd-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.pd-feature-title {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1D435F;
}

.pd-feature-value {
  font-size: 15px;
  color: #555;
}

/* ============================= */
/* Specs Card/Grid */
/* ============================= */
.pd-specs-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.pd-spec-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 15px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.pd-spec-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pd-spec-item span {
  font-weight: 600;
  color: #1D435F;
}

/* ============================= */
/* Responsive Styles */
/* ============================= */
@media (max-width: 1200px) {
  .product-description-section {
    padding: 30px;
  }
  .pd-section-title {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .product-description-section {
    padding: 25px;
  }
  .pd-left-column,
  .pd-right-column {
    flex: 0 0 100%;
  }
  .pd-section-title {
    font-size: 20px;
  }
  .pd-right-column {
    flex-direction: row;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .product-description-section {
    padding: 20px;
  }
  .pd-intro,
  .pd-paragraph,
  .pd-feature-value,
  .pd-spec-item {
    font-size: 15px;
  }
  .pd-right-column {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .product-description-section {
    padding: 15px;
  }
  .pd-section-title {
    font-size: 18px;
  }
  .pd-feature-card,
  .pd-spec-item,
  .desc-column,
  .promo-column {
    padding: 12px;
  }
  .pd-specs-card,
  .pd-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Column 3: Brand + Shipping Card ===== */
.brand-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.brand-logo {
  aspect-ratio: 1 / 1; /* square logo */
  width: 60px;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* show complete */
}
.brand-meta h3 {
  margin: 0;
  font-size: 1.2rem;
}
.brand-meta p {
  color: #555;
  font-size: 0.9rem;
}

.shipping-info div {
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #444;
}
.shipping-info i {
  margin-right: 6px;
  color: #1D435F;
}

.qty-cart {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* Wrapper with label */
.qty-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.qty-label {
  flex-shrink: 0;
}

/* Quantity Controls */
.qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

/* Input */
.qty-controls input {
  width: 60px;
  height: 42px;
  border: none;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  outline: none;
  background: transparent;
}

/* Square Buttons */
.qty-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 10px;
  background: #f5f5f5;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.qty-btn:hover {
  background: #1D435F;
  color: #fff;
}

.qty-btn:active {
  transform: scale(0.95);
}
.action-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  
  flex-wrap: nowrap; /* keeps them in one line */
}

.add-cart-btn {
  padding: 12px;
  background: #1D435F;
  border: none;
  width: 50%;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.add-cart-btn:hover {
  background: #6d9abf;
}
.product-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;  /* centers icon + text */
  gap: 8px;
   width: 50%;
  background-color: #25d366; /* WhatsApp green */
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.product-whatsapp-btn i {
  font-size: 1.2rem;
  line-height: 1;
}

.product-whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
}

.product-whatsapp-btn:active {
  transform: scale(0.96);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .product-details-3col {
    grid-template-columns: 1fr;
  }
}

 
/* ===== Mobile Responsive Product Page ===== */
@media (max-width: 768px) {
  /* Breadcrumb */
  .breadcrumb {
    margin: 10px;
    padding: 12px;
    font-size: 13px;
  }
  .breadcrumb a {
    font-size: 13px;
  }




  /* ===== Product Details Column Layout ===== */
  .product-details-3col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 10px;
  }

  /* ===== Column 1: Product Gallery ===== */
   .product-gallery .main-image {
    width: 60%;            /* smaller width */
    margin: 0 auto;        /* center horizontally */
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    padding: 5px;
  }

  .product-gallery .main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }
  .product-gallery .thumbnails {
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
  }
  .product-gallery .thumb {
    width: 50px;
    height: 50px;
    border-radius: 6px;
  }

  /* ===== Column 2: Product Info ===== */
  .product-info {
    gap: 10px;
  }
  .product-info .title {
    font-size: 1.3rem;
  }
  .rating {
    font-size: 0.9rem;
    gap: 6px;
  }
  .sale-timer {
    font-size: 0.85rem;
    padding: 4px 6px;
  }
  .price-box {
    flex-direction: column;
    gap: 8px;
  }
  .current-price .price {
    font-size: 2.5rem;
  }
  .compared-price {
    font-size: 0.85rem;
  }
  .discount {
    font-size: 0.85rem;
  }
  .shipping-row {
    flex-wrap: wrap;
    gap: 6px;
  }
  .badge {
    font-size: 0.85rem;
    padding: 4px 8px;
  }
  .colors {
    flex-wrap: wrap;
  }
  .color-circle {
    width: 20px;
    height: 20px;
  }

  /* Description Box */
  .description-box {
    margin-top: 15px;
  }
  .description-header h3 {
    font-size: 1rem;
  }
  .description-content {
    font-size: 0.9rem;
  }

  /* ===== Column 3: Brand + Shipping Card ===== */
  .brand-card {
    padding: 15px;
  }
  .brand-logo {
    width: 50px;
    aspect-ratio: 1 / 1;
  }
  .brand-meta h3 {
    font-size: 1rem;
  }
  .brand-meta p {
    font-size: 0.85rem;
  }
  .shipping-info div {
    font-size: 0.85rem;
  }

  /* ===== Quantity & Buttons ===== */
  .qty-wrapper {
    gap: 8px;
  }
  .qty-controls input {
    width: 50px;
    height: 36px;
    font-size: 0.9rem;
  }
  .qty-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .add-cart-btn {
    font-size: 0.95rem;
    padding: 10px;
  }
  .product-whatsapp-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

/* Submit Button */
 
/* Responsive */
@media (max-width: 768px) {
  .review-container {
    flex-direction: column;
  }
  .review-summary {
    flex: none;
  }
}
  .related-products {
  margin: 40px 20px;
  position: relative; /* for scroll buttons */
}

.related-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #333;
}

/* Scroll Buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s ease, color 0.2s ease;
}

.scroll-btn:hover {
  background: #1D435F;
  color: #fff;
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}

/* Wrapper with horizontal scroll */
.related-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
  padding-bottom: 6px;
}

.related-wrapper:active {
  cursor: grabbing;
}

/* Slider row */
.related-slider {
  display: flex;
  gap: 12px;
  min-width: max-content;
}

/* Product Card */
.related-card {
  flex: 0 0 calc(15.38% - 12px); /* 6.5 cards visible */
  max-width: 200px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.related-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f9f9f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.related-image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.related-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 4px;
  line-height: 1.2rem;
  
  /* Limit to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.2rem * 3);
}

.related-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0056b3;
}

.related-price .compare-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: #989898;
}

/* Hide Scrollbar */
.related-wrapper::-webkit-scrollbar {
  display: none;
}

.related-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Responsive Breakpoints */
@media (max-width: 1400px) {
  .related-card {
    flex: 0 0 calc(20% - 12px);
    max-width: 200px;
  }
}

@media (max-width: 992px) {
  .related-card {
    flex: 0 0 calc(25% - 12px);
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .related-card {
    flex: 0 0 calc(33.33% - 12px);
    max-width: 200px;
  }
}

@media (max-width: 600px) {
  .related-card {
    flex: 0 0 calc(50% - 12px);
    max-width: 200px;
  }

  /* Hide scroll buttons on small devices */
  .scroll-btn {
    display: none;
  }
}


/* ===== Al Diwan Footer ===== */
 .footer-icons {
  display: flex;
  justify-content: flex-start; /* or center if you want them centered */
  gap: 20px; /* spacing between icons */
  margin-top: 20px;
}

.footer-icons a img {
  width: 100px;
  height: 100px;
  object-fit: contain; /* ensures icon doesn't stretch */
  transition: transform 0.3s;
}

.footer-icons a img:hover {
  transform: scale(1.05);
}
.site-footer {
  background: #fafafa;
  padding: 50px 20px 30px;
  font-family: Arial, sans-serif;
  color: #333;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

/* === Columns === */
.footer-col {
  flex: 1 1 160px;
  min-width: 160px;
}

.footer-logo {
  flex: 1 1 320px;          /* 🔵 wider first column */
  max-width: 100%;
}

.footer-logo img {
  width: 260px;             /* 🔵 wider logo */
  margin-bottom: 15px;
}

.footer-logo p {
  line-height: 1.6;
   
  font-size: 15px;
  margin-top: 10px;
}

/* === Headings === */
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #222;
  font-weight: 600;
}

/* === Lists === */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #1D435F;           /* 🔵 blue hover */
  text-decoration: none;    /* no underline */
}

/* === Request Quote Button === */
.quote-btn {
  display: inline-block;
  background: #1D435F;       /* blue button */
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  margin: 8px 0;
  transition: background 0.3s ease;
}

.quote-btn:hover {
  background: #0056b3;       /* darker blue on hover */
}


.support-inline-section {
  background: #fafafa;
  padding: 10px 2px;
  font-family: Arial, sans-serif;
  
}

.support-inline-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left intro text */
.support-intro h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: black;
}
.support-intro p {
  color: #555;
  font-size: 1rem;
  margin: 0;
}

/* Right items row */
.support-inline-items {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* Each item: icon + text side by side */
.support-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}

.support-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1D435F;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.support-text {
  font-size: 0.95rem;
  line-height: 1.3;
  color: black;
}
.support-text a {
  color: black;
  text-decoration: none;
}
.support-text a:hover {
  text-decoration: underline;
}
.support-text small {
  font-size: 0.8rem;
  color: #777;
}

/* Responsive */
@media (max-width: 992px) {
  .support-inline-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .support-inline-items {
    justify-content: flex-start;
  }
}
/* === Bottom Bar === */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #777;
}

/* === Responsive === */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
  .footer-logo {
    max-width: 100%;
  }
}


/* ==== Product Loading State ==== */
#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9); /* white with 80% opacity */
  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #007bff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

/* ===== Mobile Responsive Fixed-Size Product Gallery ===== */
@media (max-width: 768px) {
    
    breadcrumb {
    font-size: 13px;
    margin: 0 10px;
    padding: 12px 10px;
    white-space: nowrap;
  }

  .breadcrumb span {
    margin: 0 4px;
  }
  .product-details-3col {
    display: block;       /* stack columns vertically */
    margin: 0;
    padding: 0;
    width: 100%;
    gap: 0;
  }

  /* Fixed size main image container */
   

  /* Thumbnails scrollable */
  .product-gallery .thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    padding: 5px 0;
    -webkit-overflow-scrolling: touch;
  }

  .product-gallery .thumb {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-gallery .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;    /* fill thumbnail completely */
  }

  .product-gallery .thumb:hover {
    transform: scale(1.05);
  }
    .product-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 10px;        /* some horizontal padding */
  }

  .product-info .collection a {
    font-size: 0.85rem;      /* smaller but readable */
    font-weight: 600;
    color: #1D435F;
  }

  .product-info .title {
    font-size: 1.25rem;      /* slightly smaller */
    font-weight: 700;
    color: #333;
    line-height: 1.3;        /* better spacing on mobile */
  }

  .rating {
    font-size: 0.9rem;
    gap: 6px;
  }

  .rating .star-icons {
    font-size: 1rem;
  }

  .rating .reviews {
    font-size: 0.85rem;
    color: #777;
  }

  .sale-timer {
    font-size: 0.85rem;
    padding: 3px 6px;
    gap: 5px;
    border-radius: 5px;
    width: fit-content;
  }

  .sale-timer i {
    font-size: 1rem;
  }

  .sale-timer .label {
    font-weight: 500;
    font-size: 0.85rem;
  }

  .sale-timer .time {
    font-size: 0.9rem;
    font-weight: 700;
  }

  /* ===== Price Box ===== */
  .price-box {
    flex-direction: column;      /* stack current and compared price */
    align-items: flex-start;     /* left-align for mobile */
    gap: 6px;
    padding: 8px 10px;
    border-radius: 8px;
  }

  .current-price .price {
    font-size: 2.5rem;           /* scale down for mobile */
  }

  .current-price .currency-symbol img {
    height: 2.5rem;              /* match price text */
  }

  .compared-price .price-text {
    font-size: 1.5rem;
  }

  .compared-price .currency-symbol img {
    height: 1.8rem;
  }
  .shipping-info div {
  display:none;
}

.description-box {
    border: 1px solid #ccc;      /* thinner, lighter border */
    border-radius: 6px;          /* slightly rounded corners */
    background: #fff;
    overflow: hidden;
    margin-top: 16px;
    width: 100%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05); /* subtle shadow for depth */
  }

 
.description-header {
    display: none;
  }
 
  .description-header h3 {
    display: none;
  }

  .description-header i {
    display: none;
  }

  .description-box {
    border: 1px solid #ccc;       /* professional thick border */
    border-radius: 6px;           /* slightly rounded corners */
    background: #fff;             /* clean white background */
    padding: 12px 16px;           /* inner spacing */
    margin-top: 16px;             /* spacing from other elements */
    box-shadow: 0 2px 6px rgba(0,0,0,0.05); /* subtle shadow */
    width: 100%;
  }

  .description-content {
    font-size: 0.95rem;           /* readable text */
    color: #444;
    line-height: 1.5;
  }

  
.brand-info {
    display: none;
}
  
.shipping-info i {
  margin-right: 6px;
  color: #1D435F;
}
}

