/* ==================== CSS Variables ==================== */
:root {
  --primary-color: #1e293b;        /* Deep Slate Blue (main bg) */
   --primary-light: #334155;        /* Soft dark card bg */
   --primary-dark: #0f172a;         /* Almost black (nav/footer) */

   --secondary-color: #38bdf8;      /* Light Sky Blue (accent/buttons) */
   --secondary-light: #7dd3fc;      /* Softer blue (hover/highlight) */
   --secondary-dark: #0ea5e9;       /* Stronger accent (active state) */

   --text-color: #e2e8f0;           /* Light Gray for text */
   --muted-text: #94a3b8;           /* Muted text/subtitles */
   --border-color: #475569;         /* Border lines */

  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;

  /* Status Colors */
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;

  /* Spacing */
  --section-padding: 80px 0;
  --card-padding: 2rem;
  --border-radius: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);

  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

/* ==================== Global Styles ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: #e2e8f0;
}



.size-btn {
  padding: 8px 16px;
  border: 1px solid #EDF9EB;
  background-color: white;
  color: #333;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.size-btn.active {
  background: linear-gradient(135deg, #38bdf8, var(--primary-light));
  color: white;
  border-color: #38bcf6;
}

.container {
  max-width: 1200px;
}

/* ==================== Header Styles ==================== */
.main-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {

  padding: 1rem 0;
}
.price-display {
  font-size: 25px;
  color: #333;
  font-weight: bold;
  color: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
}

.company-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 200px;
  height: 80px;
  padding: 8px;
}

.brand-text h1 {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  margin: 0;
}

.brand-text p {
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin: 0;
  font-weight: var(--font-weight-medium);
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: var(--font-weight-medium);
  padding: 0.8rem 1.5rem !important;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background-color: var(--secondary-color);
  color: var(--primary-dark) !important;
  transform: translateY(-2px);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==================== Hero Section ==================== */
.hero-section {
  background: #e2e8f0;
  padding: var(--section-padding);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-content {
  padding: 2rem 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--medium-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.floating-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.floating-card h3 {
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* ==================== Page Header ==================== */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ==================== Section Headers ==================== */
.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--medium-gray);
}

/* ==================== Features Section ==================== */
.features-section {
  padding: var(--section-padding);
  background-color: #e2e8f0;
}

.feature-card {
  background: var(--white);
  padding: var(--card-padding);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--white);
}

.feature-card h3 {
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--medium-gray);
  line-height: 1.6;
}

/* ==================== Categories Preview ==================== */
.categories-preview {
  padding: var(--section-padding);
}

.category-card {
  background: var(--white);
  padding: var(--card-padding);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary-color);
}

.category-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.category-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.category-card h3 {
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}

.category-card p {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

/* ==================== Cart Styles ==================== */
.sticky-cart {
  position: sticky;
  top: 100px;
  z-index: 100;
  margin-bottom: 2rem;
}

.cart-section {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 2px solid var(--primary-color);
}

.cart-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.cart-header:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.cart-header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.toggle-icon {
  transition: transform 0.3s ease;
}

.toggle-icon.rotated {
  transform: rotate(180deg);
}

.cart-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.cart-content.expanded {
  max-height: 500px;
}

.cart-items {
  padding: 1rem;
  max-height: 300px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem;
  border-bottom: 1px solid var(--light-gray);
  background: var(--light-gray);
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.cart-item:last-child {
  border-bottom: none;
}

.item-info {
  flex: 1;
}

.item-name {
  font-weight: var(--font-weight-medium);
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}

.item-price {
  color: var(--success);
  font-weight: var(--font-weight-bold);
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 1rem;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  background: var(--primary-light);
  transform: scale(1.1);
}

.quantity {
  font-weight: var(--font-weight-bold);
  min-width: 30px;
  text-align: center;
}

.remove-btn {
  background: var(--danger);
  color: var(--white);
  border: none;
  border-radius: 10%;
  width: 80px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary{
  --bs-btn-color: #fff;
  --bs-btn-bg: #37b9f3;
  --bs-btn-border-color: #37b9f3;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #37b9f3;
  --bs-btn-hover-border-color: #37b9f3;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #37b9f3;
  --bs-btn-active-border-color: #37b9f3;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #37b9f3;
  --bs-btn-disabled-border-color: #37b9f3;
}
.btn-outline-primary {
    --bs-btn-color: #37b9f3;
    --bs-btn-border-color: #37b9f3;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #37b9f3;
    --bs-btn-hover-border-color: #37b9f3;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #37b9f3;
    --bs-btn-active-border-color: #37b9f3;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #37b9f3;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #37b9f3;
    --bs-gradient: none;
}
.remove-btn:hover {
  background: #c82333;
  transform: scale(1.1);
}

.cart-footer {
  padding: 1rem 1.5rem;
  background: var(--light-gray);
  border-top: 1px solid #dee2e6;
}

.cart-total {
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  color: var(--success);
  margin-bottom: 1rem;
  text-align: center;
}

.checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--success), #20c997);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.checkout-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #20c997, var(--success));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.checkout-btn:disabled {
  background: var(--medium-gray);
  cursor: not-allowed;
  transform: none;
}

/* ==================== Product Categories ==================== */
.category-section {
  margin-bottom: 4rem;
}

.category-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--light-gray), var(--white));
  border-radius: var(--border-radius);
}

