.sticky-wrapper.is-sticky .header_area {
  position: fixed;
}

.logo_h img {
  max-height: 55px;
  width: auto;
}

.single-product .pack-info {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}


/* Footer trimmed to a single line - match the header's height (65px)
   instead of the template's original 80-100px top/bottom padding meant
   for a full multi-column footer. */
.footer-area {
  padding: 0;
  height: 65px;
  display: flex;
  align-items: center;
}

.footer-area .container {
  width: 100%;
}

.footer-area .footer-bottom,
.footer-area .footer-text {
  padding: 0;
}

/* Ambient rocket-burst doodle background */
.rocket-burst-section {
  position: relative;
  overflow: hidden;
}

.rocket-burst-section > .container {
  position: relative;
  z-index: 1;
}

.rocket-burst-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.rocket-shot {
  position: absolute;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%) rotate(var(--rot));
  transition-property: left, top;
  transition-timing-function: ease-in;
  color: #ff6c00;
  opacity: 0.45;
}

.rocket-shot .rocket-doodle-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.rocket-shot.is-burst {
  width: 56px;
  height: 56px;
  transition: none;
  color: #ffba00;
  animation: rocket-doodle-burst 0.85s ease-out forwards;
}

.rocket-shot.is-burst .burst-doodle-icon {
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes rocket-doodle-burst {
  0% {
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0.85;
  }
  55% {
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rocket-burst-layer {
    display: none;
  }
}

/* ==========================================================================
   Yellow theme (dhanyatraders.com look-alike)
   ========================================================================== */

:root {
  --brand-yellow: #ffba00;
  --brand-orange: #ff6c00;
  --brand-dark: #1c1305;
}

/* Every button on the site should read as one family. .primary-btn
   (main.css) was authored entirely for <a> tags: it's a full pill
   (border-radius: 50px), never resets the browser's default <button>
   border, and its hover is a black skewed sweep (.primary-btn:before)
   that either goes fully invisible (narrow buttons) or reads as a dark
   overlay (wide buttons). Rather than patching each button that happens
   to be a real <button> one at a time - which is how the border and
   missing hover on the cart's plain "Checkout" button slipped through -
   fix all of it once on the base class so nothing can miss it again. */
.primary-btn {
  border: 0;
  border-radius: 8px;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s ease,
    box-shadow 0.2s ease;
}

.primary-btn:before {
  content: none;
}

.primary-btn:hover {
  transform: scale(1.03);
  filter: brightness(1.06);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.primary-btn:active {
  transform: scale(0.97);
}

/* main.css also has a more specific ".contact_form .primary-btn { border-
   radius: 0 }" for the original template's contact submit button, which
   beats the rule above on specificity alone - match it here too. */
.contact_form .primary-btn {
  border-radius: 8px;
}

/* Header cart icon */
.cart-nav-item {
  margin-left: 10px;
}

.cart-icon-link {
  display: flex !important;
  align-items: center;
  color: #222 !important;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.cart-icon-link .MuiBadge-badge {
  font-size: 10px;
  height: 16px;
  min-width: 16px;
}

.cart-label {
  display: none;
}

/* Mobile nav: the template renders the collapsed menu as a plain inline
   block with no visual boundary, so it just runs straight into whatever
   is below it. Give it its own floating card instead. */
@media (max-width: 991px) {
  .header_area .navbar-collapse.mobile-menu-panel {
    margin: 0 -15px !important;
    width: calc(100% + 30px);
    padding: 8px !important;
    background: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    border-top: 1px solid #f2f2f2;
  }

  .mobile-menu-panel .menu_nav {
    flex-direction: column;
    /* Beats the "align-items-center" Bootstrap utility class hardcoded on
       this <ul> for the desktop horizontal layout - its !important always
       wins over specificity alone, so this needs !important too. */
    align-items: stretch !important;
  }

  .mobile-menu-panel .nav-item {
    margin-right: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #f5f5f5;
  }

  .mobile-menu-panel .nav-item:last-child {
    border-bottom: 0;
  }

  .mobile-menu-panel .nav-link {
    display: flex !important;
    align-items: center;
    width: 100%;
    gap: 10px;
    padding: 14px 12px !important;
    font-size: 14px !important;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .mobile-menu-panel .nav-item.active .nav-link,
  .mobile-menu-panel .nav-link:hover {
    background: #fff8e6;
    color: var(--brand-orange) !important;
  }

  .mobile-menu-panel .cart-nav-item {
    margin-left: 0 !important;
  }

  .mobile-menu-panel .cart-icon-link {
    width: 100%;
    justify-content: flex-start !important;
  }

  .mobile-menu-panel .cart-label {
    display: inline;
  }
}

/* Hero banner */
.banner-area {
  background: linear-gradient(120deg, #fff3cd 0%, #ffba00 55%, #ff6c00 100%) !important;
  padding-top: 140px;
  padding-bottom: 60px;
}

@media (max-width: 991px) {
  .banner-area {
    padding-top: 110px;
  }
}

.banner-area .banner-content h1,
.banner-area .banner-content p {
  color: #3a2100;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badge {
  background: #fff;
  color: #ff6c00;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

/* Page breadcrumb / hero banners (Contact, Cart) */
.organic-breadcrumb {
  background: linear-gradient(120deg, #ffba00 0%, #ff6c00 100%) !important;
}

.organic-breadcrumb .breadcrumb-banner {
  padding: 70px 0;
}

.organic-breadcrumb .breadcrumb-banner p {
  max-width: 640px;
  margin: 10px auto 0;
  opacity: 0.95;
}

/* Product catalog (homepage) */
.product-catalog-area {
  padding: 60px 0 20px;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 10px;
}

.catalog-toolbar input[type="search"] {
  height: 48px;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  background: #fff;
  flex: 1 1 260px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.catalog-toolbar input[type="search"]:hover {
  border-color: var(--brand-yellow);
}

.catalog-toolbar input[type="search"]:focus {
  outline: none;
  border-color: var(--brand-yellow);
  box-shadow: 0 0 0 3px rgba(255, 186, 0, 0.18);
}

/* Custom dropdown (replaces native <select>, whose open option list can't
   be styled - it renders with the OS's own look, not the site's theme). */
.catalog-toolbar .catalog-select {
  flex: 0 0 220px;
}

.catalog-select {
  position: relative;
}

.catalog-select-trigger {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: #222;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.catalog-select-trigger span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-select-trigger:hover {
  border-color: var(--brand-yellow);
}

.catalog-select-trigger i {
  flex: 0 0 auto;
  color: var(--brand-orange);
  font-size: 12px;
}

.catalog-select[data-open="true"] .catalog-select-trigger {
  border-color: var(--brand-yellow);
  box-shadow: 0 0 0 3px rgba(255, 186, 0, 0.18);
}

.catalog-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 20;
  max-height: 320px;
  overflow-y: auto;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.catalog-select-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.catalog-select-option i {
  flex: 0 0 12px;
  font-size: 11px;
  color: var(--brand-orange);
  opacity: 0;
}

/* Multi-select category list uses checkbox icons, always visible, rather
   than a checkmark that only appears once selected. */
.catalog-select-menu.is-multiple .catalog-select-option i {
  flex: 0 0 14px;
  font-size: 15px;
  color: #ccc;
  opacity: 1;
}

.catalog-select-menu.is-multiple .catalog-select-option.is-selected i {
  color: var(--brand-orange);
}

.catalog-select-option.is-selected {
  background: #fff3d6;
  font-weight: 600;
  color: #7a5a00;
}

.catalog-select-option.is-selected i {
  opacity: 1;
}

.catalog-select-option:hover {
  background: #fdf1d6;
}

.catalog-category-block {
  margin-top: 30px;
}

.category-pill-header {
  position: sticky;
  top: 65px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  border: 0;
  background: linear-gradient(90deg, #ffba00 0%, #ff6c00 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  margin-bottom: 18px;
  transition: filter 0.2s ease;
}

.category-pill-header:hover {
  filter: brightness(1.05);
}

.category-pill-header > span:first-child {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-pill-toggle {
  flex: 0 0 auto;
  font-size: 13px;
  opacity: 0.9;
}

.category-pill-header .category-count {
  font-weight: 500;
  text-transform: none;
  opacity: 0.9;
}

.catalog-empty {
  padding: 20px 0;
  color: #777;
}

/* Product row cards */
.product-row-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-row {
  flex-direction: row !important;
  align-items: center;
  margin-bottom: 0 !important;
  border-radius: 10px;
  overflow: hidden;
}

.product-row-media {
  position: relative;
  flex: 0 0 90px;
}

.product-row .product-row-media img {
  width: 90px;
  height: 90px;
  margin: 0;
  object-fit: contain;
  background: #fff8e1;
  padding: 8px;
}

.product-row .discount-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  background: #ff6c00;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.product-row .product-details {
  flex: 1;
  min-width: 0;
  padding: 10px 16px;
}

.product-row .product-details h6 {
  font-size: 14px;
  margin-bottom: 4px;
}

.product-row .prd-bottom {
  flex: 0 0 auto;
  flex-direction: row !important;
  align-items: center;
  border-top: 0;
  border-left: 1px solid #eee;
  padding: 10px 16px;
}

.quick-add-group {
  display: flex;
  gap: 6px;
  animation: quick-add-pulse 0.25s ease;
}

.quick-add-btn {
  min-width: 42px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid #f2dfa8;
  border-radius: 8px;
  background: #fdf1d6;
  color: #7a5a00;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-add-btn:hover {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
  color: #fff;
  transform: scale(1.03);
}

.quick-add-btn:active {
  transform: scale(0.95);
}

@keyframes quick-add-pulse {
  from {
    transform: scale(0.9);
    opacity: 0.6;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Inline qty stepper shown in place of the quick-add row once a product
   is already in the cart, so it can be adjusted without opening the cart. */
.in-cart-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  animation: quick-add-pulse 0.25s ease;
}

.qty-step-group {
  display: flex;
  align-items: center;
  border: 1px solid #f2dfa8;
  border-radius: 8px;
  overflow: hidden;
}

.qty-step-btn {
  width: 36px;
  height: 38px;
  border: 0;
  background: #fdf1d6;
  color: #7a5a00;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.qty-step-btn:hover {
  background: var(--brand-yellow);
  color: #fff;
}

.qty-step-btn:active {
  background: #e0a800;
}

.qty-step-input {
  width: 54px;
  height: 38px;
  border: 0;
  border-left: 1px solid #f2dfa8;
  border-right: 1px solid #f2dfa8;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: #333;
  background: #fff;
  -moz-appearance: textfield;
}

.qty-step-input::-webkit-outer-spin-button,
.qty-step-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-step-remove {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid #f5d6d6;
  border-radius: 8px;
  background: #fdecec;
  color: #c0392b;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.qty-step-remove:hover {
  background: #f8d7d7;
  transform: scale(1.08);
}

.qty-step-remove:active {
  transform: scale(0.95);
}

.product-row .prd-bottom .add-to-cart-btn.primary-btn {
  min-width: 170px;
  width: auto;
  height: 40px;
  padding: 0 22px;
  line-height: normal;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s ease,
    box-shadow 0.2s ease;
}

.product-row .prd-bottom .add-to-cart-btn.primary-btn:active {
  transform: scale(0.95);
}

/* The reference site's buttons all use a hover:scale-105 + active:scale-95
   micro-interaction; the template's .primary-btn hover is instead a skewed
   shine-sweep sized for wide buttons, which at this width sweeps fully past
   and off, leaving no visible cue - so match the reference's pattern here. */
.product-row .prd-bottom .add-to-cart-btn.primary-btn:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
  box-shadow: 0 6px 16px rgba(255, 108, 0, 0.3);
}

/* Mobile & tablet: keep the thumbnail + details as a compact top row and
   wrap the quick-add / add-to-cart / qty-stepper controls onto their own
   full-width row underneath, instead of stacking everything vertically. */
@media (max-width: 991px) {
  .product-row {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px 14px;
  }

  .product-row .prd-bottom {
    flex: 0 0 100%;
    flex-direction: column !important;
    border-left: 0;
    border-top: 1px solid #eee;
    margin-top: 2px;
    padding-top: 12px;
    width: 100%;
  }

  .quick-add-group {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .quick-add-btn {
    width: 100%;
  }

  .product-row .prd-bottom .add-to-cart-btn.primary-btn {
    width: 100%;
  }

  .in-cart-controls {
    width: 100%;
  }

  .qty-step-group {
    flex: 1;
  }

  .qty-step-btn {
    flex: 1;
  }

  .catalog-toolbar .catalog-select {
    flex: 1 1 100%;
  }

  .category-pill-header {
    /* Stays "sticky" (inherited from the base rule, which already works
       as a positioning context for the absolute chevron below - it does
       not need "relative" here). Setting position:relative on top of the
       inherited top:65px turned that into a plain offset instead of a
       sticky anchor, sliding the header 65px down into the first product
       row while its reserved layout space stayed put, hiding that row. */
    flex-direction: column;
    text-align: center;
    gap: 4px;
    padding-right: 44px;
  }

  .category-pill-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* Floating WhatsApp / Call buttons */
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-action-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.floating-action-btn:hover {
  transform: scale(1.08);
}

.floating-whatsapp {
  background: #25d366;
}

/* Cart popup: a dismissible slide-over panel opened from the header cart
   icon (or the footer's Cart link) - not a page, not a persistent bar. */
.cart-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(20, 12, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.cart-popup-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1101;
  width: 400px;
  max-width: 92vw;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-popup.is-open {
  transform: translateX(0);
}

.cart-popup-header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid #eee;
}

.cart-popup-header h5 {
  margin: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-popup-header h5 .fa-shopping-cart {
  color: var(--brand-orange);
}

.cart-popup-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: #f5f5f5;
  color: #555;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-popup-close:hover {
  background: var(--brand-yellow);
  color: #fff;
}

.cart-popup-items {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 8px 22px;
}

.cart-popup-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #f2f2f2;
}

.cart-popup-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #fff8e1;
  border-radius: 6px;
  padding: 4px;
  flex: 0 0 60px;
}

.cart-popup-item-info {
  flex: 1;
  min-width: 0;
}

.cart-popup-item-info h6 {
  font-size: 14px;
  margin-bottom: 4px;
}

.cart-popup-item-info p {
  margin: 0 0 8px;
  color: var(--brand-orange);
  font-weight: 600;
  font-size: 13px;
}

.cart-popup-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 6px;
}

.cart-popup-qty button {
  width: 28px;
  height: 28px;
  border: 0;
  background: #fdf1d6;
  font-size: 14px;
  cursor: pointer;
}

.cart-popup-qty button:hover {
  background: var(--brand-yellow);
  color: #fff;
}

.cart-popup-qty span {
  display: inline-block;
  min-width: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.cart-popup-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.cart-popup-item-total {
  font-weight: 700;
  font-size: 14px;
}

.cart-popup-remove {
  border: 0;
  background: transparent;
  color: #c0392b;
  cursor: pointer;
  font-size: 15px;
}

.cart-popup-remove:hover {
  color: #e74c3c;
}

.cart-popup-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px;
  color: #777;
  text-align: center;
}

.cart-popup-empty-btn {
  /* .primary-btn (main.css) assumes an <a> tag, which has no default
     border; this is a real <button>, so the browser's default button
     border needs resetting explicitly. */
  border: 0;
  margin-top: 8px;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s ease,
    box-shadow 0.2s ease;
}

/* Cart popup: step 2, customer details form before the WhatsApp handoff */
.cart-popup-back {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  border: 0;
  background: #f5f5f5;
  color: #555;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-popup-back:hover {
  background: var(--brand-yellow);
  color: #fff;
}

.cart-popup-details {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1 1 auto;
}

.cart-popup-details-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 20px 22px;
}

.cart-popup-order-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff8e6;
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 600;
  color: #7a5a00;
  margin-bottom: 20px;
}

.cart-popup-details-body .form-group {
  margin-bottom: 16px;
}

.cart-popup-details-body label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #444;
}

.cart-popup-empty-btn:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
  box-shadow: 0 6px 16px rgba(255, 108, 0, 0.3);
}

.cart-popup-empty-btn:active {
  transform: scale(0.95);
}

.cart-popup-empty .fa-shopping-cart {
  font-size: 34px;
  color: #ddd;
}

.cart-popup-footer {
  flex: 0 0 auto;
  padding: 18px 22px;
  border-top: 1px solid #eee;
}

.cart-popup-subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
}

.cart-popup-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 8px;
}

.cart-popup-continue {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  border: 0;
  color: #777;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}

.cart-popup-continue:hover {
  color: var(--brand-orange);
}

@media (max-width: 480px) {
  .cart-popup {
    width: 100%;
    max-width: 100%;
  }
}

.floating-call {
  background: #ff6c00;
}

/* Footer */
.footer-area {
  height: auto;
  padding: 50px 0 0;
  background: var(--brand-dark);
  color: #f5e6c8;
  display: block;
}

.footer-brand img {
  /* logo-round.png is trimmed to the badge with transparent corners, so no
     cream ring shows on the dark background. */
  height: 56px;
  width: 56px;
  display: block;
  margin-bottom: 16px;
}

/* Columns stack on narrow screens - keep each block clear of the next
   heading (the social icons were touching "Contact Us"). */
.footer-brand-col,
.footer-links-col {
  margin-bottom: 32px;
}

.footer-brand-col p {
  color: #c9b98a;
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-links-col h6 {
  color: var(--brand-yellow);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-col li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #f5e6c8;
}

.footer-links-col li i {
  width: 20px;
  color: var(--brand-yellow);
  margin-right: 6px;
}

.footer-area a,
.footer-cart-link {
  color: #f5e6c8;
  text-decoration: none;
}

.footer-area a:hover,
.footer-cart-link:hover {
  color: var(--brand-yellow);
}

.footer-cart-link {
  background: none;
  border: 0;
  padding: 0;
  font-size: 14px;
  cursor: pointer;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
}

.footer-social-icon:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.footer-social-instagram {
  background: radial-gradient(
    circle at 30% 110%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.footer-social-facebook {
  background: #1877f2;
}

.footer-social-whatsapp {
  background: #25d366;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: #c9b98a;
}

.footer-area .footer-text {
  padding: 0;
}

/* Contact page */
.contact_area {
  padding-top: 60px;
}

@media (max-width: 767px) {
  .contact_area {
    padding-top: 40px;
  }
}

.contact-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.contact-card h5 {
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-card-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-card-item:last-child {
  margin-bottom: 0;
}

.contact-card-item i {
  width: 20px;
  padding-top: 3px;
  color: var(--brand-orange);
  font-size: 16px;
}

.contact-card-item h6 {
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-card-item p {
  margin: 0;
  color: #777;
  font-size: 14px;
}

.quick-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff !important;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s ease,
    box-shadow 0.2s ease;
}

.quick-action-btn:hover {
  transform: scale(1.03);
  filter: brightness(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.quick-action-btn:active {
  transform: scale(0.97);
}

.quick-action-btn:last-child {
  margin-bottom: 0;
}

.quick-action-call {
  background: var(--brand-orange);
}

.quick-action-whatsapp {
  background: #25d366;
}

.quick-action-email {
  background: var(--brand-yellow);
  color: #3a2100 !important;
}

.contact-form-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.contact-form-card h5 {
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-form-subtext {
  color: #777;
  font-size: 14px;
  margin-bottom: 24px;
}

.contact_form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #444;
}

.whatsapp-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 24px;
  line-height: normal;
  background: #25d366 !important;
  border: 0;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-submit-btn:hover {
  transform: scale(1.03);
  filter: brightness(1.08);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-submit-btn:active {
  transform: scale(0.97);
}

.contact-form-note {
  margin: 14px 0 0;
  font-size: 13px;
  color: #777;
  background: #f0fbf4;
  border-radius: 6px;
  padding: 10px 14px;
}

