
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM sans', Arial, sans-serif;
    line-height: 1.8;
}

h1, h2, h3 {
    font-family: 'Nunito' !important;
    font-weight: 700;
}

a {
    text-decoration: none;
}

:root {
    --primary: #C62828;
    --primary-dark: #8E1B1B;
    --primary-light: #E53935;
    --primary-soft: #FDECEC;
    --secondary: #1A2B3C;
    --secondary-light: #2C4054;
    --accent-1: #F8FAFC;
    --accent-2: #EDF2F7;
    --accent-3: #E2E8F0;
    --text-primary: #1A202C;
    --text-secondary: #4A5568;
    --text-light: #718096;
    --text-white: #FFFFFF;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-gray: #F1F5F9;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
    --border-color: #E2E8F0;
    --shadow: rgba(0, 0, 0, 0.08);
    --overlay: rgba(0, 0, 0, 0.5);
    --cta: var(--primary);
    --cta-hover: var(--primary-dark);
    --cta-text: #FFFFFF;
    --text: var(--text-primary);
    --light: var(--bg-white);
    --gray: var(--bg-gray);
    --border: var(--border-color);
}

.navbar {
  border-top:1px solid orange;
  background: var(--primary-dark);
  padding: 0.85rem 1.25rem;  
}

.navbar .nav-link {
  color: white !important;
  /* padding: 0.5rem 1rem;      */
  margin: 0 0.25rem;         
  line-height: 1.5;
  text-transform: capitalize;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #d4f1e5 !important;
}
.carbon-dark {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 25%, #0f0f0f 50%, #1a1a1a 75%, #0d0d0d 100%);
  background-size: 200% 200%;
  border-bottom: 2px solid #8E1B1B;
  position: relative;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.carbon-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(142, 27, 27, 0.05) 10px,
    rgba(142, 27, 27, 0.05) 20px
  );
  pointer-events: none;
}

.left-cont {
  color: #ffffff;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.left-cont i {
  color: #8E1B1B;
}

.contact-link {
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 8px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.contact-link:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #8E1B1B, #6B1313);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(142, 27, 27, 0.4);
}

@media (max-width: 768px) {
  .carbon-dark .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .contact-link {
    background: rgba(255,255,255,0.05);
  }
}

.navbar .nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}


@media (max-width: 991px) {
  .navbar {
    padding: 0.5rem 1rem;
  }

  .navbar .nav-link {
    padding: 0.6rem 0.75rem;
    margin: 0.1rem 0;
  }
}


/* DROPDOWNS */
.dropdown-menu {
  border-radius: 8px;
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.dropdown-item:hover {
  background: var(--secondary);
  color: #fff;
}
.autocomplete-items {
  border: 1px solid #eaeaea;
  background: #fff;
  z-index: 999;
}

.autocomplete-items div:hover {
  background: #f1f1f1;
}

/* ================= PAGE HEADER ================= */
.page-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.877) 0%, rgba(0, 0, 0, 0.7) 40%), url('/static/images/banner2.png');
    background-size: cover;
    background-position: center;
    color: var(--light);
    padding: 80px 0 60px;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 20px;
    opacity: 0.9;
}

/* ================= BREADCRUMB ================= */
.breadcrumb {
    color: #87A96B !important;
    padding: 15px 0;
    margin-bottom: 0;
    font-size: 0.9rem;
    justify-content: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #08352b;
    font-size: 1.2rem;
    padding: 0 10px;
    font-weight: 300;
}

.breadcrumb-item a {
    color: #28a745;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--secondary);
    font-weight: 600;
}

/* ================= HERO CAROUSEL ================= */
.hero-carousel {
    margin-bottom: 50px;
}

.carousel-item {
    height: 500px;
    background-size: cover;
    background-position: center;
}

.hero-img {
    max-height: 350px;
    width: 100%;
    object-fit: cover;
}

.hero-slide {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.692);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.carousel-caption h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fff;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #1ebe5d;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: #1ebe5d;
    transform: scale(1.1);
}

/* ================= BUTTONS ================= */
.btn-danger,.btn-primary {
    background-color: var(--primary);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    color: var(--light);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    color: var(--light);
}

.btn-outline {
    background-color:var(--primary-dark);
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    flex: 1;
}

.btn-outline:hover {
    background-color: var(--accent);
}