.category-header h2 {
  font-size: 2.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.category-header p {
  color: var(--medium-gray);
  font-size: 1.1rem;
}

/* ==================== Product Cards ==================== */
.product-card {
  margin-top:20px 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  font-size: 0.8rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary-color);
}

.product-image {
  font-size: 3rem;
  line-height: 0.2;
  margin-top:30px;
  height: 380px;
  margin-left: 15%;
  width:250px;
  display: flex;
  position: relative;
  overflow: hidden;
  object-fit: contain;
  object-position:
  padding: 10px;
}

.product-image i {
  font-size: 3rem;
  color: var(--primary-color);
}

.product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.product-card:hover .product-image::before {
  transform: translateX(100%);
}

.product-info {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  color: var(--success);
  margin-bottom: 1rem;
}

.add-to-cart-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  border: none;
  padding: 0.8rem;
  border-radius: var(--border-radius);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #38bdf8, var(--primary-light));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
}

/* ==================== Checkout Section ==================== */
.checkout-section {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-top: 3rem;
  border: 2px solid var(--secondary-color);
}

.checkout-header {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  color: var(--primary-dark);
  padding: 1.5rem;
  text-align: center;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.checkout-header h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
}

.checkout-section form {
  padding: 2rem;
}

.form-label {
  font-weight: var(--font-weight-medium);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-control {
  border: 2px solid #dee2e6;
  border-radius: var(--border-radius);
  padding: 0.8rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(44, 85, 48, 0.25);
}

.place-order-btn {
  background: var(--primary-light);
  width: 250px;
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.place-order-btn:hover {
  background: linear-gradient(135deg, #38bdf8, var(--primary-light));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* ==================== About Page Styles ==================== */
.about-content {
  padding: var(--section-padding);
}

.about-text h2 {
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-text p {
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
}

.image-placeholder {
  background: linear-gradient(135deg, var(--light-gray), #e9ecef);
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--primary-color);
}

.image-placeholder i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.image-placeholder p {
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
  font-size: 1.2rem;
}

.mission-points {
  margin-top: 1.5rem;
}

.mission-point {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: var(--light-gray);
  border-radius: var(--border-radius);
}

.mission-point i {
  color: var(--success);
  font-size: 1.2rem;
}

.mission-point span {
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
}

/* Why Choose Us & Values Sections */
.why-choose-section,
.values-section {
  padding: 3rem 0;
  background: var(--light-gray);
  border-radius: var(--border-radius);
  margin: 3rem 0;
}

.why-choose-card,
.value-card {
  background: var(--white);
  padding: var(--card-padding);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.why-choose-card:hover,
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card-icon,
.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.card-icon i,
.value-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.why-choose-card h4,
.value-card h4 {
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}

.why-choose-card p,
.value-card p {
  color: var(--medium-gray);
  line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  padding: 4rem 2rem;
  border-radius: var(--border-radius);
  margin: 4rem 0;
  text-align: center;
}

.contact-cta h3 {
  font-size: 2.2rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}

.contact-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== Footer Styles ==================== */
.main-footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-section h3 {
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
}

.contact-item i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  min-width: 20px;
}

.contact-item div {
  line-height: 1.6;
}

.fssai-info {
  background: var(--secondary-color);
  color: var(--primary-dark);
  padding: 1rem;
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: var(--font-weight-bold);
}

.social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    .social-link {
        display: flex;
        align-items: center;
        gap: 8px;
        color: white;
        text-decoration: none;
        padding: 10px 15px;
        border-radius: 25px;
        transition: all 0.3s ease;
    }

    .social-link.whatsapp:hover {
        background-color: #25d366;
    }

    .social-link.email:hover {
        background-color: #ea4335;
    }

    .social-link.instagram:hover {
        background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }

    .footer-divider {
        border-color: #4caf50;
        margin: 2rem 0 1rem;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 1rem;
        opacity: 0.8;
    }

    .fssai-info {
        background: rgba(76, 175, 80, 0.2);
        padding: 10px;
        border-radius: 8px;
        margin-top: 1rem;
        text-align: center;
    }

    /* Modal Overlay */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2000;
    }

    .modal-content {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        max-width: 500px;
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
    }

    .modal-header {
        text-align: center;
        margin-bottom: 1.5rem;
        color: #2e7d32;
    }

    .modal-close {
        position: absolute;
        top: 15px;
        right: 20px;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #666;
    }

    .order-summary {
        background: #f8f9fa;
        padding: 1rem;
        border-radius: 8px;
        margin: 1rem 0;
    }

    .order-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.5rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .order-total {
        font-size: 1.2rem;
        font-weight: bold;
        color: #2e7d32;
        text-align: center;
        margin: 1rem 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-header h1 {
            font-size: 2rem;
        }

        .category-title {
            font-size: 1.5rem;
        }

        .cart-section {
            position: static;
        }

        .company-info {
            flex-direction: column;
            text-align: center;
            gap: 10px;
        }

        .brand-text h1 {
            font-size: 1.3rem;
        }
    }
/* product page */

/* Floating Cart Styles */
.floating-cart-icon {
    position: fixed;
    right: 5%;
    top: 90%;
    transform: translateY(-50%);
    background: #141d30;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-cart-icon:hover {
    transform: translateY(-50%) scale(1.1);
    background:linear-gradient(135deg, #38bdf8, var(--primary-light));
}

.floating-cart-icon i {
    font-size: 24px;
}

.cart-count {
    position: absolute;
    text-align: center;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.floating-cart-panel {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 12px rgba(0,0,0,0.3);
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-header {

    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.cart-header h3 {
    margin: 0;
    color: #333;
}

.close-cart {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

.close-cart:hover {
    color: #333;
}

.cart-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info h6 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.cart-item-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
}

.cart-total {
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
    color: #28a745;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.checkout-btn:hover:not(:disabled) {
    background: #218838;
}

.checkout-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

.empty-cart-message {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 50px;
}

.add-to-cart-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1002;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hidden {
    display: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .floating-cart-panel {
        width: 100%;
        right: -100%;
    }

    .floating-cart-icon {
        width: 50px;
        height: 50px;
        right: 15px;
    }

    .floating-cart-icon i {
        font-size: 20px;
    }
}
/* new */
.product-card {
  display: flex;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px;
  background-color: #fff;
  height: 100%;
}

.product-image-wrapper {
  width: 120px;
  flex-shrink: 0;
}

.product-image {
  width: 260px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.product-content {
  padding-top: 60px;
  padding-left: 180px;
  flex-grow: 1;
}

@media (max-width: 767px) {
  .product-image-wrapper {
    width: 250px;
  }
  .product-image {
    width: 250px;
  }
  .product-card {
    flex-direction: column;
  }
  .product-content {
    padding-top: 0px;
    padding-left: 0px;
    flex-grow: 1;
  }
}
