/**
 * Custom Theme CSS - Putra Elektronik
 * Natural Titanium Premium Theme
 *
 * Warna Utama:
 * - Primary Color: #dadce0 (Warna utama - button, link, accent)
 * - Text Color: #000000 (Warna teks hitam)
 * - Light Gray: #C8CACF (Background kartu produk, border)
 * - Pure White: #FFFFFF (Background utama)
 * - Off White: #F5F5F7 (Background alternatif, section separator)
 * - Success Green: #34C759 (Badge "Ready Stock")
 * - Warm Gold: #D4AF37 (Badge "Promo")
 */

/* ========================================
   PRODUCT COMPARISON STYLES
   ======================================== */

/* Comparison Icon in Header */
.header-icon .comparison-count {
  background-color: #34C759;
  color: #fff;
  font-size: 10px;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: 8px;
  right: 8px;
  font-weight: 600;
}

/* Comparison Modal */
.comparison-product-header {
  padding: 10px;
}

.comparison-product-header img {
  max-height: 100px;
  object-fit: contain;
  margin-bottom: 8px;
}

.product-name-small {
  font-size: 13px;
  line-height: 1.3;
  max-height: 35px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.comparison-table {
  margin-bottom: 20px;
}

.comparison-table-main th {
  background-color: #dadce0;
  color: #000;
  font-weight: 600;
  border: 1px solid #c5c7cc;
  padding: 12px 8px;
  vertical-align: top;
}

.comparison-table-main td {
  border: 1px solid #e1e4e8;
  padding: 12px 8px;
  vertical-align: middle;
}

.comparison-table-main .price-cell,
.comparison-table-main .stock-cell,
.comparison-table-main .spec-cell,
.comparison-table-main .action-cell {
  min-width: 120px;
}

.comparison-table-main .price-cell .product-price {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

.comparison-table-main .price-cell .old-price {
  font-size: 12px;
}

.comparison-table-main tr:hover td {
  background-color: #f8f9fa;
}

/* Comparison Buttons */
.btn-outline-danger {
  border-color: #ff3b30;
  color: #ff3b30;
}

.btn-outline-danger:hover,
.btn-outline-danger:focus {
  background-color: #ff3b30;
  border-color: #ff3b30;
  color: #fff;
}

.btn-outline-primary {
  border-color: #007aff;
  color: #007aff;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: #007aff;
  border-color: #007aff;
  color: #fff;
}

/* Product Detail Page Comparison Button */
.add-comparison {
  background-color: #007aff;
  border-color: #007aff;
  color: #fff;
}

.add-comparison:hover,
.add-comparison:focus {
  background-color: #0051d5;
  border-color: #0051d5;
  color: #fff;
}

.remove-comparison {
  background-color: #ff3b30;
  border-color: #ff3b30;
  color: #fff;
}

.remove-comparison:hover,
.remove-comparison:focus {
  background-color: #d70015;
  border-color: #d70015;
  color: #fff;
}

/* Comparison Mobile Responsive */
@media (max-width: 767px) {
  .comparison-table {
    font-size: 12px;
  }

  .comparison-table-main th,
  .comparison-table-main td {
    padding: 8px 4px;
  }

  .product-name-small {
    font-size: 11px;
  }

  .comparison-product-header img {
    max-height: 60px;
  }
}

/* Comparison Loading State */
.comparison-container .text-center {
  padding: 40px;
}

.comparison-container .spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #007aff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 10px;
  vertical-align: middle;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Badge Circle for Comparison Count */
.badge-circle {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  font-size: 10px;
  line-height: 18px;
  border-radius: 9px;
  text-align: center;
  font-weight: bold;
  background-color: #34C759;
  color: #fff;
  border: 2px solid #fff;
}

/* ========================================
   PRIMARY COLOR
   ======================================== */

/* Button Primary */
.btn-primary {
  border-color: #dadce0 !important;
  background-color: #dadce0 !important;
  color: #000 !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  border-color: #c5c7cc !important;
  background-color: #c5c7cc !important;
  color: #000 !important;
}

.btn-primary.disabled,
.btn-primary:disabled {
  border-color: #dadce0 !important;
  background-color: #dadce0 !important;
  color: #000 !important;
  opacity: 0.65;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
  border-color: #b0b2b8 !important;
  background-color: #b0b2b8 !important;
  color: #000 !important;
}

/* Background Primary */
.bg-primary {
  background-color: #dadce0 !important;
}

/* Text Primary */
.text-primary {
  color: #000 !important;
}

/* Border Primary */
.border-primary {
  border-color: #dadce0 !important;
}

/* Links */
a.text-primary:hover,
a.text-primary:focus {
  color: #000 !important;
}

/* ========================================
   SECONDARY COLOR (WARM GOLD)
   ======================================== */

/* Button Secondary */
.btn-secondary {
  border-color: #D4AF37 !important;
  background-color: #D4AF37 !important;
  color: #000 !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  border-color: #B8942E !important;
  background-color: #B8942E !important;
  color: #000 !important;
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  border-color: #D4AF37 !important;
  background-color: #D4AF37 !important;
  color: #000 !important;
  opacity: 0.65;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show>.btn-secondary.dropdown-toggle {
  border-color: #9D7B26 !important;
  background-color: #9D7B26 !important;
  color: #fff !important;
}

/* Background Secondary */
.bg-secondary {
  background-color: #D4AF37 !important;
}

/* Text Secondary */
.text-secondary {
  color: #000 !important;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

/* Top Notice Bar */
.top-notice.bg-primary {
  background-color: #dadce0 !important;
  color: #000 !important;
}

/* Header Background */
.header {
  background-color: #dadce0 !important;
  color: #000 !important;
}

.header a {
  color: #000 !important;
}

/* Hide Header Top on Mobile */
@media (max-width: 767px) {
  .header .header-top {
    display: none !important;
  }
}

/* Mobile Menu Toggle Button */
button.mobile-menu-toggler,
.mobile-menu-toggler {
  color: #000 !important;
  background: transparent !important;
  border: none !important;
  font-size: 28px !important;
  padding: 0.5rem 0.8rem !important;
  margin-right: 0.5rem !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 1000 !important;
  width: auto !important;
  height: auto !important;
  min-width: 45px !important;
  min-height: 45px !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

button.mobile-menu-toggler.text-primary,
.mobile-menu-toggler.text-primary {
  color: #000 !important;
}

button.mobile-menu-toggler:hover,
.mobile-menu-toggler:hover {
  color: #000 !important;
  background: rgba(0, 0, 0, 0.1) !important;
  border-radius: 4px !important;
}

button.mobile-menu-toggler:focus,
.mobile-menu-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* FontAwesome Icon Styling */
button.mobile-menu-toggler i,
.mobile-menu-toggler i,
button.mobile-menu-toggler .fa-bars,
.mobile-menu-toggler .fa-bars,
button.mobile-menu-toggler .fas,
.mobile-menu-toggler .fas {
  color: inherit !important;
  font-size: 28px !important;
  line-height: 1 !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-weight: 900 !important;
}

/* Header Links Hover */
.header a:hover,
.main-nav a:hover {
  color: #666 !important;
}

/* Sticky Header */
.sticky-header.fixed {
  background-color: #dadce0 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* ========================================
   PRODUCT ELEMENTS
   ======================================== */

/* Product Labels */
.product-label.label-hot {
  background-color: #D4AF37 !important;
  color: #000 !important;
}

/* Product Prices */
.product-price .new-price {
  color: #000 !important;
  font-weight: 700;
}

/* Add to Cart Button */
.btn-product.btn-cart {
  background-color: #dadce0 !important;
  border-color: #dadce0 !important;
}

.btn-product.btn-cart:hover {
  background-color: #c5c7cc !important;
  border-color: #c5c7cc !important;
}

/* Wishlist Button */
.btn-product-icon.btn-wishlist:hover {
  background-color: #dadce0 !important;
  border-color: #dadce0 !important;
}

/* ========================================
   BUTTONS & INTERACTIVE ELEMENTS
   ======================================== */

/* Outline Primary Button */
.btn-outline-primary {
  color: #000 !important;
  border-color: #dadce0 !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: #000 !important;
  background-color: #dadce0 !important;
  border-color: #dadce0 !important;
}

/* Outline Secondary Button */
.btn-outline-secondary {
  color: #000 !important;
  border-color: #dadce0 !important;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  color: #000 !important;
  background-color: #dadce0 !important;
  border-color: #dadce0 !important;
}

/* ========================================
   BADGES & LABELS
   ======================================== */

/* Badge Primary */
.badge-primary {
  background-color: #dadce0 !important;
  color: #000 !important;
}

/* Badge Secondary */
.badge-secondary {
  background-color: #D4AF37 !important;
  color: #000 !important;
}

/* Badge Success - Ready Stock */
.badge-success {
  background-color: #34C759 !important;
  color: #000 !important;
}

/* Badge Circle (Cart Count, Wishlist Count) */
.badge-circle {
  background-color: #dadce0 !important;
  color: #000 !important;
}

/* ========================================
   FORMS & INPUTS
   ======================================== */

/* Input Focus */
.form-control:focus {
  border-color: #dadce0 !important;
  box-shadow: 0 0 0 0.2rem rgba(218, 220, 224, 0.25) !important;
}

/* Checkbox & Radio Checked */
.custom-control-input:checked~.custom-control-label::before {
  background-color: #dadce0 !important;
  border-color: #dadce0 !important;
}

/* ========================================
   ALERTS & NOTIFICATIONS
   ======================================== */

/* Alert Success */
.alert-success {
  background-color: rgba(52, 199, 89, 0.1) !important;
  border-color: #34C759 !important;
  color: #000 !important;
}

/* Alert Danger */
.alert-danger {
  background-color: rgba(255, 59, 48, 0.1) !important;
  border-color: #FF3B30 !important;
  color: #000 !important;
}

/* ========================================
   PAGINATION
   ======================================== */

.page-link {
  color: #000 !important;
}

.page-link:hover {
  color: #000 !important;
  background-color: #F5F5F7 !important;
  border-color: #C8CACF !important;
}

.page-item.active .page-link {
  background-color: #dadce0 !important;
  border-color: #dadce0 !important;
  color: #000 !important;
}

/* ========================================
   CAROUSEL & SLIDER
   ======================================== */

/* Owl Carousel Dots */
.owl-carousel .owl-dot.active span {
  background-color: #dadce0 !important;
}

/* Owl Carousel Nav */
.owl-carousel .owl-nav button:hover {
  background-color: #dadce0 !important;
  color: #000 !important;
}

/* ========================================
   LOGO STYLING
   ======================================== */

/* Header Logo */
.header .logo img {
  max-height: 50px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

/* Responsive Logo */
@media (max-width: 991px) {
  .header .logo img {
    max-height: 40px !important;
  }
}

@media (max-width: 575px) {
  .header .logo img {
    max-height: 35px !important;
  }
}

/* Sticky Header Logo */
.sticky-header.fixed .logo img {
  max-height: 45px !important;
}

/* Logo Text Styling */
.header .logo-text {
  line-height: 1.1;
  margin-left: 0.5rem;
}

.header .logo-text div {
  font-size: 16px;
  font-weight: 800;
  color: #000;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive Logo Text */
@media (max-width: 991px) {
  .header .logo-text div {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .header .logo-text {
    margin-left: 0.3rem;
  }

  .header .logo-text div {
    font-size: 11px;
    letter-spacing: 0.3px;
  }
}

@media (max-width: 575px) {
  .header .logo-text {
    margin-left: 0.25rem;
  }

  .header .logo-text div {
    font-size: 10px;
    letter-spacing: 0.2px;
  }
}

/* Sticky Header Logo Text */
.sticky-header.fixed .logo-text div {
  font-size: 15px;
}

/* ========================================
   BANNER SLIDER FULL WIDTH
   ======================================== */

/* Full Width Slider Container */
.intro-slider-container {
  position: relative;
  width: 100%;
  background-color: #F5F5F7;
}

/* Slider Image Full Width */
.intro-slider .slide-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 600px;
}

/* Intro Content Positioning */
.intro-slider .intro-content {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

/* Intro Subtitle */
.intro-slider .intro-subtitle {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

/* Responsive Banner Slider */
@media (max-width: 991px) {
  .intro-slider .slide-image img {
    max-height: 450px;
  }

  .intro-slider .intro-subtitle {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .intro-slider .slide-image img {
    max-height: 350px;
  }

  .intro-slider .intro-content {
    left: 3%;
    right: 3%;
  }

  .intro-slider .intro-subtitle {
    font-size: 1.5rem;
  }
}

@media (max-width: 575px) {
  .intro-slider .slide-image img {
    max-height: 280px;
  }

  .intro-slider .intro-subtitle {
    font-size: 1.2rem;
  }

  .btn-primary {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

/* ========================================
   OWL CAROUSEL NAVIGATION (ARROWS + DOTS)
   ======================================== */

/* Navigation Arrows */
.intro-slider.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.intro-slider.owl-carousel .owl-nav button.owl-prev,
.intro-slider.owl-carousel .owl-nav button.owl-next {
  background-color: rgba(218, 220, 224, 0.9) !important;
  color: #000 !important;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 4px 12px rgba(218, 220, 224, 0.3);
  border: 2px solid transparent;
}

.intro-slider.owl-carousel .owl-nav button.owl-prev:hover,
.intro-slider.owl-carousel .owl-nav button.owl-next:hover {
  background-color: #c5c7cc !important;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(218, 220, 224, 0.5);
  border-color: rgba(0, 0, 0, 0.3);
}

.intro-slider.owl-carousel .owl-nav button.owl-prev:active,
.intro-slider.owl-carousel .owl-nav button.owl-next:active {
  transform: scale(0.95);
}

/* Arrow Icons */
.intro-slider.owl-carousel .owl-nav button.owl-prev::before {
  content: "‹";
  font-size: 36px;
  font-weight: 300;
}

.intro-slider.owl-carousel .owl-nav button.owl-next::before {
  content: "›";
  font-size: 36px;
  font-weight: 300;
}

/* Dots Pagination */
.intro-slider.owl-carousel .owl-dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.intro-slider.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 6px;
}

.intro-slider.owl-carousel .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.6) !important;
  border: 2px solid #dadce0;
  display: block;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.intro-slider.owl-carousel .owl-dots .owl-dot:hover span {
  background-color: rgba(218, 220, 224, 0.7) !important;
  transform: scale(1.2);
}

.intro-slider.owl-carousel .owl-dots .owl-dot.active span {
  background-color: #dadce0 !important;
  width: 14px;
  height: 14px;
  border-color: #000;
  box-shadow: 0 0 10px rgba(218, 220, 224, 0.6);
}

/* Responsive Navigation */
@media (max-width: 767px) {

  /* Hide arrows on mobile, show dots only */
  .intro-slider.owl-carousel .owl-nav {
    display: none;
  }

  .intro-slider.owl-carousel .owl-dots {
    bottom: 15px;
  }

  .intro-slider.owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
  }

  .intro-slider.owl-carousel .owl-dots .owl-dot.active span {
    width: 12px;
    height: 12px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {

  /* Smaller arrows on tablet */
  .intro-slider.owl-carousel .owl-nav button.owl-prev,
  .intro-slider.owl-carousel .owl-nav button.owl-next {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/* Remove intro-content (deprecated) */
.intro-slider .intro-content {
  display: none;
}

/* ========================================
   CLICKABLE BANNER
   ======================================== */

/* Banner Link Wrapper */
.intro-slider .banner-link-wrapper {
  display: block;
  position: relative;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.intro-slider .banner-link-wrapper:hover {
  opacity: 0.95;
}

/* Hover Effect - Overlay */
.intro-slider .banner-link-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(218, 220, 224, 0.1) 0%,
      rgba(218, 220, 224, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.intro-slider .banner-link-wrapper:hover::after {
  opacity: 1;
}

/* Banner Image in Link */
.intro-slider .banner-link-wrapper .slide-image {
  margin: 0;
  transition: transform 0.3s ease;
}

.intro-slider .banner-link-wrapper:hover .slide-image {
  transform: scale(1.02);
}

/* Click Indicator (Optional) */
.intro-slider .banner-link-wrapper:active .slide-image {
  transform: scale(0.98);
}

/* Ensure figure margin is reset */
.intro-slider figure.slide-image {
  margin: 0;
}

/* ========================================
   BRAND SLIDER SECTION
   ======================================== */

/* Brand Slider Section */
.brand-slider-section {
    padding: 3rem 0 4rem;
    background-color: #ffffff;
    position: relative;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.brand-slider-section .section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    position: relative;
}

/* Visual separator between sections */
.section-divider {
    position: relative;
    height: 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb 30%, #e5e7eb 70%, transparent);
    transform: translateY(-50%);
}

.section-divider::after {
    content: '•••';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #cbd5e1;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    padding: 0 1rem;
}

/* Brand Card Styles */
.brand-card {
    height: 100px;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.brand-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-color: #60a5fa;
}

.brand-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.brand-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Brand Name Text (fallback if no logo) */
.brand-card .brand-name-text {
    font-size: 14px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-name-text {
    color: #374151;
    transform: scale(1.05);
}

/* Owl Carousel Navigation Customization */
.brands-slider.owl-carousel .owl-nav button.owl-prev,
.brands-slider.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.2s;
    outline: none;
    z-index: 10;
    color: #374151 !important;
    font-size: 20px;
}

.brands-slider.owl-carousel .owl-nav button.owl-prev:hover,
.brands-slider.owl-carousel .owl-nav button.owl-next:hover {
    background-color: #f9fafb !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.brands-slider.owl-carousel .owl-nav button.owl-prev {
    left: -15px;
}

.brands-slider.owl-carousel .owl-nav button.owl-next {
    right: -15px;
}

.brands-slider.owl-carousel .owl-nav button span {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

/* Fix for clipping shadows */
.brands-slider.owl-stage-outer {
    padding: 10px 0;
    margin: -10px 0;
    overflow: hidden;
}

/* Ensure Owl Carousel displays multiple items properly */
.brands-slider.owl-carousel {
    display: block !important;
}

.brands-slider .owl-stage-outer {
    overflow: hidden;
}

.brands-slider .owl-stage {
    display: flex !important;
}

/* Responsive Brand Slider */
@media (max-width: 1199px) {
    .brands-slider.owl-carousel .owl-nav button.owl-prev {
        left: -10px;
    }

    .brands-slider.owl-carousel .owl-nav button.owl-next {
        right: -10px;
    }
}

/* Responsive Section Divider */
@media (max-width: 768px) {
    .section-divider {
        height: 40px;
    }

    .section-divider::after {
        font-size: 1rem;
        letter-spacing: 0.3rem;
    }
}@media (max-width: 991px) {
  .brand-slider-section {
    padding: 2rem 0;
  }

  .brand-slider-section .section-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .brand-card {
    height: 90px;
    padding: 1.25rem;
  }
}

@media (max-width: 767px) {
  .brands-slider.owl-carousel .owl-nav {
    display: none;
  }

  .brand-slider-section {
    padding: 1.5rem 0;
  }

  .brand-slider-section .section-title {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .brand-card {
    height: 80px;
    padding: 1rem;
  }
}

/* ========================================
   FEATURED PRODUCTS SECTION (DEMO4 STYLE)
   ======================================== */

/* Section Styling */
.featured-products-section {
  padding: 3rem 0;
  background-color: #F5F5F7;
}

/* Section Title */
.section-title.heading-border {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #000;
  position: relative;
  padding-bottom: 1rem;
}

.section-title.heading-border::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #dadce0 0%, #dadce0 100%);
}

/* Product Default (Demo4 Style) - Option A: Fixed Height */
.product-default {
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #C8CACF;
  overflow: hidden;
}

.product-default:hover {
  box-shadow: 0 8px 24px rgba(218, 220, 224, 0.15);
  transform: translateY(-4px);
  border-color: #dadce0;
}

.product-default figure {
  position: relative;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 8px;
  height: 280px;
  width: 100%;
  background-color: #F5F5F7;
}

.product-default figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-default:hover figure img {
  transform: scale(1.08);
}

/* Label Group */
.product-default .label-group {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-default .product-label {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

.product-default .label-hot {
  background-color: #D4AF37;
  color: #000;
}

.product-default .label-sale {
  background-color: #dadce0;
  color: #000;
}

.product-default .label-out {
  background-color: #dadce0;
  color: #000;
}

/* Product Details */
.product-default .product-details {
  text-align: left;
  padding: 0 15px 15px 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-default .category-list {
  margin-bottom: 0.5rem;
}

.product-default .product-category {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  display: inline-block;
}

.product-default .product-category:hover {
  color: #000;
}

.product-default .product-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.product-default .product-title a {
  color: #000;
  transition: color 0.3s;
}

.product-default .product-title a:hover {
  color: #666;
}

/* Price Box */
.product-default .price-box {
  margin-bottom: 1rem;
  min-height: 24px;
}

.product-default .old-price {
  font-size: 13px;
  color: #666;
  text-decoration: line-through;
  margin-right: 8px;
}

.product-default .product-price {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

/* Product Action */
.product-default .product-action {
  display: flex;
  gap: 5px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
  margin-top: 0.8rem;
}

.product-default .btn-icon-wish,
.product-default .btn-quickview {
  width: 36px;
  height: 36px;
  background-color: #F5F5F7;
  border: 1px solid #C8CACF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5A5D62;
  transition: all 0.3s;
}

.product-default .btn-icon-wish:hover {
  background-color: #dadce0;
  border-color: #dadce0;
  color: #000;
}

.product-default .btn-quickview:hover {
  background-color: #dadce0;
  border-color: #dadce0;
  color: #000;
}

/* Ensure quickview button works as normal link (no modal) */
.product-default .btn-quickview {
  cursor: pointer;
  text-decoration: none;
}

.product-default .btn-quickview:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(218, 220, 224, 0.2);
}

.product-default .btn-add-cart {
  width: 100%;
  height: 40px;
  background-color: #dadce0;
  color: #000;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
  padding: 0 15px;
  text-decoration: none;
}

.product-default .btn-add-cart:hover {
  background-color: #c5c7cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(218, 220, 224, 0.3);
}

.product-default .btn-add-cart.disabled {
  background-color: #dadce0;
  cursor: not-allowed;
}

.product-default .btn-add-cart.disabled:hover {
  transform: none;
  box-shadow: none;
}

.product-default .btn-add-cart i {
  font-size: 14px;
}

/* Owl Carousel Navigation for Products Slider */
.products-slider.owl-carousel .owl-nav button.owl-prev,
.products-slider.owl-carousel .owl-nav button.owl-next {
  width: 45px;
  height: 45px;
  background-color: rgba(218, 220, 224, 0.9) !important;
  color: #000 !important;
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
}

.products-slider.owl-carousel .owl-nav button.owl-prev {
  left: -55px;
}

.products-slider.owl-carousel .owl-nav button.owl-next {
  right: -55px;
}

.products-slider.owl-carousel .owl-nav button.owl-prev:hover,
.products-slider.owl-carousel .owl-nav button.owl-next:hover {
  background-color: #c5c7cc !important;
  transform: translateY(-50%) scale(1.1);
}

/* Responsive for Products Slider */
@media (max-width: 1399px) {
  .products-slider.owl-carousel .owl-nav button.owl-prev {
    left: -25px;
  }

  .products-slider.owl-carousel .owl-nav button.owl-next {
    right: -25px;
  }
}

@media (max-width: 991px) {

  .products-slider.owl-carousel .owl-nav button.owl-prev,
  .products-slider.owl-carousel .owl-nav button.owl-next {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .section-title.heading-border {
    font-size: 1.5rem;
  }

  /* Adjust image height for tablet */
  .product-default figure {
    height: 240px;
  }
}

@media (max-width: 767px) {
  .products-slider.owl-carousel .owl-nav {
    display: none;
  }

  .featured-products-section {
    padding: 2rem 0;
  }

  .product-default .product-action {
    opacity: 1;
    transform: translateY(0);
  }

  /* Adjust image height for mobile */
  .product-default figure {
    height: 180px;
  }

  /* Smaller text for mobile */
  .product-default .product-title {
    font-size: 13px;
    height: 36px;
  }

  .product-default .product-price {
    font-size: 14px;
  }
}

@media (max-width: 480px) {

  /* Extra small mobile adjustments */
  .product-default figure {
    height: 160px;
  }

  .product-default .product-title {
    font-size: 12px;
    height: 34px;
  }

  .product-default .product-category {
    font-size: 10px;
  }

  .product-default .btn-add-cart {
    font-size: 10px;
    padding: 0 10px;
  }
}

/* Animation */
.appear-animate {
  animation-duration: 0.6s;
  animation-fill-mode: both;
}

@keyframes fadeInRightShorter {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.appear-animate[data-animation-name="fadeInRightShorter"] {
  animation-name: fadeInRightShorter;
}

/* ========================================
   PRODUCT DETAIL - QUANTITY BUTTONS
   ======================================== */

/* Quantity Container - Set margin-right */
.product-single-qty {
  margin-right: 2.5rem !important;
}

/* Quantity Input Group */
.product-single-qty .input-group {
  display: flex;
  align-items: stretch;
  width: 150px;
}

.product-single-qty .form-control {
  text-align: center;
  border-left: 1px solid #C8CACF;
  border-right: 1px solid #C8CACF;
  font-size: 14px;
  font-weight: 600;
  height: 45px;
  padding: 0;
  color: #1D1D1F;
}

/* Quantity Buttons */
.product-single-qty .btn {
  width: 45px;
  height: 45px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #C8CACF;
  background-color: #F5F5F7;
  color: #1D1D1F;
  transition: all 0.3s ease;
}

.product-single-qty .btn:hover {
  background-color: #dadce0;
  border-color: #dadce0;
  color: #000;
}

.product-single-qty .btn:active {
  transform: scale(0.95);
}

/* Hide duplicate buttons injected by bootstrap-touchspin plugin */
/* Only hide buttons that are also marked as injected AND have onclick attribute */
.product-single-qty .btn.bootstrap-touchspin-injected:not([onclick]) {
  display: none !important;
}

/* Remove border radius from middle input */
.product-single-qty .input-group-prepend .btn {
  border-radius: 4px 0 0 4px;
}

.product-single-qty .input-group-append .btn {
  border-radius: 0 4px 4px 0;
}

.product-single-qty .form-control {
  border-radius: 0;
}

/* Product Action Buttons */
.product-action {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.product-action .add-cart {
  background-color: #dadce0 !important;
  border-color: #dadce0 !important;
  color: #000 !important;
  min-width: 200px;
}

.product-action .add-cart:hover {
  background-color: #c5c7cc !important;
  border-color: #c5c7cc !important;
}

.product-action .add-wishlist {
  background-color: #dadce0 !important;
  border-color: #dadce0 !important;
  color: #000 !important;
}

.product-action .add-wishlist:hover {
  background-color: #c5c7cc !important;
  border-color: #c5c7cc !important;
}

/* ========================================
   WHATSAPP CHAT ADMIN BUTTON (PRODUCT DETAIL)
   ======================================== */

/* WhatsApp Button in Product Action */
.btn-whatsapp-product {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
  color: #fff !important;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-whatsapp-product:hover {
  background-color: #20BA5A !important;
  border-color: #20BA5A !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-product:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-product i {
  font-size: 1.2em;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .btn-whatsapp-product {
    width: 100%;
    margin-top: 0.5rem;
  }

  .product-action {
    flex-direction: column;
  }

  .product-action .add-cart,
  .product-action .add-wishlist {
    width: 100% !important;
    min-width: auto;
    margin-bottom: 0.5rem;
    margin-right: 0 !important;
  }

  /* Quantity buttons for mobile */
  .product-single-qty {
    margin-right: 0 !important;
    margin-bottom: 1rem;
    width: 100%;
  }

  .product-single-qty .input-group {
    width: 100%;
    max-width: 180px;
  }

  .product-single-qty .btn {
    width: 50px !important;
    height: 50px !important;
    font-size: 20px;
    border: 2px solid #C8CACF !important;
  }

  .product-single-qty .form-control {
    height: 50px !important;
    font-size: 16px;
    border: 2px solid #C8CACF !important;
  }

  /* Make sure icons/symbols are visible */
  .product-single-qty .btn-down-icon::before {
    content: "−";
    font-size: 24px;
    line-height: 1;
  }

  .product-single-qty .btn-up-icon::before {
    content: "+";
    font-size: 24px;
    line-height: 1;
  }
}

/* ========================================
   SOCIAL MEDIA ICONS
   ======================================== */

/* TikTok Icon */
.social-icon.social-tiktok {
  color: #000 !important;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon.social-tiktok:hover {
  color: #00f2ea !important;
}

.social-icon.social-tiktok svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
}

/* Shopee Icon */
.social-icon.social-shopee {
  color: #ee4d2d !important;
}

.social-icon.social-shopee:hover {
  color: #ff5a3a !important;
}

/* Tokopedia Icon */
.social-icon.social-tokopedia {
  color: #42b549 !important;
}

.social-icon.social-tokopedia:hover {
  color: #5ac962 !important;
}

/* Footer Sections */
.footer-section {
  margin-bottom: 1.5rem;
}

.footer-section .widget-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.footer-section .widget-subtitle i {
  font-size: 0.8rem;
}

.footer-section .social-icons {
  display: flex;
  gap: 0.5rem;
}

/* Responsive adjustments for footer sections */
@media (max-width: 768px) {
  .footer-section {
    margin-bottom: 1rem;
  }

  .footer-section .widget-subtitle {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .footer-section .social-icons {
    justify-content: center;
  }
}

color: #52c559 !important;
}

/* ========================================
   FOOTER
   ======================================== */

/* Footer Background */
.footer {
  background-color: #dadce0 !important;
  color: #000 !important;
}

.footer a {
  color: #000 !important;
}

.footer a:hover {
  color: #666 !important;
}

.footer .widget-title {
  color: #000 !important;
  border-bottom: 2px solid #000;
}

/* ========================================
   MISC
   ======================================== */

/* Spinner / Loading */
.spinner-border.text-primary {
  color: #dadce0 !important;
}

/* Progress Bar */
.progress-bar {
  background-color: #dadce0 !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar-thumb {
  background-color: #dadce0 !important;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #c5c7cc !important;
}

/* Selection */
::selection {
  background-color: #dadce0 !important;
  color: #000 !important;
}

::-moz-selection {
  background-color: #dadce0 !important;
  color: #000 !important;
}

/* Body Background */
body {
  background-color: #F5F5F7 !important;
  color: #000 !important;
}

/* Main Content Background */
.main {
  background-color: #FFFFFF;
}

/* Card Elements */
.card {
  background-color: #FFFFFF;
  border: 1px solid #C8CACF;
  border-radius: 12px;
}

.card-header {
  background-color: #F5F5F7;
  border-bottom: 1px solid #C8CACF;
}

/* Table Styling */
.table {
  color: #000;
}

.table thead th {
  background-color: #F5F5F7;
  color: #000;
  border-bottom: 2px solid #C8CACF;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #F5F5F7;
}

/* Breadcrumb */
.breadcrumb {
  background-color: #F5F5F7;
}

.breadcrumb-item a {
  color: #000;
}

.breadcrumb-item.active {
  color: #666;
}

/* ========================================
   MOBILE MENU RESPONSIVE STYLES
   ======================================== */

/* Mobile Menu Toggle Button - Visible on Mobile Only */
@media (max-width: 991px) {

  button.mobile-menu-toggler,
  .mobile-menu-toggler {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Ensure header left has proper flex alignment */
  .header-left {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  /* Ensure button is visible and clickable */
  .header-middle .header-left button.mobile-menu-toggler,
  .header-middle .header-left .mobile-menu-toggler {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

/* Hide on Desktop */
@media (min-width: 992px) {

  button.mobile-menu-toggler,
  .mobile-menu-toggler {
    display: none !important;
  }
}

/* Extra Small Mobile */
@media (max-width: 575px) {

  button.mobile-menu-toggler,
  .mobile-menu-toggler {
    font-size: 24px !important;
    padding: 0.4rem 0.6rem !important;
    margin-right: 0.3rem !important;
    min-width: 40px !important;
    min-height: 40px !important;
  }

  .mobile-menu-toggler i,
  .mobile-menu-toggler .fa-bars {
    font-size: 24px !important;
  }
}

/* ========================================
   BUDGET FINDER SECTION
   ======================================== */

/* Budget Finder Section */
.budget-finder-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  border-top: 1px solid rgba(229, 231, 235, 0.5);
}


.budget-finder-section .section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}


/* Budget Card Styles */
.budget-card {
  min-height: 120px;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: white;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Budget Image */
.budget-card .budget-image {
  width: 50px;
  height: 50px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.budget-card .budget-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* Budget Label (Main Text) */
.budget-card .budget-label {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.25rem;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

/* Budget Range (Subtitle) */
.budget-card .budget-range {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
}

/* Hover Effect */
.budget-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-color: #60a5fa;
}

/* Active/Click Effect */
.budget-card:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(218, 220, 224, 0.2);
}

/* Flagship Card Special Styling (Optional) */
.budget-card-flagship {
  border-color: #D4AF37;
}

.budget-card-flagship:hover {
  border-color: #D4AF37;
  background: linear-gradient(135deg, #dadce0 0%, #D4AF37 100%);
}

.budget-card-flagship .budget-label {
  color: #000;
}

/* Owl Carousel Navigation for Budget Slider */
.budget-slider.owl-carousel .owl-nav button.owl-prev,
.budget-slider.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: white !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.2s;
  outline: none;
  z-index: 10;
  color: #374151 !important;
  font-size: 20px;
}

.budget-slider.owl-carousel .owl-nav button.owl-prev:hover,
.budget-slider.owl-carousel .owl-nav button.owl-next:hover {
  background-color: #f9fafb !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.budget-slider.owl-carousel .owl-nav button.owl-prev {
  left: -15px;
}

.budget-slider.owl-carousel .owl-nav button.owl-next {
  right: -15px;
}

.budget-slider.owl-carousel .owl-nav button span {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

/* Fix for clipping shadows */
.budget-slider.owl-stage-outer {
  padding: 10px 0;
  margin: -10px 0;
}

/* Ensure Owl Carousel displays multiple items properly */
.budget-slider.owl-carousel {
  display: block !important;
}

.budget-slider .owl-stage-outer {
  overflow: hidden;
}

.budget-slider .owl-stage {
  display: flex !important;
}

/* Responsive Budget Slider */
@media (max-width: 1199px) {
  .budget-slider.owl-carousel .owl-nav button.owl-prev {
    left: -10px;
  }

  .budget-slider.owl-carousel .owl-nav button.owl-next {
    right: -10px;
  }
}

@media (max-width: 991px) {
  .budget-finder-section {
    padding: 2rem 0;
  }

  .budget-finder-section .section-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .budget-card {
    min-height: 110px;
    padding: 0.75rem;
  }

  .budget-card .budget-image {
    width: 45px;
    height: 45px;
  }

  .budget-card .budget-label {
    font-size: 0.95rem;
  }

  .budget-card .budget-range {
    font-size: 0.75rem;
  }
}

@media (max-width: 767px) {
  .budget-slider.owl-carousel .owl-nav {
    display: none;
  }

  .budget-finder-section {
    padding: 1.5rem 0;
  }

  .budget-finder-section .section-title {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .budget-card {
    min-height: 100px;
    padding: 0.75rem;
  }

  .budget-card .budget-image {
    width: 40px;
    height: 40px;
    margin-bottom: 0.35rem;
  }

  .budget-card .budget-label {
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
  }

  .budget-card .budget-range {
    font-size: 0.7rem;
  }
}



/* ========================================
   BRAND PRODUCTS SECTION
   ======================================== */

/* Brand Products Section */
.brand-products-section {
  padding: 3rem 0;
  background-color: #F5F5F7;
}

.brand-products-section .section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: -0.5px;
}

/* Brand Block Container */
.brand-block {
  background-color: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #C8CACF;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.brand-block:hover {
  box-shadow: 0 8px 24px rgba(218, 220, 224, 0.12);
  border-color: #dadce0;
  transform: translateY(-2px);
}

/* Brand Header */
.brand-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-header .brand-logo {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  border-radius: 6px;
  background-color: #F5F5F7;
  padding: 6px 10px;
  border: 1px solid #E8E8E8;
}

.brand-header .brand-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.3px;
}

/* Brand Products Scroll Container */
.brand-products-scroll {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #dadce0 #F5F5F7;
  margin: 0 -1rem;
  padding: 0 1rem;
}

.brand-products-scroll::-webkit-scrollbar {
  height: 6px;
}

.brand-products-scroll::-webkit-scrollbar-track {
  background: #F5F5F7;
  border-radius: 3px;
}

.brand-products-scroll::-webkit-scrollbar-thumb {
  background: #dadce0;
  border-radius: 3px;
  transition: background 0.3s ease;
}

.brand-products-scroll::-webkit-scrollbar-thumb:hover {
  background: #c5c7cc;
}

/* Horizontal Product Row */
.brand-products-scroll .row.flex-nowrap {
  flex-wrap: nowrap;
  gap: 1rem;
}

.brand-products-scroll .col-auto {
  flex: 0 0 auto;
  width: 200px;
}

/* Product Card in Brand Section */
.brand-products-scroll .product.product-2 {
  background-color: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E8E8E8;
  overflow: hidden;
  transition: all 0.3s ease;
  height: auto;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.brand-products-scroll .product.product-2:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(218, 220, 224, 0.15);
  border-color: #dadce0;
}

/* Product Media/Image */
.brand-products-scroll .product.product-2 .product-media {
  position: relative;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 8px;
  height: 200px;
  background-color: #F5F5F7;
}

.brand-products-scroll .product.product-2 .product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.brand-products-scroll .product.product-2:hover .product-media img {
  transform: scale(1.05);
}

/* Product Action Buttons */
.brand-products-scroll .product.product-2 .product-action-vertical {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.brand-products-scroll .product.product-2:hover .product-action-vertical {
  opacity: 1;
  transform: translateX(0);
}

.brand-products-scroll .product.product-2 .product-action {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 5;
}

.brand-products-scroll .product.product-2:hover .product-action {
  opacity: 1;
  transform: translateY(0);
}

/* Product Body */
.brand-products-scroll .product.product-2 .product-body {
  padding: 0px 0.5rem 2.5rem 0.5rem;
  text-align: center;
}

.brand-products-scroll .product.product-2 .product-cat {
  margin-bottom: 0.5rem;
}

.brand-products-scroll .product.product-2 .product-cat a {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.brand-products-scroll .product.product-2 .product-cat a:hover {
  color: #000;
}

.brand-products-scroll .product.product-2 .product-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  height: 36px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.brand-products-scroll .product.product-2 .product-title a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.brand-products-scroll .product.product-2 .product-title a:hover {
  color: #666;
}

.brand-products-scroll .product.product-2 .product-price {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
}

/* "Lihat Semua" Button */
.brand-block .btn-outline-primary {
  border-color: #dadce0 !important;
  color: #000 !important;
  background-color: transparent !important;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brand-block .btn-outline-primary:hover {
  background-color: #dadce0 !important;
  border-color: #dadce0 !important;
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(218, 220, 224, 0.3);
}

.brand-block .btn-outline-primary i {
  font-size: 0.75rem;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.brand-block .btn-outline-primary:hover i {
  transform: translateX(2px);
}

/* Empty State (if no featured products for brands) */
.brand-products-section .empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: #666;
}

.brand-products-section .empty-state i {
  font-size: 3rem;
  color: #C8CACF;
  margin-bottom: 1rem;
}

.brand-products-section .empty-state h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
}

.brand-products-section .empty-state p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
}

/* Responsive Brand Products Section */
@media (max-width: 991px) {
  .brand-products-section {
    padding: 2.5rem 0;
  }

  .brand-products-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .brand-block {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .brand-header .brand-logo {
    height: 35px;
    max-width: 100px;
  }

  .brand-header .brand-title {
    font-size: 1.1rem;
  }

  .brand-products-scroll .col-auto {
    width: 180px;
  }

  .brand-products-scroll .product.product-2 .product-media {
    height: 180px;
  }

  .brand-products-scroll .product.product-2 .product-title {
    font-size: 12px;
    height: 34px;
  }

  .brand-products-scroll .product.product-2 .product-price {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .brand-products-section {
    padding: 2rem 0;
  }

  .brand-products-section .section-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .brand-block {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .brand-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .brand-header .brand-logo {
    height: 30px;
    max-width: 80px;
  }

  .brand-header .brand-title {
    font-size: 1rem;
  }

  .brand-products-scroll .col-auto {
    width: 160px;
  }

  .brand-products-scroll .product.product-2 .product-media {
    height: 160px;
  }

  .brand-products-scroll .product.product-2 .product-title {
    font-size: 11px;
    height: 32px;
  }

  .brand-products-scroll .product.product-2 .product-price {
    font-size: 12px;
  }

  .brand-products-scroll .product.product-2 .product-body {
    padding: 0 0.25rem;
  }

  .brand-block .btn-outline-primary {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  /* Show more products on mobile with smaller gap */
  .brand-products-scroll .row.flex-nowrap {
    gap: 0.75rem;
  }
}

@media (max-width: 575px) {
  .brand-products-section .section-title {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
  }

  .brand-block {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 12px;
  }

  .brand-products-scroll .col-auto {
    width: 140px;
  }

  .brand-products-scroll .product.product-2 .product-media {
    height: 140px;
  }

  .brand-products-scroll .product.product-2 .product-title {
    font-size: 10px;
    height: 30px;
  }

  .brand-products-scroll .product.product-2 .product-price {
    font-size: 11px;
  }

  .brand-block .btn-outline-primary {
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem;
  }

  .brand-products-scroll .row.flex-nowrap {
    gap: 0.5rem;
  }

  .brand-products-scroll {
    margin: 0 -0.5rem;
    padding: 0 0.5rem;
  }
}

/* Animation for brand blocks */
.brand-block {
  animation: fadeInUp 0.6s ease-out;
}

.brand-block:nth-child(2) {
  animation-delay: 0.1s;
}

.brand-block:nth-child(3) {
  animation-delay: 0.2s;
}

.brand-block:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   STORE PHOTOS SLIDESHOW
   ======================================== */

.store-photos-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.store-photo-item {
  margin-bottom: 20px;
  padding: 0 10px;
}

.store-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.store-photo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.store-photo-image {
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
}

.store-photo-image img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
}

.store-photo-card:hover .store-photo-image img {
  transform: scale(1.05);
}

.store-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.store-photo-card:hover .store-photo-overlay {
  transform: translateY(0);
}

.store-photo-content {
  text-align: center;
  color: white;
}

.store-photo-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease 0.1s;
}

.store-photo-card:hover .store-photo-icon {
  opacity: 1;
  transform: translateY(0);
}

.store-photo-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease 0.15s;
}

.store-photo-card:hover .store-photo-title {
  opacity: 1;
  transform: translateY(0);
}

.store-photo-description {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease 0.2s;
}

.store-photo-card:hover .store-photo-description {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Owl Carousel styling for store photos */
.store-photos-slider .owl-nav {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.store-photos-slider .owl-nav button.owl-prev,
.store-photos-slider .owl-nav button.owl-next {
  background: #dadce0 !important;
  color: #000 !important;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #dadce0;
  transition: all 0.3s ease;
  font-size: 18px;
  line-height: 41px;
  text-align: center;
}

.store-photos-slider .owl-nav button.owl-prev:hover,
.store-photos-slider .owl-nav button.owl-next:hover {
  background: #c5c7cc !important;
  border-color: #c5c7cc !important;
  transform: scale(1.1);
}

.store-photos-slider .owl-dots {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.store-photos-slider .owl-dots button.owl-dot {
  background: #C8CACF !important;
  width: 12px;
  height: 12px;
  margin: 0;
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.store-photos-slider .owl-dots button.owl-dot.active,
.store-photos-slider .owl-dots button.owl-dot:hover {
  background: #dadce0 !important;
  transform: scale(1.3);
  border-color: #dadce0;
}

/* Store Photos Slider Container */
.store-photos-slider {
  padding: 0 15px;
}

.store-photos-slider .owl-stage-outer {
  padding: 10px 0;
  margin: -10px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .store-photo-item {
    padding: 0 5px;
  }

  .store-photo-overlay {
    padding: 20px 15px 15px;
  }

  .store-photo-icon {
    font-size: 2rem;
  }

  .store-photo-title {
    font-size: 1.3rem;
  }

  .store-photo-description {
    font-size: 0.9rem;
  }

  .store-photo-image img {
    height: 200px !important;
  }
}

@media (min-width: 769px) {
  .store-photo-image img {
    height: 300px;
    object-fit: cover;
  }
}

/* Animation for store photos section */
.store-photos-section .section-title {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.store-photos-section .section-subtitle {
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.1s forwards;
}

.store-photo-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.store-photo-item:nth-child(1) {
  animation-delay: 0.2s;
}

.store-photo-item:nth-child(2) {
  animation-delay: 0.3s;
}

.store-photo-item:nth-child(3) {
  animation-delay: 0.4s;
}

.store-photo-item:nth-child(4) {
  animation-delay: 0.5s;
}

.store-photo-item:nth-child(5) {
  animation-delay: 0.6s;
}

/* ========================================
   STORE INFORMATION SECTION
   ======================================== */

.store-information-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.store-information-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #dadce0, transparent);
  opacity: 0.5;
}

.store-info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  height: 100%;
  transition: all 0.3s ease;
}

.store-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.store-header {
  margin-bottom: 1.5rem;
}

.store-name {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: 1.2;
}

.store-tagline {
  font-size: 1.1rem;
  color: #6c757d;
  margin: 0;
  font-weight: 400;
}

.store-status .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.status-badge.status-open {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.status-badge.status-closed {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.store-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #495057;
  margin-bottom: 1.5rem;
}

.store-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.contact-item:hover {
  background-color: #e9ecef;
  transform: translateX(5px);
}

.contact-item i {
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
}

.contact-link {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #dadce0;
}

.store-hours-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.store-hours-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid transparent;
  transition: all 0.2s ease;
}

.hour-item:hover {
  background-color: #e9ecef;
  transform: translateX(5px);
}

.hour-item.today {
  background: linear-gradient(135deg, #dadce0 0%, #c5c7cc 100%);
  color: #000;
  font-weight: 600;
  border-left-color: #000;
}

.day-name {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

.day-hours {
  font-weight: 500;
}

.closed-text {
  color: #dc3545;
  font-weight: 600;
}

.not-set {
  color: #adb5bd;
}

.store-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

.store-map iframe {
  width: 100%;
  min-height: 300px;
  border: none;
  display: block;
}

/* Store Features Section */
.store-features {
  margin-top: 3rem;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #dadce0, #c5c7cc);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 3rem;
  color: #dadce0;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
  color: #c5c7cc;
  transform: scale(1.1);
}

.feature-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
}

.feature-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #6c757d;
  margin: 0;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.payment-method-badge {
  background-color: #e9ecef;
  color: #495057;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #dee2e6;
  transition: all 0.2s ease;
}

.payment-method-badge:hover {
  background-color: #dadce0;
  transform: translateY(-2px);
}

.shipping-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.shipping-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.shipping-item span {
  color: #495057;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #e9ecef;
  border-radius: 50%;
  color: #495057;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.social-link:hover {
  background-color: #dadce0;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 991px) {

  .store-info-card,
  .store-hours-card {
    padding: 1.5rem;
  }

  .store-name {
    font-size: 1.75rem;
  }

  .feature-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .store-information-section {
    padding: 3rem 0;
  }

  .store-info-card,
  .store-hours-card {
    padding: 1.25rem;
  }

  .store-name {
    font-size: 1.5rem;
  }

  .store-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .store-logo {
    margin-right: 0 !important;
    margin-bottom: 1rem;
  }

  .store-contact-info {
    gap: 0.75rem;
  }

  .contact-item {
    padding: 0.5rem;
  }

  .hour-item {
    padding: 0.75rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .feature-icon i {
    font-size: 2.5rem;
  }

  .social-links {
    gap: 0.75rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* Animation for store information section */
.store-information-section .store-info-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.store-information-section .store-hours-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.1s forwards;
}

.store-information-section .feature-card:nth-child(1) {
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.2s forwards;
}

.store-information-section .feature-card:nth-child(2) {
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.3s forwards;
}

.store-information-section .feature-card:nth-child(3) {
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.4s forwards;
}

.store-information-section .feature-card:nth-child(4) {
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.5s forwards;
}

/* ========================================
   PAYMENT METHOD BANNERS
   ======================================== */

.payment-methods-banners {
  margin-top: 1rem;
}

.payment-method-banner {
  border-radius: 8px;
  padding: 4px;
  background: #fff;
  border: 1px solid #e9ecef;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payment-method-banner:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ========================================
   FOOTER SERVICES SECTION
   ======================================== */

.footer-services-section {
  padding: 2rem 0;
  border-top: 1px solid rgba(218, 220, 224, 0.3);
}

.services-title {
  color: #000000;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.services-title i {
  color: #dadce0;
  font-size: 1.2rem;
}

/* Payment Methods Gallery */
.payment-methods-gallery {
  padding: 0.5rem 0;
}

.payment-method-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(218, 220, 224, 0.3);
  border-radius: 8px;
  transition: all 0.2s ease;
  min-height: 50px;
  min-width: 80px;
}

.payment-method-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-color: #dadce0;
}

.payment-method-logo {
  transition: all 0.2s ease;
}

.payment-method-item:hover .payment-method-logo {
  transform: scale(1.1);
}

.payment-method-item.fallback {
  background: #dadce0;
  border-color: #c5c7cc;
}

.payment-method-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #000000;
  text-align: center;
  line-height: 1.2;
}

/* Shipping Services Gallery */
.shipping-services-gallery {
  padding: 0.5rem 0;
}

.shipping-service-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(218, 220, 224, 0.3);
  border-radius: 8px;
  transition: all 0.2s ease;
  min-height: 50px;
  min-width: 80px;
}

.shipping-service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-color: #dadce0;
}

.shipping-service-logo {
  transition: all 0.2s ease;
}

.shipping-service-item:hover .shipping-service-logo {
  transform: scale(1.1);
}

.shipping-service-item.fallback {
  background: #dadce0;
  border-color: #c5c7cc;
}

.shipping-service-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #000000;
  text-align: center;
  line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-services-section {
    padding: 1.5rem 0;
  }

  .services-title {
    font-size: 1rem;
    margin-bottom: 1rem !important;
  }

  .payment-methods-gallery,
  .shipping-services-gallery {
    gap: 1rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .payment-method-item,
  .shipping-service-item {
    min-width: 90px;
    flex-shrink: 0;
  }

  .payment-method-logo,
  .shipping-service-logo {
    height: 35px;
  }
}

@media (max-width: 576px) {
  .footer-services-section .row {
    gap: 2rem 0;
  }

  .payment-method-item,
  .shipping-service-item {
    min-width: 85px;
  }

  .store-information-section .feature-card:nth-child(1) {
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.2s forwards;
  }

  .store-information-section .feature-card:nth-child(2) {
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.3s forwards;
  }

  .store-information-section .feature-card:nth-child(3) {
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.4s forwards;
  }

  .store-information-section .feature-card:nth-child(4) {
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.5s forwards;
  }

  /* ========================================
   PAYMENT METHOD BANNERS
   ======================================== */

  .payment-methods-banners {
    margin-top: 1rem;
  }

  .payment-method-banner {
    border-radius: 8px;
    padding: 4px;
    background: #fff;
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .payment-method-banner:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  /* ========================================
   FOOTER SERVICES SECTION
   ======================================== */

  .footer-services-section {
    padding: 2rem 0;
    border-top: 1px solid rgba(218, 220, 224, 0.3);
  }

  .services-title {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
  }

  .services-title i {
    color: #dadce0;
    font-size: 1.2rem;
  }

  /* Payment Methods Gallery */
  .payment-methods-gallery {
    padding: 0.5rem 0;
  }

  .payment-method-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(218, 220, 224, 0.3);
    border-radius: 8px;
    transition: all 0.2s ease;
    min-height: 50px;
    min-width: 80px;
  }

  .payment-method-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: #dadce0;
  }

  .payment-method-logo {
    transition: all 0.2s ease;
  }

  .payment-method-item:hover .payment-method-logo {
    transform: scale(1.1);
  }

  .payment-method-item.fallback {
    background: #dadce0;
    border-color: #c5c7cc;
  }

  .payment-method-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #000000;
    text-align: center;
    line-height: 1.2;
  }

  /* Shipping Services Gallery */
  .shipping-services-gallery {
    padding: 0.5rem 0;
  }

  .shipping-service-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(218, 220, 224, 0.3);
    border-radius: 8px;
    transition: all 0.2s ease;
    min-height: 50px;
    min-width: 80px;
  }

  .shipping-service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: #dadce0;
  }

  .shipping-service-logo {
    transition: all 0.2s ease;
  }

  .shipping-service-item:hover .shipping-service-logo {
    transform: scale(1.1);
  }

  .shipping-service-item.fallback {
    background: #dadce0;
    border-color: #c5c7cc;
  }

  .shipping-service-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #000000;
    text-align: center;
    line-height: 1.2;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-services-section {
      padding: 1.5rem 0;
    }

    .services-title {
      font-size: 1rem;
      margin-bottom: 1rem !important;
    }

    .payment-methods-gallery,
    .shipping-services-gallery {
      gap: 1rem;
      overflow-x: auto;
      flex-wrap: nowrap;
      padding-bottom: 0.5rem;
      -webkit-overflow-scrolling: touch;
    }

    .payment-method-item,
    .shipping-service-item {
      min-width: 90px;
      flex-shrink: 0;
    }

    .payment-method-logo,
    .shipping-service-logo {
      height: 35px;
    }
  }

  @media (max-width: 576px) {
    .footer-services-section .row {
      gap: 2rem 0;
    }

    .payment-method-item,
    .shipping-service-item {
      min-width: 85px;
    }

    .payment-method-logo,
    .shipping-service-logo {
      height: 30px;
    }

    .payment-method-name,
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.3s forwards;
  }

  .store-information-section .feature-card:nth-child(3) {
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.4s forwards;
  }

  .store-information-section .feature-card:nth-child(4) {
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.5s forwards;
  }

  /* ========================================
   PAYMENT METHOD BANNERS
   ======================================== */

  .payment-methods-banners {
    margin-top: 1rem;
  }

  .payment-method-banner {
    border-radius: 8px;
    padding: 4px;
    background: #fff;
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .payment-method-banner:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  /* ========================================
   FOOTER SERVICES SECTION
   ======================================== */

  .footer-services-section {
    padding: 2rem 0;
    border-top: 1px solid rgba(218, 220, 224, 0.3);
  }

  .services-title {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
  }

  .services-title i {
    color: #dadce0;
    font-size: 1.2rem;
  }

  /* Payment Methods Gallery */
  .payment-methods-gallery {
    padding: 0.5rem 0;
  }

  .payment-method-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(218, 220, 224, 0.3);
    border-radius: 8px;
    transition: all 0.2s ease;
    min-height: 50px;
    min-width: 80px;
  }

  .payment-method-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: #dadce0;
  }

  .payment-method-logo {
    transition: all 0.2s ease;
  }

  .payment-method-item:hover .payment-method-logo {
    transform: scale(1.1);
  }

  .payment-method-item.fallback {
    background: #dadce0;
    border-color: #c5c7cc;
  }

  .payment-method-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #000000;
    text-align: center;
    line-height: 1.2;
  }

  /* Shipping Services Gallery */
  .shipping-services-gallery {
    padding: 0.5rem 0;
  }

  .shipping-service-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(218, 220, 224, 0.3);
    border-radius: 8px;
    transition: all 0.2s ease;
    min-height: 50px;
    min-width: 80px;
  }

  .shipping-service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: #dadce0;
  }

  .shipping-service-logo {
    transition: all 0.2s ease;
  }

  .shipping-service-item:hover .shipping-service-logo {
    transform: scale(1.1);
  }

  .shipping-service-item.fallback {
    background: #dadce0;
    border-color: #c5c7cc;
  }

  .shipping-service-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #000000;
    text-align: center;
    line-height: 1.2;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-services-section {
      padding: 1.5rem 0;
    }

    .services-title {
      font-size: 1rem;
      margin-bottom: 1rem !important;
    }

    .payment-methods-gallery,
    .shipping-services-gallery {
      gap: 1rem;
      overflow-x: auto;
      flex-wrap: nowrap;
      padding-bottom: 0.5rem;
      -webkit-overflow-scrolling: touch;
    }

    .payment-method-item,
    .shipping-service-item {
      min-width: 90px;
      flex-shrink: 0;
    }

    .payment-method-logo,
    .shipping-service-logo {
      height: 35px;
    }
  }

  @media (max-width: 576px) {
    .footer-services-section .row {
      gap: 2rem 0;
    }

    .payment-method-item,
    .shipping-service-item {
      min-width: 85px;
    }

    .payment-method-logo,
    .shipping-service-logo {
      height: 30px;
    }

    .payment-method-name,
    .shipping-service-name {
      font-size: 0.7rem;
    }
  }

  /* ========================================
   FLASH SALE SECTION
   ======================================== */
  .flash-sale-section {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
  }

  .flash-sale-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .flash-sale-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .flash-sale-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
  }

  .flash-sale-icon {
    color: #FFD700;
    margin-right: 10px;
    font-size: 2.4rem;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {

    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.1);
    }
  }

  .flash-sale-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 30px;
    color: #fff;
  }

  .flash-sale-timer-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 5px;
    text-transform: uppercase;
  }

  .countdown-box {
    background: #FFD700;
    color: #000;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 1;
  }

  .countdown-separator {
    font-weight: 800;
    font-size: 1.6rem;
    color: #fff;
    margin: 0 2px;
  }

  /* Promo Banner Styles */
  .flash-sale-banner-promo {
    height: 100%;
    min-height: 300px;
  }

  .default-promo-banner {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 8px;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .promo-content {
    text-align: center;
    color: #000;
  }

  .promo-badge {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }

  .promo-percentage {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
  }

  .promo-percentage span {
    font-size: 4rem;
  }

  .promo-text {
    font-weight: 600;
    color: #000000;
    text-align: center;
    line-height: 1.2;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-services-section {
      padding: 1.5rem 0;
    }

    .services-title {
      font-size: 1rem;
      margin-bottom: 1rem !important;
    }

    .payment-methods-gallery,
    .shipping-services-gallery {
      gap: 1rem;
      overflow-x: auto;
      flex-wrap: nowrap;
      padding-bottom: 0.5rem;
      -webkit-overflow-scrolling: touch;
    }

    .payment-method-item,
    .shipping-service-item {
      min-width: 90px;
      flex-shrink: 0;
    }

    .payment-method-logo,
    .shipping-service-logo {
      height: 35px;
    }
  }

  @media (max-width: 576px) {
    .footer-services-section .row {
      gap: 2rem 0;
    }

    .payment-method-item,
    .shipping-service-item {
      min-width: 85px;
    }

    .payment-method-logo,
    .shipping-service-logo {
      height: 30px;
    }

    .payment-method-name,
    .shipping-service-name {
      font-size: 0.7rem;
    }
  }

  /* ========================================