.btn-add-cart i {
    margin-right: 5px;
}

/* ================= SECTION HEADERS ================= */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--text);
    max-width: 600px;
    margin: 15px auto 0;
}

/* ================= PRODUCT CARDS ================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 40px;
}

.products-grid::after {
    content: "";
    display: table;
    clear: both;
}

.product-card {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    padding: 15px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.product-img {
    height: 180px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    margin-bottom: 15px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.current-price {
    margin-right: 8px;
}

.original-price {
    color: #6c757d;
    text-decoration: line-through;
}

.product-rating {
    margin-bottom: 10px;
    flex-shrink: 0;
}

.product-rating i {
    color: #ffc107;
    font-size: 0.8rem;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.product-badge.sale {
    background: #dc3545;
}

.product-badge.new {
    background: #28a745;
}

.product-badge.best-seller {
    background: #ffc107;
    color: #000;
}

.btn-add-cart {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    overflow: hidden;
}

.product-card:hover .btn-add-cart {
    opacity: 1;
    height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: auto;
}

/* ================= FEATURED PRODUCT ================= */
.featured-highlight {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: var(--light);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 50px;
}

.featured-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.featured-text {
    flex: 1;
    padding-right: 30px;
}

.featured-text .product-category {
    color: var(--accent);
    margin-bottom: 10px;
}

.featured-text .product-title {
    color: var(--light);
    font-size: 2rem;
    margin-bottom: 15px;
}

.featured-text .product-price {
    margin-bottom: 20px;
}

.featured-image {
    flex: 1;
    text-align: center;
}

.featured-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ================= NEWSLETTER ================= */
.newsletter-section {
    background-color: var(--accent);
    padding: 60px 0;
    margin-top: 50px;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
}

.newsletter-form button {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 0 30px 30px 0;
    padding: 0 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: var(--primary-light);
}

/* ================= PRODUCT PAGE ================= */
.product-container {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.product-section {
    padding: 40px 0;
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 20px 0px;
}

.product-images {
    position: relative;
}

.main-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.main-image-container {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    margin-bottom: 15px;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumbnail.active {
    border-color: var(--primary);
}

.gallery-thumbnails {
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
}

.thumbnail-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnail-scroll::-webkit-scrollbar {
    height: 5px;
}

.thumbnail-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.thumbnail-scroll::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.thumbnail-scroll::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.thumbnail-item {
    position: relative;
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-item.active {
    border-color: var(--primary-light);
}

.thumbnail-item:hover {
    border-color: var(--primary-light);
    transform: scale(1.05);
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.featured-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #0B5345;
    color: white;
    font-size: 10px;
    padding: 2px 4px;
    border-radius: 3px;
}

.product-info h1 {
    color: var(--text);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.product-description {
    margin-bottom: 25px;
    line-height: 1.6;
}

.product-features {
    margin-bottom: 25px;
}

.product-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.product-features i {
    color: var(--secondary);
    margin-right: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.quantity-selector label {
    margin-right: 15px;
    font-weight: 500;
}

.quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 5px;
    overflow: hidden;
    gap: 10px;
}

.quantity-btn {
    background-color: var(--accent);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quantity-btn:hover {
    background-color: var(--secondary);
    color: var(--light);
}

.quantity-value {
    width: 60px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    padding: 0 10px;
    height: 40px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-meta {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.meta-item {
    display: flex;
    margin-bottom: 10px;
}

.meta-label {
    font-weight: 600;
    min-width: 120px;
}

/* ================= PRODUCT TABS ================= */
.product-tabs {
    margin: 40px 0;
}

.nav-tabs {
    border-bottom: 2px solid var(--accent);
}

.nav-tabs .nav-link {
    color: var(--text);
    font-weight: 500;
    border: none;
    padding: 12px 25px;
}

.nav-tabs .nav-link.active {
    color: var(--primary);
    background-color: transparent;
    border-bottom: 2px solid var(--primary);
}

.tab-content {
    padding: 30px;
    background-color: var(--light);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--border);
}

.specs-table td {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.specs-table td:first-child {
    font-weight: 600;
    width: 30%;
}

.review-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 600;
}

.review-date {
    color: #6c757d;
}

/* ================= CART STYLES ================= */
.cart-container {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

#cart-messages-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.cart-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    color: #333;
    padding: 12px 18px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    min-width: 220px;
    font-family: sans-serif;
}

.cart-toast.toast-visible {
    opacity: 1;
    transform: translateY(0);
}

.cart-toast.success {
    border-left: 4px solid #28a745;
}

.cart-toast.error {
    border-left: 4px solid #dc3545;
}

.cart-toast i {
    font-size: 18px;
}

.cart-toast span {
    flex: 1;
}

.cart-item {
    background: var(--light);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 20px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
    display: block;
}

.cart-item-title:hover {
    color: var(--primary);
}

.cart-item-category {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.cart-item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.cart-item-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 20px;
    min-width: 100px;
    text-align: right;
}

.cart-item-remove {
    color: #dc3545;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.cart-item-remove:hover {
    color: #c82333;
}

.cart-summary {
    background: var(--light);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.summary-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    border-bottom: none;
}

.btn-checkout {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 5px;
    padding: 12px 30px;
    font-weight: 600;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-checkout:hover {
    background-color: var(--primary-light);
}

.continue-shopping {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    margin-top: 15px;
    transition: color 0.3s;
}

.continue-shopping:hover {
    color: var(--primary-light);
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-icon {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.empty-cart h3 {
    color: var(--text);
    margin-bottom: 15px;
}

.empty-cart p {
    color: #6c757d;
    margin-bottom: 30px;
}

.btn-shopping {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 5px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-shopping:hover {
    background-color: var(--primary-light);
    color: var(--light);
}

/* ================= SHOP STYLES ================= */
.shop-container {
    max-width: 1300px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.results-count {
    font-weight: 600;
    color: var(--text);
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-select, .view-select {
    padding: 8px 15px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: var(--light);
    color: var(--text);
    outline: none;
}

.view-options {
    display: flex;
    gap: 10px;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: var(--light);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn.active {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

.view-btn:hover {
    border-color: var(--primary);
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
}

/* ================= FILTERS SIDEBAR ================= */
.filters-sidebar {
    background: var(--light);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.filter-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--accent);
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.filter-content {
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.filter-content.collapsed {
    max-height: 0;
}

.filter-options {
    list-style: none;
}

.filter-option {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.filter-option input {
    margin-right: 10px;
}

.filter-option label {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.option-count {
    color: #6c757d;
    font-size: 0.9rem;
}

.price-range {
    margin-top: 15px;
}

.price-inputs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.price-input {
    flex: 1;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 5px;
}

.rating-stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.filter-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.btn-apply {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 500;
    flex: 1;
    transition: all 0.3s;
}

.btn-apply:hover {
    background-color: #094238;
}

.btn-reset {
    background-color: var(--accent);
    color: var(--text);
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-reset:hover {
    background-color: #e8e8e8;
}

.mobile-filter-toggle {
    display: none;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-weight: 500;
    margin-bottom: 20px;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.mobile-filter-toggle:hover {
    background-color: var(--primary-light);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.overlay.active {
    display: block;
}

/* ================= PAGINATION ================= */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    display: flex;
    list-style: none;
    gap: 5px;
    justify-content: center;
    margin-top: 30px;
}

.page-item {
    margin: 0 2px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: var(--light);
    color: var(--text);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 500;
}

.page-link:hover {
    background: var(--accent);
    border-color: var(--border);
}

.page-item.active .page-link {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background: var(--accent);
}

/* ================= FORM RANGE ================= */
.form-range {
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: var(--accent);
    outline: none;
    -webkit-appearance: none;
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

.form-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
}

/* ================= UTILITY CLASSES ================= */
.name-lg {
    margin-bottom: -10px;
}

.site-desc {
    color: #07869c;
}

.name {
    margin-top: 15px;
}

.top-names {
    color: var(--dark-green);
}

.ck-content {
    line-height: 1.6;
}

.ck-content p {
    margin-bottom: 1em;
}

/* ================= SEARCH ICON & MODAL ================= */
.search-icon {
    cursor: pointer;
    margin-left: 20px;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s;
}

.search-icon:hover {
    color: var(--primary);
    background-color: var(--accent);
}

.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-modal.active {
    display: flex;
    opacity: 1;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
}

.search-modal-content {
    background: var(--light);
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.search-modal-header h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 0;
}

.search-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.search-modal-close:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.search-modal-body {
    padding: 30px;
}

.search-modal-form {
    margin-bottom: 25px;
}

.search-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.search-modal-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
}

.search-modal-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 83, 69, 0.1);
}

.search-modal-submit {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 10px;
    padding: 15px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.search-modal-submit:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
}

.search-suggestions p {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.suggestion-tag {
    background-color: var(--accent);
    color: var(--text);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.suggestion-tag:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
}

/* ================= CONTACT & FAQ STYLES ================= */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-info {
    padding-right: 20px;
}

.contact-methods {
    margin-top: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 5px;
    color: var(--text);
}

.contact-details p {
    margin-bottom: 0;
    color: #6c757d;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(11, 83, 69, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.faq-item {
    background: var(--accent);
    padding: 20px;
    border-radius: 8px;
}

.faq-question {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.store-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.location-card {
    background: var(--accent);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.location-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}
/* serre */
/* Services Section V2 - Dark Theme */
.services-section-v2 {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.services-section-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8E1B1B, #8E1B1B, #8E1B1B, transparent);
}

.services-section-v2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(142, 27, 27, 0.3), rgba(142, 27, 27, 0.3), transparent);
}

/* Section Header */
/* Services Section - Professional Colors */
.services-section-v2 {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Section Header */
.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.services-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* Service Card */
.service-card-v2 {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.service-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

/* Service Icon */
.service-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-icon-inner {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon-inner i {
    font-size: 2rem;
    color: #ffffff;
}

.service-card-v2:hover .service-icon-inner {
    background: #2c3e50;
    transform: scale(1.05);
}

.service-number {
    position: absolute;
    bottom: -5px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: #ecf0f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #2c3e50;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Card Content */
.service-card-v2 h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card-v2 p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    color: #495057;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--primary);
    font-size: 0.75rem;
}

/* Service Link */
.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #2c3e50;
    gap: 0.8rem;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* CTA Banner */
.services-cta {
    margin-top: 3rem;
}

.cta-content {
    background: #2c3e50;
    border-radius: 8px;
    padding: 2.5rem;
}

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: #ecf0f1;
    font-size: 1rem;
    margin-bottom: 0;
}

.btn-cta {
    background: var(--primary);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-cta:hover {
    background: #2980b9;
    transform: translateX(5px);
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .service-card-v2 h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .services-section-v2 {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .btn-cta {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .services-section-v2 {
        padding: 40px 0;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .service-card-v2 {
        padding: 1.5rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card-v2 {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.service-card-v2:nth-child(1) { animation-delay: 0.1s; }
.service-card-v2:nth-child(2) { animation-delay: 0.2s; }
.service-card-v2:nth-child(3) { animation-delay: 0.3s; }
.service-card-v2:nth-child(4) { animation-delay: 0.4s; }
.service-card-v2:nth-child(5) { animation-delay: 0.5s; }
.service-card-v2:nth-child(6) { animation-delay: 0.6s; }
.service-card-v2:nth-child(7) { animation-delay: 0.7s; }
.service-card-v2:nth-child(8) { animation-delay: 0.8s; }
/* ================= CATEGORY CARDS ================= */
.category-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.category-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    transition: background 0.3s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to bottom, #000000d2 0%, rgba(0, 0, 0, 0.8) 100%);
    cursor: pointer;
}

.category-content {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* ================= CONTENT SECTIONS ================= */
.content-section {
    background: var(--light);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.section-title {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.section {
    background: var(--light);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* ================= POLICY SECTIONS ================= */
.policy-section {
    margin-bottom: 30px;
}

.policy-section h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.policy-section p {
    margin-bottom: 15px;
}

.policy-list {
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-list li {
    margin-bottom: 8px;
}

.update-info {
    background: var(--accent);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.process-step {
    text-align: center;
    padding: 20px;
    background: var(--accent);
    border-radius: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 700;
}

.exceptions-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

/* ================= MISSION & VISION ================= */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.mission-card, .vision-card {
    background: var(--accent);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.mission-card i, .vision-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-card {
    text-align: center;
    padding: 20px;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 5px solid var(--accent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: var(--accent);
    border-radius: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

/* ================= SHARE SECTION ================= */
.share-section {
    margin-top: 20px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.25s ease;
    color: #fff;
}

.share-btn.facebook {
    background-color:var(--primary);
}

.share-btn.facebook:hover {
    background-color:var(--primary);
}

.share-btn.email {
    background-color: #6c757d;
}

.share-btn.email:hover {
    background-color: #565e64;
}

.share-btn.copy {
    background-color: #198754;
}

.share-btn.copy:hover {
    background-color: #146c43;
}

.copy-success {
    display: none;
    margin-top: 10px;
    font-size: 13px;
    color: #198754;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (min-width: 768px) {
    .hero-img {
        max-height: 400px;
    }
}

@media (min-width: 1200px) {
    .hero-img {
        max-height: 500px;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
    .menu-toggle {
        display: none !important;
    }
    .nav-links, .search-bar, .nav-icons {
        display: flex !important;
    }
}

@media screen and (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
    .filters-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        height: 100vh;
        z-index: 1000;
        overflow-y: auto;
        transition: left 0.3s ease;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    }
    .filters-sidebar.active {
        left: 0;
    }
    .mobile-filter-toggle {
        display: flex;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .top-nav {
        display: none;
    }
    .nav-links, .search-bar {
        display: none;
    }
    .logo img {
        width: 42px;
        height: 40px;
    }
    .menu-toggle {
        display: block;
    }
    .navbar {
        padding: 0 15px;
    }
    .mobile-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.911);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 8px 8px;
        z-index: 100;
    }
    .mobile-menu a {
        color: white;
    }
    .mobile-menu li {
        color: #6e6e6e;
    }
    .mobile-menu a:hover {
        color: #1ebe5d;
    }
    .mobile-menu.active {
        display: block;
    }
    .carousel-item {
        height: 400px;
    }
    .carousel-caption {
        left: 5%;
        right: 5%;
        text-align: center;
    }
    .carousel-caption h2 {
        font-size: 2rem;
    }
    .carousel-caption p {
        font-size: 1rem;
    }
    .featured-content {
        flex-direction: column;
    }
    .featured-text {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input {
        border-radius: 30px;
        margin-bottom: 10px;
    }
    .newsletter-form button {
        border-radius: 30px;
        padding: 12px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .product-img {
        height: 160px;
    }
    .product-info {
        padding: 12px;
    }
    .product-title {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    .current-price {
        font-size: 1rem;
    }
    .btn-add-cart {
        padding: 7px 10px;
        font-size: 0.85rem;
    }
    .shop-controls {
        flex-direction: column;
        align-items: flex-start;
    }
    .shop-sort {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .sort-select, .view-select {
        width: 100%;
    }
    .action-buttons {
        flex-direction: column;
    }
    .product-info h1 {
        font-size: 1.8rem;
    }
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .cart-item-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .cart-item-details {
        width: 100%;
        margin-bottom: 15px;
    }
    .cart-item-quantity {
        margin: 10px 0;
    }
    .cart-item-total {
        margin: 10px 0;
        text-align: left;
    }
    .content-section {
        padding: 25px;
    }
    .page-header h1 {
        font-size: 2.2rem;
    }
    .section {
        padding: 25px;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info {
        padding-right: 0;
    }
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .top-names {
        display: none;
    }
    .search-modal.active {
        padding-top: 50px;
        align-items: center;
    }
    .search-modal-content {
        width: 95%;
        margin: 20px;
    }
    .search-input-group {
        flex-direction: column;
    }
    .search-modal-submit {
        justify-content: center;
    }
    .suggestion-tags {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .carousel-item {
        height: 350px;
    }
    .carousel-caption h2 {
        font-size: 1.8rem;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .page-header h1 {
        font-size: 2.2rem;
    }
    .price-inputs {
        flex-direction: column;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
}


/* Carousel Styles */
    .hero-carousel {
        position: relative;
        min-height: 90vh;
        overflow: hidden;
    }

    .hero-slide {
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 90vh;
        transition: transform 0.3s ease;
    }

    /* Animated Gradient Overlay */
    .slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, 
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.4) 100%);
        animation: overlayPulse 3s ease-in-out infinite;
    }

    @keyframes overlayPulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.9; }
    }

    /* Slide Content Wrapper */
    .slide-content-wrapper {
        max-width: 700px;
        animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .carousel-item.active .slide-content-wrapper {
        animation: slideInLeft 0.8s ease-out;
    }

    /* Slide Badge */
    .slide-badge {
        display: inline-block;
        background:var(--primary);
        color: white;
        padding: 0.5rem 1.25rem;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 1.5rem;
        animation: badgeGlow 2s ease-in-out infinite;
    }

    @keyframes badgeGlow {
        0%{ box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3); }
        50% { box-shadow: 0 4px 25px rgba(0, 102, 204, 0.6); }
    }

    /* Slide Title */
    .slide-title {
        font-size: 3.5rem;
        font-weight: 800;
        color: white;
        margin-bottom: 1.25rem;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .slide-title .highlight {
        color: var(--primary);
        position: relative;
        display: inline-block;
    }

    .slide-title .highlight::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), transparent);
        animation: underlineExpand 1.5s ease-out;
    }

    @keyframes underlineExpand {
        from {
            width: 0;
            opacity: 0;
        }
        to {
            width: 100%;
            opacity: 1;
        }
    }

    /* Slide Description */
    .slide-description {
        font-size: 1.1rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 2rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }

    /* Button Styles */
    .btn-primary.btn-lg {
        background:var(--primary);
        border: none;
        padding: 0.875rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
        margin-right: 1rem;
    }

    .btn-primary.btn-lg:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    }

    .btn-outline-light.btn-lg {
        background: transparent;
        border: 2px solid white;
        color: white;
        padding: 0.875rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

    .btn-outline-light.btn-lg:hover {
        background: white;
        color: var(--primary);
        transform: translateY(-2px);
    }

    .slide-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }


    .carousel-indicators {
        bottom: 2rem;
        gap: 0.75rem;
    }

    .carousel-indicators button {
        width: 40px;
        height: 4px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 4px;
        border: none;
        margin: 0;
        position: relative;
        overflow: hidden;
    }

    .carousel-indicators button.active {
        background: white;
    }

    .indicator-progress {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0;
        background: var(--primary);
        border-radius: 4px;
    }

    .carousel-indicators button.active .indicator-progress {
        animation: progressBar 5s linear forwards;
    }

    @keyframes progressBar {
        from {
            width: 0;
        }
        to {
            width: 100%;
        }
    }


    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .hero-carousel:hover .carousel-control-prev,
    .hero-carousel:hover .carousel-control-next {
        opacity: 1;
    }

    .carousel-control-prev {
        left: 2rem;
    }

    .carousel-control-next {
        right: 2rem;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }


    .scroll-indicator {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        z-index: 10;
        cursor: pointer;
        animation: bounce 2s infinite;
    }

    .scroll-text {
        display: block;
        color: white;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
        opacity: 0.8;
    }

    .scroll-mouse {
        width: 26px;
        height: 40px;
        border: 2px solid white;
        border-radius: 20px;
        margin: 0 auto;
        position: relative;
    }

    .scroll-wheel {
        width: 4px;
        height: 8px;
        background: white;
        border-radius: 2px;
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        animation: scrollWheel 1.5s infinite;
    }

    @keyframes scrollWheel {
        0% {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        100% {
            opacity: 0;
            transform: translateX(-50%) translateY(15px);
        }
    }

    @keyframes bounce {
        0%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        50% {
            transform: translateX(-50%) translateY(-10px);
        }
    }


    @media (max-width: 768px) {
        .hero-carousel,
        .hero-slide {
            min-height: 70vh;
        }

        .slide-title {
            font-size: 2rem;
        }

        .slide-description {
            font-size: 0.9rem;
        }

        .slide-buttons {
            flex-direction: column;
        }

        .btn-primary.btn-lg,
        .btn-outline-light.btn-lg {
            padding: 0.75rem 1.5rem;
            font-size: 0.9rem;
            text-align: center;
            margin-right: 0;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 35px;
            height: 35px;
        }

        .carousel-control-prev {
            left: 0.5rem;
        }

        .carousel-control-next {
            right: 0.5rem;
        }

        .scroll-indicator {
            display: none;
        }

        .slide-badge {
            font-size: 0.7rem;
            padding: 0.35rem 1rem;
        }
    }

    @media (max-width: 480px) {
        .slide-title {
            font-size: 1.5rem;
        }

        .carousel-caption {
            padding: 1rem;
        }

        .slide-content-wrapper {
            max-width: 100%;
        }
    }


    @media (min-width: 769px) and (max-width: 1024px) {
        .slide-title {
            font-size: 2.5rem;
        }
    }


        /* Footer Styles */
    .footer {
        background-color: var(--text-primary);
        color: var(--bg-white);
        padding: 4rem 0 2rem;
        margin-top: 3rem;
    }
    
    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
        gap: 2rem;
    }
    
    .footer-title {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }
    
    .footer-description {
        color: rgba(255,255,255,0.7);
        line-height: 1.6;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    
    .social-icons {
        display: flex;
        gap: 0.8rem;
    }
    
    .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: rgba(255,255,255,0.1);
        color: white;
        border-radius: 50%;
        transition: all 0.3s;
        text-decoration: none;
    }
    
    .social-icon i {
        font-size: 0.9rem;
    }
    
    .social-icon:hover {
        background-color: var(--primary) !important;
        transform: translateY(-3px);
    }
    
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-links li {
        margin-bottom: 0.7rem;
    }
    
    .footer-links a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        transition: color 0.3s;
        font-size: 0.9rem;
        display: inline-block;
    }
    
    .footer-links a:hover {
        color: var(--primary) !important;
    }
    
    .footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-contact li {
        margin-bottom: 0.7rem;
        color: rgba(255,255,255,0.7);
        font-size: 0.9rem;
        display: flex;
        align-items: center;
    }
    
    .footer-contact li i {
        color: var(--primary);
        width: 20px;
        margin-right: 8px;
    }
    
    .footer-contact a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .footer-contact a:hover {
        color: var(--primary);
    }
    
    .footer-bottom {
        margin-top: 3rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .footer-bottom-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    
    .payment-methods {
        display: flex;
        gap: 1.5rem;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .payment-label {
        color: rgba(255,255,255,0.5);
        font-size: 0.85rem;
    }
    
    .payment-method {
        color: white;
        font-size: 0.9rem;
    }
    
    .payment-method.highlight {
        color: var(--primary);
    }
    
    .delivery-info {
        color: rgba(255,255,255,0.5);
        font-size: 0.85rem;
    }
    
    .delivery-info i {
        color: var(--primary);
        margin-right: 5px;
    }
    
    .copyright {
        margin-top: 1.5rem;
        text-align: center;
        color: rgba(255,255,255,0.5);
        font-size: 0.85rem;
    }
    
    .copyright a {
        color: var(--primary);
        text-decoration: none;
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .footer-grid {
            grid-template-columns: repeat(3, 1fr) !important;
        }
    }
    
    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: repeat(2, 1fr) !important;
        }
        
        .footer-bottom-content {
            flex-direction: column;
            text-align: center;
        }
        
        .payment-methods {
            justify-content: center;
        }
        .btn-add-cart{
        opacity: 1;
        height: auto;
        padding-top: 8px;
        padding-bottom: 8px;
        margin-top: auto;
            ;
        }
    }
    
    @media (max-width: 480px) {
        .footer-grid {
            grid-template-columns: 1fr !important;
        }
        
        .footer-container {
            padding: 0 1rem;
        }
    }



    /* ================= MOBILE NAVIGATION STYLES ================= */

/* Mobile Menu Wrapper */
.mobile-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* Toggle Button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #8E1B1B;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #C62828;
  transform: translateY(-1px);
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}

.hamburger-icon .bar {
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-icon .bar:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-toggle.active .hamburger-icon .bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-icon .bar:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.toggle-text {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Backdrop Overlay */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Main Overlay Container */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 380px;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-nav-overlay.active {
  left: 0;
}

/* Custom Scrollbar */
.mobile-nav-overlay::-webkit-scrollbar {
  width: 4px;
}

.mobile-nav-overlay::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.mobile-nav-overlay::-webkit-scrollbar-thumb {
  background: #C62828;
  border-radius: 4px;
}

/* Container */
.mobile-nav-container {
  padding: 20px;
  min-height: 100%;
}

/* Header */
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #C62828;
}

.mobile-logo img {
  max-width: 100%;
  height: auto;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  background: #C62828;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-close:hover {
  background: #8E1B1B;
  transform: rotate(90deg);
}

/* User Info Section */
.mobile-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: linear-gradient(135deg, #FDECEC 0%, #fff 100%);
  border-radius: 10px;
  margin-bottom: 20px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  background: #C62828;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.user-details h4 {
  font-size: 0.85rem;
  color: #4A5568;
  margin-bottom: 3px;
}

.user-details p {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1A202C;
  margin: 0;
}

/* Navigation Links */
.mobile-nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  margin-bottom: 5px;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: #1A202C;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.mobile-nav-links a i:first-child {
  width: 22px;
  font-size: 1rem;
  color: #C62828;
}

.mobile-nav-links a:hover {
  background: #FDECEC;
  transform: translateX(5px);
}

.mobile-nav-links a.active {
  background: #C62828;
  color: white;
}

.mobile-nav-links a.active i:first-child {
  color: white;
}

/* Submenu */
.has-submenu > a {
  position: relative;
}

.arrow-icon {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.has-submenu.open .arrow-icon {
  transform: rotate(180deg);
}

.submenu {
  list-style: none;
  padding-left: 34px;
  margin-top: 5px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.has-submenu.open .submenu {
  max-height: 500px;
}

.submenu li {
  margin-bottom: 5px;
}

.submenu a {
  padding: 8px 12px;
  font-size: 0.85rem;
}

/* Cart Badge */
.cart-badge {
  background: #C62828;
  color: white;
  border-radius: 20px;
  padding: 2px 7px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: auto;
}

/* Help Section */
.mobile-help-section {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #E2E8F0;
}

.mobile-help-section h4 {
  font-size: 0.85rem;
  color: #4A5568;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-help-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-help-section li {
  margin-bottom: 6px;
}

.mobile-help-section a {
  color: #1A202C;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.mobile-help-section a:hover {
  color: #C62828;
}

/* Contact Info */
.mobile-contact-info {
  margin-top: 15px;
  padding: 12px;
  background: #F1F5F9;
  border-radius: 8px;
}

.mobile-contact-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1A202C;
  text-decoration: none;
  padding: 6px 0;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.mobile-contact-info a:hover {
  color: #C62828;
}

.mobile-contact-info i {
  width: 22px;
  color: #C62828;
}

/* Auth Section */
.mobile-auth-section {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}

.auth-btn {
  flex: 1;
  padding: 8px;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.login-btn {
  background: #C62828;
  color: white;
}

.login-btn:hover {
  background: #8E1B1B;
  transform: translateY(-1px);
}

.register-btn {
  background: transparent;
  color: #C62828;
  border: 1px solid #C62828;
}

.register-btn:hover {
  background: #C62828;
  color: white;
  transform: translateY(-1px);
}

.profile-btn {
  background: #1A2B3C;
  color: white;
}

.profile-btn:hover {
  background: #2C4054;
}

.logout-btn {
  background: #EF4444;
  color: white;
}

.logout-btn:hover {
  background: #c82333;
}


.mobile-social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #E2E8F0;
}

.social-link {
  width: 35px;
  height: 35px;
  background: #F1F5F9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C62828;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #C62828;
  color: white;
  transform: translateY(-2px);
}


body.mobile-nav-open {
  overflow: hidden;
}


@media (max-width: 991px) {
  .mobile-menu-wrapper {
    display: flex;
  }
}

@media (min-width: 992px) {
  .mobile-menu-wrapper {
    display: none;
  }
  
  .mobile-nav-overlay,
  .mobile-nav-backdrop {
    display: none;
  }
}

@media (max-width: 480px) {
  .mobile-nav-overlay {
    max-width: 100%;
  }
  
  .mobile-nav-container {
    padding: 15px;
  }
  
  .mobile-auth-section {
    flex-direction: column;
  }
}

/* Navbar Styles */
.nav {
  gap: 0.5rem;
}

.nav .nav-item .nav-link {
  padding: 0.5rem 0.75rem !important;
  white-space: nowrap;
}

.navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1rem;
}

@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  
  .dropdown .dropdown-menu {
    display: none;
  }
  
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

.dropdown-toggle::after {
  margin-left: 0.255em;
  vertical-align: middle;
}

.col-lg-5 .nav {
  gap: 0.25rem;
}

@media (max-width: 992px) {
  .col-lg-5 .nav {
    justify-content: center !important;
    margin-top: 10px;
  }
}
