:root {
    /* Primary Colors */
    --clr-primary: #ffc107; 
    --clr-secondary: #0a5c3d; 
    --clr-dark: #333;
    --clr-dark-alt: #272727;
    --clr-light: #fff;
    --clr-light-alt: #f5f5f5;
    --clr-text-main: rgb(63, 63, 63); 
    --clr-text-scrolled: rgb(0, 0, 0); 
    --clr-text-secondary: #666;
    --clr-bg-section: #f9f9f9;

    --ff-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --fs-base: 14px;

    /* Spacing */
    --padding-header-top: 8px 0;
    --padding-header: 10px 0;
    --gap-nav: 35px;
    --gap-cta: 15px;
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;

    /* Borders & Radius */
    --border-radius-sm: 5px;
    --border-radius-md: 8px;
    --border-radius-full: 25px;
    --border-light: 1px var(--clr-light-alt) solid;
    --border-input: 2px solid #e0e0e0;

    /* Transitions & Shadows */
    --transition-fast: all 0.3s ease;
    --transition-color: color 0.3s ease;
    --shadow-header-scrolled: 0 2px 8px rgba(0,0,0,0.15);
    --shadow-btn-primary: 0 3px 10px rgba(255, 193, 7, 0.3);
    --shadow-btn-primary-hover: 0 5px 15px rgba(255, 193, 7, 0.4);
    --shadow-box: 0 4px 15px rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: var(--ff-body);
    overflow-x: hidden;
}


     
.btn-submit {
    position: relative;
    min-width: 120px;
}

.btn-spinner {
    margin-left: 8px;
}


/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 550px;
    overflow: hidden;
    color: var(--clr-light);
    padding: 100px 0 120px;

    background: url("img/homepage-cover.png") center center / cover no-repeat;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

/* Content should be on top */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;

}

.hero h1 {
    font-size: 55px;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    animation: fadeInUp 1s;
}

.hero-tagline {
    font-size: 18px;
    font-weight: 600;
    color: #e7ad00; /* brand gold */
    margin: 10px 0 15px;
    letter-spacing: 0.3px;
}


.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    animation: fadeInUp 1.2s;
}

.hero-cta {
    display: flex;
    gap: var(--gap-cta);
    animation: fadeInUp 1.4s;
}

.btn-primary {
    background: var(--clr-primary) !important;
    color: var(--clr-dark) !important;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    border: none !important;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
    background: transparent !important;
    color: var(--clr-light) !important;
    border: 2px solid var(--clr-light) !important;
}

.btn-secondary:hover {
    background: var(--clr-light) !important;
    color: var(--clr-secondary) !important;
}



/****Brand Section****/
.featured-brands {
    background: #fbbc28;
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
}

.brands-scroll-list {
    display: flex;
    flex-wrap: nowrap;
    width: 200%;
    gap: 20px;
}

/* Top Row - Scroll to LEFT */
.brands-scroll-list.scroll-left {
    animation: scroll-left 10s linear infinite;
}

/* Bottom Row - Scroll to RIGHT */
.brands-scroll-list.scroll-right {
    animation: scroll-right 10s linear infinite;
}

.carousel-wrapper:hover .brands-scroll-list {
    animation-play-state: paused;
}

.brand-item {
    flex-shrink: 0;
    width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    height: 120px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.brand-item img {
    max-width: 100%;
    max-height: 80px;
    display: block;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
}

/* Animation for LEFT Scroll */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Animation for RIGHT Scroll */
@keyframes scroll-right {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .featured-brands h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .brand-item {
        width: 140px;
        height: 100px;
        padding: 10px 15px;
    }
    
    .brand-item img {
        max-height: 60px;
    }
    
    .brands-scroll-list.scroll-left {
        animation: scroll-left 20s linear infinite;
    }
    
    .brands-scroll-list.scroll-right {
        animation: scroll-right 20s linear infinite;
    }
}

/* Cookie Consent Banner */
#cookieConsent {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

#cookieConsent button {
    transition: all 0.3s ease;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
}

#cookieConsent button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
        
/* Savings Calculator */
.savings-calculator {
     background: var(--clr-primary);
     padding: 20px 0;
     text-align: center;
}
 .calculator-box {
     background: var(--clr-light);
     padding: 50px 40px;
     border-radius: var(--spacing-md);
     box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.savings-calculator h1, .savings-calculator h2 {
     text-align: center;
     color: var(--clr-dark);
     margin-bottom: var(--spacing-sm);
     font-size: 32px;
     font-weight: 700;
}
.savings-icon {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, #ffc107, #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 42px;
    color: #222;
    box-shadow: 0 10px 25px rgba(255,193,7,0.5);
}

 .calculator-box > p {
     text-align: center;
     color: var(--clr-text-main);
     margin-bottom: 40px;
     font-size: 16px;
}
 .input-group-custom {
     text-align: center;
}
 .input-group-custom input {
     width: 100%;
     padding: var(--spacing-md);
     font-size: 24px;
     border: var(--border-input);
     border-radius: var(--border-radius-md);
     text-align: center;
     font-weight: 700;
     color: var(--clr-dark);
     transition: border-color 0.3s;
     margin: 0 auto;
}
 .input-group-custom input:focus {
     outline: none;
     border-color: var(--clr-primary);
}
 .input-group-custom p {
     margin-top: var(--spacing-sm);
     margin-bottom: 0;
     font-size: var(--fs-base);
     color: var(--clr-text-secondary);
}
 .calculate-btn {
     background: var(--clr-primary);
     color: var(--clr-dark);
     border: none;
     padding: var(--spacing-md) 50px;
     font-size: 16px;
     font-weight: 700;
     border-radius: var(--border-radius-full);
     cursor: pointer;
     text-transform: uppercase;
     transition: var(--transition-fast);
     box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}
 .calculate-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}
 .calculate-btn:active {
     transform: translateY(0);
}
 .results {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: var(--spacing-lg);
     margin-top: var(--spacing-xl);
     opacity: 0;
     transition: opacity 0.5s;
}
 .results.show {
     opacity: 1;
}
 .result-card {
     color: var(--clr-primary);
     border-radius: var(--spacing-md);
     text-align: center;
     transition: transform 0.3s;
}
 .result-card:hover {
     transform: translateY(-5px);
}
 .result-value {
     font-size: 32px;
     font-weight: bold;
     margin: 10px 0;
}
 .result-label {
     font-size: 14px;
     color: var(--clr-dark-alt  );
     opacity: 0.9;
}
 .error-message {
     color: #e74c3c;
     text-align: center;
     margin-top: var(--spacing-md);
     font-weight: 500;
     min-height: var(--spacing-lg);
}

/* Services Section */
 .services-section {
     padding: 80px 0;
     background: var(--clr-light);
}
 .services-section h2 {
     font-size: 36px;
     color: var(--clr-dark);
     text-align: center;
     margin-bottom: 20px;
     font-weight: 700;
}
 .services-section .section-subtitle {
     text-align: center;
     color: var(--clr-text-secondary);
     font-size: 18px;
     margin-bottom: 60px;
     max-width: 800px;
     margin-left: auto;
     margin-right: auto;
}
 .service-card {
     background: var(--clr-light);
     padding: 40px 30px;
     box-shadow: var(--shadow-box);
     height: 100%;
     border: 2px solid transparent;
}
 .service-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, var(--clr-secondary) 0%, #0d7a51 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 25px;
     font-size: 35px;
     color: var(--clr-light);
}
 .service-card h3 {
     font-size: 24px;
     color: var(--clr-dark);
     margin-bottom: 15px;
     font-weight: 700;
     text-align: center;
}
 .service-card p {
     font-size: 15px;
     color: var(--clr-text-secondary);
     line-height: 1.8;
     text-align: center;
     margin-bottom: 0;
 }

/* ========== 6 REASONS SECTION ========== */
.solar-reasons-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%, #ecfdf5 100%);
    position: relative;
    overflow: hidden;
}

.solar-reasons-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.solar-reasons-section h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #1f2937;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 17px;
    color: #6b7280;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== 6 REASONS SECTION ========== */
.solar-reasons-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%, #ecfdf5 100%);
    position: relative;
    overflow: hidden;
}

.solar-reasons-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.solar-reasons-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ========== LEFT SIDE - ILLUSTRATION ========== */
.reasons-title {
    font-size: 48px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 16px;
}

.reasons-title .light-text {
    font-weight: 600;
    color: #374151;
}

.reasons-title .brand-text {
    color: #198754;
}

.reasons-subtitle {
    font-size: 16px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 30px;
}

.illustration-wrapper {
  width: 100%;
  max-width: 650px;
  height: 500px;
  margin: 0 auto;
  position: relative;
}

/* Sun */
.sun {
  position: absolute;
  top: 40px;
  right: 70px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, #fff9c4 0%, #ffd700 40%, #ffa500 100%);
  border-radius: 50%;
  box-shadow: 
    0 0 30px rgba(255, 215, 0, 0.8),
    0 0 60px rgba(255, 215, 0, 0.5),
    0 0 90px rgba(255, 165, 0, 0.3);
  animation: sunGlow 4s ease-in-out infinite;
}

.sun::before {
  content: "";
  position: absolute;
  inset: 10px;
  background: radial-gradient(circle, #fffde7 0%, transparent 70%);
  border-radius: 50%;
}

@keyframes sunGlow {
  0%, 100% { 
    box-shadow: 
      0 0 30px rgba(255, 215, 0, 0.8),
      0 0 60px rgba(255, 215, 0, 0.5),
      0 0 90px rgba(255, 165, 0, 0.3);
  }
  50% { 
    box-shadow: 
      0 0 40px rgba(255, 215, 0, 1),
      0 0 80px rgba(255, 215, 0, 0.7),
      0 0 120px rgba(255, 165, 0, 0.5);
  }
}

/* Sun Rays */
.sun-ray {
  position: absolute;
  width: 4px;
  height: 25px;
  background: linear-gradient(to bottom, #ffd700, transparent);
  top: -30px;
  left: 50%;
  transform-origin: center 73px;
  border-radius: 2px;
}

.sun-ray:nth-child(2) { transform: rotate(45deg); }
.sun-ray:nth-child(3) { transform: rotate(90deg); }
.sun-ray:nth-child(4) { transform: rotate(135deg); }
.sun-ray:nth-child(5) { transform: rotate(180deg); }
.sun-ray:nth-child(6) { transform: rotate(225deg); }
.sun-ray:nth-child(7) { transform: rotate(270deg); }
.sun-ray:nth-child(8) { transform: rotate(315deg); }

/* House Container */
.house-container {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 300px;
}

/* Roof */
.roof {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 180px solid transparent;
  border-right: 180px solid transparent;
  border-bottom: 110px solid #6d4c41;
  filter: drop-shadow(0 8px 15px rgba(0,0,0,0.25));
  z-index: 2;
}

.roof::before {
  content: "";
  position: absolute;
  top: 0;
  left: -180px;
  width: 0;
  height: 0;
  border-left: 180px solid transparent;
  border-right: 180px solid transparent;
  border-bottom: 110px solid #5d4037;
  opacity: 0.4;
}

.roof::after {
  content: "";
  position: absolute;
  bottom: -110px;
  left: -180px;
  width: 360px;
  height: 8px;
  background: linear-gradient(to bottom, #4e342e 0%, #3e2723 100%);
  border-radius: 0 0 4px 4px;
}

/* Solar Panel on Roof */
.solar-panel {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 60px;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 25%, #1976d2 50%, #1565c0 75%, #0d47a1 100%);
  border: 4px solid #01579b;
  border-radius: 4px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 3px;
  padding: 5px;
  box-shadow: 
    0 10px 20px rgba(0,0,0,0.3),
    inset 0 0 20px rgba(255,255,255,0.1);
  z-index: 3;
}

.solar-cell {
  background: linear-gradient(135deg, #1976d2 0%, #1e88e5 50%, #2196f3 100%);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.solar-cell::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

/* Wiring removed - particles flow freely */
.wiring {
  position: absolute;
  z-index: 3;
  display: none;
}

.wire {
  display: none;
}

/* Junction Box - removed */
.junction-box {
  display: none;
}

/* House Body */
.house-body {
  position: absolute;
  top: 145px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 180px;
  background: linear-gradient(to bottom right, #fff8e1 0%, #ffecb3 50%, #ffe082 100%);
  border: 3px solid #f57f17;
  box-shadow: 
    0 15px 35px rgba(0,0,0,0.2),
    inset 0 0 30px rgba(255,255,255,0.4);
  z-index: 1;
}

.house-body::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(245, 127, 23, 0.2);
  pointer-events: none;
}

/* Windows */
.window {
  position: absolute;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #b3e5fc 0%, #4fc3f7 50%, #0288d1 100%);
  border: 4px solid #01579b;
  box-shadow: 
    0 4px 8px rgba(0,0,0,0.2),
    inset 0 0 15px rgba(255,255,255,0.4);
  overflow: hidden;
}

.window::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #01579b;
  transform: translateY(-50%);
}

.window::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: #01579b;
  transform: translateX(-50%);
}

.window-left {
  top: 25px;
  left: 35px;
}

.window-right {
  top: 25px;
  right: 35px;
}

/* Door */
.door {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 100px;
  background: linear-gradient(to right, #6d4c41 0%, #8d6e63 20%, #6d4c41 50%, #8d6e63 80%, #6d4c41 100%);
  border: 4px solid #4e342e;
  border-bottom: none;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.4);
}

.door::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 8px;
  right: 8px;
  bottom: 15px;
  border: 2px solid #5d4037;
  border-radius: 4px;
}

.door-knob {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #ffd700 0%, #ffb300 100%);
  border-radius: 50%;
  box-shadow: 
    0 2px 4px rgba(0,0,0,0.4),
    inset 0 1px 2px rgba(255,255,255,0.6);
}

/* Energy Particles flowing through wiring */
.energy-particle {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 15px currentColor, 0 0 25px currentColor;
  z-index: 4;
}

.particle-1 {
  background: radial-gradient(circle, #fff9c4, #ffd700);
  color: #ffd700;
  animation: flowWire1 3.5s ease-in-out infinite;
}

.particle-2 {
  background: radial-gradient(circle, #c8e6c9, #22c55e);
  color: #22c55e;
  animation: flowWire2 3.5s ease-in-out infinite 1.2s;
}

.particle-3 {
  background: radial-gradient(circle, #bbdefb, #60a5fa);
  color: #60a5fa;
  animation: flowWire3 3.5s ease-in-out infinite 2.4s;
}

@keyframes flowWire1 {
  0% {
    top: 130px;
    left: 50%;
    transform: translate(-50%, 0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
  25% {
    top: 168px;
    left: 50%;
  }
  35% {
    top: 170px;
    left: 40.3%;
  }
  65% {
    top: 220px;
    left: 40.3%;
    transform: translate(-50%, 0) scale(1.2);
  }
  85% {
    opacity: 1;
  }
  100% {
    top: 240px;
    left: 40.3%;
    transform: translate(-50%, 0) scale(0);
    opacity: 0;
  }
}

@keyframes flowWire2 {
  0% {
    top: 130px;
    left: 50%;
    transform: translate(-50%, 0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
  25% {
    top: 168px;
    left: 50%;
  }
  35% {
    top: 170px;
    left: 50%;
  }
  50% {
    top: 190px;
    left: 50%;
  }
  65% {
    top: 210px;
    left: 50%;
    transform: translate(-50%, 0) scale(1.2);
  }
  85% {
    opacity: 1;
  }
  100% {
    top: 230px;
    left: 50%;
    transform: translate(-50%, 0) scale(0);
    opacity: 0;
  }
}

@keyframes flowWire3 {
  0% {
    top: 130px;
    left: 50%;
    transform: translate(-50%, 0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
  25% {
    top: 168px;
    left: 50%;
  }
  35% {
    top: 170px;
    left: 59.7%;
  }
  65% {
    top: 220px;
    left: 59.7%;
    transform: translate(-50%, 0) scale(1.2);
  }
  85% {
    opacity: 1;
  }
  100% {
    top: 240px;
    left: 59.7%;
    transform: translate(-50%, 0) scale(0);
    opacity: 0;
  }
}

/* Pine Trees */
.tree {
  position: absolute;
  bottom: 100px;
}

.tree-left {
  left: 30px;
}

.tree-right {
  right: 30px;
}

.tree-trunk {
  width: 15px;
  height: 50px;
  background: linear-gradient(to right, #4e342e 0%, #6d4c41 50%, #5d4037 100%);
  margin: 0 auto;
  border-radius: 3px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

/* Pine tree layers - triangular foliage */
.pine-layer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-bottom: 50px solid #2e7d32;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.2));
}

.pine-layer-1 {
  bottom: 35px;
  border-bottom-color: #1b5e20;
}

.pine-layer-2 {
  bottom: 60px;
  border-bottom-color: #2e7d32;
  border-left-width: 32px;
  border-right-width: 32px;
  border-bottom-width: 45px;
}

.pine-layer-3 {
  bottom: 82px;
  border-bottom-color: #388e3c;
  border-left-width: 28px;
  border-right-width: 28px;
  border-bottom-width: 40px;
}

.pine-layer-4 {
  bottom: 100px;
  border-bottom-color: #43a047;
  border-left-width: 20px;
  border-right-width: 20px;
  border-bottom-width: 30px;
}

/* Ground */
.ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, #9ccc65 0%, #7cb342 50%, #689f38 100%);
  border-radius: 50% 50% 0 0 / 30px 30px 0 0;
}

/* ========== RIGHT SIDE - ACCORDION ========== */
.reasons-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ========== ACCORDION ITEM ========== */
.accordion-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    background: #ffffff;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #f9fafb;
}

.accordion-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #155b2f 0%, #16a34a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
    margin-right: 16px;
    transition: transform 0.3s ease;
}

.accordion-item:hover .accordion-icon-wrapper {
    transform: scale(1.05);
}

.accordion-title {
    flex: 1;
    font-size: 17px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.accordion-toggle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #6b7280;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 24px 20px 24px;
}

.accordion-content-inner {
    padding-top: 4px;
}

.accordion-content p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.reason-tag {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-top: 8px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .solar-reasons-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .reasons-illustration h2 {
        font-size: 40px;
    }
    
    .illustration-wrapper {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .solar-reasons-section {
        padding: 60px 0;
    }
    
    .reasons-illustration h2 {
        font-size: 32px;
    }
    
    .accordion-header {
        padding: 16px 18px;
    }
    
    .accordion-icon-wrapper {
        width: 38px;
        height: 38px;
        font-size: 18px;
        margin-right: 12px;
    }
    
    .accordion-title {
        font-size: 15px;
    }
    
    .accordion-content p {
        font-size: 14px;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 18px 16px 18px;
    }
}

/* ========== TEXT CONTENT ========== */
.reason-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #111827;
    line-height: 1.4;
}

.reason-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 20px;
}

/* ========== BADGE ========== */
.reason-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

/* ========== SOLAR SYSTEM TIPS SECTION ========== */
.solar-tips-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.solar-tips-section h2 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #1f2937;
    position: relative;
}

.solar-tips-section h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 10px;
}

/* ========== VIDEO TIP CARD ========== */
.solar-tip-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    overflow: hidden;
    height: 260px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    position: relative;
}

.solar-tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ========== VIDEO WRAPPER ========== */
.video-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.video-placeholder video,
.video-placeholder iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

/* Optional overlay gradient */
.video-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.25), transparent);
    pointer-events: none;
}

.fb-video-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.fb-video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* ========== TEXT TIP CARD ========== */
.tip-info-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 28px;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.tip-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.14);
    border-color: #dfa702;
}

/* Icon */
.tip-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107, #dfa702);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var();
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(197, 145, 34, 0.35);
}

/* Title */
.tip-info-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

/* Description */
.tip-info-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #6b7280;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .solar-reasons-section h2 {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .reason-card {
        padding: 28px 22px;
    }

    .reason-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .reason-card h4 {
        font-size: 18px;
    }

    .reason-card p {
        font-size: 14px;
    }

    .solar-tip-card {
        height: 220px;
    }

    .solar-tips-section h2 {
        font-size: 26px;
    }
}


/* Contact Us Section */
.contact-us {
    padding: 80px 0;
    background: var(--clr-light-alt);
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: var(--spacing-xl);
    color: var(--clr-dark);
    font-weight: 700;
}

/* Visit Us Section */
.visit-us-section {
    background: #f8f9fa;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-xl);
}

.visit-us-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: var(--spacing-md);
}

.visit-us-section p {
    color: var(--clr-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: #2a5b3c;
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.whatsapp-btn:hover {
    background: #128c26;
    color: white;
    transform: translateY(-2px);
}

.whatsapp-btn i {
    font-size: 20px;
}

/* Company Info */
.company-info {
    margin-bottom: var(--spacing-xl);
}

.company-info strong {
    display: block;
    margin-bottom: var(--spacing-sm);
    color: var(--clr-dark);
    font-size: 18px;
}

.company-info p {
    color: var(--clr-text-secondary);
    line-height: 1.6;
    margin: 0 0 var(--spacing-sm) 0;
}

.company-info .phone-number {
    font-weight: 600;
    color: var(--clr-dark   );
}

/* Hours Section */
.hours-section {
    margin-top: var(--spacing-xl);
}

.hours-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: 1px solid #e0e0e0;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition-fast);
}

.hours-toggle:hover {
    background: #f8f9fa;
}

.hours-toggle i {
    transition: transform 0.3s ease;
}

.hours-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    margin-top: 10px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: #333;
}

.hours-toggle {
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 6px;
}


.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    gap: var(--spacing-md);
}

.contact-detail i {
    color: var(--clr-primary);
    font-size: var(--spacing-lg);
    margin-top: 3px;
    min-width: var(--spacing-lg);
}

.contact-detail strong {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--clr-dark);
    font-size: 16px;
}

.contact-detail p,
.contact-detail span {
    color: var(--clr-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact-form-wrapper {
    padding: 40px;
    border: 1px solid #d7d7d7;
}

.contact-form .form-control {
    padding: var(--spacing-md);
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius-md);
    font-size: var(--fs-base);
    transition: border-color 0.3s;
}

.contact-form .form-control:focus {
    border-color: var(--clr-primary);
    box-shadow: none;
}

.contact-form textarea.form-control {
    resize: vertical;
}

.btn-submit {
    background: var(--clr-secondary);
    color: var(--clr-light);
    padding: var(--spacing-md) 40px;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    transition: var(--transition-fast);
    text-transform: uppercase;
}

.btn-submit:hover {
    background: #085231;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .visit-us-section {
        padding: var(--spacing-md);
    }
    
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Subscription Section */
.subscription-section {
    background-color: var(--clr-secondary);
    color: var(--clr-light);
    padding: 40px 0;
}

.subscription-bar {
    text-align: center;
}

.subscription-bar h3 {
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 700;
}

#subscribe-form {
    max-width: 500px;
    margin: 0 auto;
}

#subscribe-form input {
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    font-size: var(--fs-base);
}

.btn-subscribe {
    background-color: var(--clr-primary);
    color: var(--clr-dark);
    padding: var(--spacing-md) 35px;
    border: none;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.notification {
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 6px;
    color: #fff;
    font-weight: 500;
    animation: fadeIn 0.4s ease;
}

.notification.success { background-color: #28a745; }
.notification.error { background-color: #dc3545; }

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-10px);}
    to {opacity: 1; transform: translateY(0);}
}



/* ========== CATALOG SECTION ========== */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.catalogs-section { 
    padding: 60px 0; 
    background: #fafafa; 
}

.catalog-header { 
    text-align: center; 
    margin-bottom: 40px; 
}

.catalog-header h2 { 
    font-size: 32px; 
    font-weight: 600; 
    color: #1a1a1a; 
    margin-bottom: 8px; 
    letter-spacing: -0.5px; 
}

.catalog-subtitle { 
    font-size: 15px; 
    color: #666; 
    font-weight: 400; 
}

/* ========== FILTER BAR ========== */
.filter-bar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 20px; 
    margin-bottom: 30px; 
    padding: 20px; 
    background: white; 
    border-radius: 12px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    flex-wrap: wrap;
}

.filter-buttons { 
    display: flex; 
    gap: 8px; 
    flex-wrap: wrap; 
    flex: 1;
    min-width: 0;
}

.filter-btn { 
    padding: 10px 20px; 
    background: #f5f5f5; 
    border: 2px solid transparent; 
    border-radius: 25px; 
    font-size: 14px; 
    font-weight: 500; 
    color: #666; 
    cursor: pointer; 
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover { 
    background: #e8e8e8; 
    color: #1a1a1a;
    transform: translateY(-2px);
}

.filter-btn.active { 
    background: #e7ad00; 
    color: white;
    border-color: #d39d00;
    box-shadow: 0 4px 12px rgba(231, 173, 0, 0.3);
}

.filter-btn i { 
    font-size: 12px; 
    margin-right: 6px; 
}

.sort-container { 
    display: flex; 
    align-items: center; 
    gap: 10px;
    min-width: fit-content;
}

.sort-label { 
    font-size: 14px; 
    color: #666; 
    font-weight: 500; 
    white-space: nowrap; 
}

.sort-select { 
    padding: 10px 16px; 
    border: 2px solid #e0e0e0; 
    border-radius: 8px; 
    font-size: 14px; 
    color: #1a1a1a; 
    background: white; 
    cursor: pointer; 
    outline: none; 
    min-width: 180px; 
    transition: all 0.2s ease;
    font-weight: 500;
}

.sort-select:hover { 
    border-color: #e7ad00; 
}

.sort-select:focus { 
    border-color: #e7ad00; 
    box-shadow: 0 0 0 3px rgba(231, 173, 0, 0.1); 
}

/* ========== PRODUCTS GRID ========== */
.products-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 24px; 
}

.product-card { 
    background: white; 
    border-radius: 12px; 
    overflow: hidden; 
    transition: all 0.3s ease; 
    border: 2px solid #e5e7eb;
    display: flex; 
    flex-direction: column;
    position: relative;
}

.product-card:hover { 
    box-shadow: 0 8px 24px rgba(0,0,0,0.12); 
    transform: translateY(-8px); 
    border-color: #e7ad00; 
}

.product-image img { 
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-card:hover .product-image img { 
    transform: scale(1.05); 
}

.product-badge { 
    position: absolute; 
    top: 12px; 
    right: 12px; 
    background: #e7ad00; 
    color: white; 
    padding: 6px 12px; 
    border-radius: 20px; 
    font-size: 10px; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-info { 
    padding: 20px; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
}

.product-brand { 
    font-size: 11px; 
    color: #999; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 6px; 
    font-weight: 600; 
}

.product-name { 
    font-size: 24px;
    font-weight: 700;
    color: #0f5d39;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price { 
    font-size: 35px; 
    font-weight: 700; 
    color: #1a1a1a; 
    margin-bottom: 16px; 
    margin-top: auto; 
}

.preview-stock {
    font-size: 14px;
    color: #6b7280;
}

.product-actions { 
    display: flex; 
    gap: 8px;
    position: relative;
    z-index: 10;
    padding: 15px;
}

.btn-add-cart { 
    flex: 0 0 44px; 
    height: 44px; 
    background: #f5f5f5; 
    border: 2px solid #e0e0e0; 
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    font-size: 16px; 
    color: #1a1a1a; 
}

.btn-add-cart:hover { 
    background: #e7ad00; 
    color: white;
    border-color: #e7ad00;
    transform: scale(1.05);
}

.btn-buy-now { 
    flex: 1; 
    height: 44px; 
    background: #e7ad00; 
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 600; 
    font-size: 14px; 
    color: white; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    border: none;
    cursor: pointer;
}

.btn-buy-now:hover { 
    background: #d39d00; 
    color: white;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(231, 173, 0, 0.3);
}

/* ========== VIEW MORE BUTTON ========== */
.view-more-container { 
    text-align: center; 
    margin-top: 40px; 
}

.btn-view-more { 
    padding: 14px 36px; 
    background: white; 
    color: #1a1a1a; 
    border: 2px solid #e0e0e0; 
    border-radius: 25px; 
    font-size: 14px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
}

.btn-view-more:hover { 
    background: #e7ad00; 
    color: white;
    border-color: #e7ad00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 173, 0, 0.3);
}

.btn-view-more i { 
    font-size: 12px; 
    transition: transform 0.3s ease; 
}

.btn-view-more.expanded i { 
    transform: rotate(180deg); 
}

/* ========== VISIBILITY CONTROLS ========== */
.hidden-product {
    display: none;
}

.show-all .hidden-product {
    display: block;
}

/* Optional: smooth effect */
.product-card {
    transition: all 0.3s ease;
}

/* View more button */
.view-more-container {
    text-align: center;
    margin-top: 40px;
}

.btn-view-more {
    padding: 14px 36px;
    background: white;
    color: #1a1a1a;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-view-more i {
    transition: transform 0.3s ease;
}

.btn-view-more.active i {
    transform: rotate(180deg);
}


/* ========== CART NOTIFICATION ========== */
.cart-notification { 
    position: fixed; 
    top: 20px; 
    right: 20px; 
    background: #1a1a1a; 
    color: white; 
    padding: 16px 24px; 
    border-radius: 8px; 
    box-shadow: 0 8px 24px rgba(0,0,0,0.2); 
    z-index: 10000; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-weight: 500; 
    font-size: 14px; 
    animation: slideInRight 0.3s ease; 
}

@keyframes slideInRight { 
    from { 
        transform: translateX(400px); 
        opacity: 0; 
    } 
    to { 
        transform: translateX(0); 
        opacity: 1; 
    } 
}

@keyframes slideOutRight { 
    from { 
        transform: translateX(0); 
        opacity: 1; 
    } 
    to { 
        transform: translateX(400px); 
        opacity: 0; 
    } 
}

/* ========== PACKAGE OFFERS SECTION ========== */
.package-offers-section {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 2px solid #e5e7eb;
}

.package-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* CARD */
.package-card {
    text-decoration: none;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.35s ease;
    display: block;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* IMAGE WRAPPER */
.package-image-wrapper {
    position: relative;
    overflow: hidden;
}

.package-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.package-card:hover .package-image {
    transform: scale(1.08);
}

/* DARK OVERLAY + CTA */
.package-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    flex-direction: column;
}

.package-overlay h5{
    color: #fff;
}

.package-card:hover .package-overlay {
    opacity: 1;
}

.package-overlay span {
    background: #e7ad00;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
}



/* ========== CHECKOUT STYLES ========== */
#checkoutSection {
    display: none;
    padding: 40px 0;
    background: #fafafa;
}

.checkout-shell {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    padding: 40px 20px;
}

.checkout-main {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.checkout-steps::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.checkout-steps .step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.checkout-steps .step span {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    font-weight: bold;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.checkout-steps .step p {
    font-size: 12px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.checkout-steps .step.active span {
    background: #e7ad00;
    color: white;
    box-shadow: 0 4px 12px rgba(231, 173, 0, 0.3);
}

.checkout-steps .step.active p {
    color: #e7ad00;
    font-weight: 600;
}

.checkout-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.checkout-card {
    margin-bottom: 25px;
}

.checkout-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.checkout-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary {
    background: #e7ad00;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #d39d00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 173, 0, 0.3);
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid #e0e0e0;
    padding: 12px 28px;
    border-radius: 8px;
    color: #666;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.payment-option {
    border: 2px solid #e0e0e0;
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #e7ad00;
    background: #fffbf0;
}

.payment-option.selected-payment {
    border-color: #e7ad00;
    background: #fff8e1;
    box-shadow: 0 4px 12px rgba(231, 173, 0, 0.2);
}

.payment-option h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.payment-option p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

#paymentDetails {
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.total-row {
    font-size: 18px;
    font-weight: 700;
    border-top: 2px solid #e0e0e0;
    margin-top: 10px;
    padding-top: 12px;
}

/* Payment Options Styling */
.payment-options {
    padding: 10px 0;
}

.payment-option {
    border: 2px solid #e0e0e0;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: var(--clr-primary);
    background-color: #f8f9fa;
}

.payment-option input[type="radio"]:checked + label {
    font-weight: bold;
}

.payment-option input[type="radio"]:checked ~ * {
    color: var(--clr-primary);
}

.form-check-input:checked {
    background-color: var(--clr-primary);
    border-color: var(--clr-primary);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
}

.total-row {
    font-weight: bold;
    padding-top: 10px;
}

.checkout-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.summary-box {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.summary-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.confirmation-box {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 60px;
    color: #10b981;
    margin-bottom: 15px;
}

.confirmation-details {
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
    .checkout-shell {
        grid-template-columns: 1fr;
    }

    .checkout-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .filter-bar { 
        flex-direction: column; 
        align-items: stretch; 
        padding: 15px;
    }
    
    .filter-buttons { 
        justify-content: center; 
    }
    
    .sort-container { 
        justify-content: space-between; 
        width: 100%; 
    }
    
    .sort-select { 
        flex: 1; 
    }
    
    .products-grid { 
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); 
        gap: 16px; 
    }
    
    .product-image { 
        height: 250px;
    }

    .package-offers-section {
        margin-top: 40px;
        padding-top: 40px;
    }
    
    .package-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-image {
        height: 220px;
    }

    .checkout-actions {
        flex-direction: column;
    }

    .checkout-steps::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .products-grid { 
        grid-template-columns: 1fr; 
    }
    
    .filter-btn { 
        font-size: 13px; 
        padding: 8px 16px; 
    }
    
    .product-image {
        height: 220px;
    }
}

/* Floating Messenger Button */
.messenger-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    background-color: #0084ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.messenger-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
    color: #fff;
}

.floating-track-btn {
    position: fixed;
    bottom: 100px; /* Positioned above the existing chat icon */
    right: 25px;
    background-color: #ffc107; /* Matching the blue in the logo */
    color: #ffffff !important;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 9999;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.floating-track-btn:hover {
    background-color: #d39d00;
    transform: scale(1.05); /* Slight grow effect on hover */
    color: #ffffff;
}

/* Ensure it doesn't overlap elements on very small mobile screens */
@media (max-width: 480px) {
    .floating-track-btn {
        bottom: 90px;
        right: 15px;
        padding: 10px 15px;
        font-size: 12px;
    }
}

/* Custom Form Styling */
.inspection-form .form-control, 
.inspection-form .form-select {
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.inspection-form .form-control:focus, 
.inspection-form .form-select:focus {
    background-color: #fff !important;
    border-color: #f39c12;
    box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.1);
}

.input-group-text {
    border: 1px solid #e0e0e0;
}

#inspectionBtn:hover {
    background: #e67e22 !important;
    transform: translateY(-2px);
    transition: 0.3s;
}

.book-section .rounded-4 {
    border-radius: 20px !important;
}

.modal-content {
    animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* PROMO BANNER - Paper Cut Style */
        .promo-banner {
            position: relative;
            max-width: 420px;
            height: 438px;
            margin: 0 auto;
        }

        /* Layered Cards */
        .card-layer {
            position: absolute;
            width: 100%;
            height: 420px;
            border-radius: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .card-back {
            background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
            top: 20px;
            left: -15px;
            transform: rotate(-4deg);
            z-index: 1;
            animation: floatBack 6s ease-in-out infinite;
        }

        .card-front {
            background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
            top: 0;
            left: 0;
            z-index: 2;
            transform: rotate(2deg);
            animation: floatFront 5s ease-in-out infinite;
        }

        @keyframes floatBack {
            0%, 100% {
                transform: rotate(-4deg) translateY(0);
            }
            50% {
                transform: rotate(-4deg) translateY(-10px);
            }
        }

        @keyframes floatFront {
            0%, 100% {
                transform: rotate(2deg) translateY(0);
            }
            50% {
                transform: rotate(2deg) translateY(-8px);
            }
        }

        /* Content Container */
        .promo-content {
            position: relative;
            z-index: 3;
            padding: 40px;
            height: 360px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Stars */
        .star {
            position: absolute;
            color: #fff59d;
            font-size: 2.5rem;
            z-index: 4;
            animation: twinkle 2s ease-in-out infinite;
            text-shadow: 0 0 10px rgba(255, 245, 157, 0.8);
        }

        .star-1 {
            top: 30px;
            left: 30px;
            animation-delay: 0s;
        }

        .star-2 {
            top: 40px;
            right: 40px;
            font-size: 2rem;
            animation-delay: 0.7s;
        }

        .star-3 {
            bottom: 90px;
            left: 40px;
            font-size: 1.8rem;
            animation-delay: 1.4s;
        }

        @keyframes twinkle {
            0%, 100% {
                opacity: 0.4;
                transform: scale(1) rotate(0deg);
            }
            50% {
                opacity: 1;
                transform: scale(1.3) rotate(180deg);
            }
        }

        /* Badge */
        .promo-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
            color: var(--clr-light);
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.85rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
            animation: wiggle 1.2s ease-in-out infinite;
            width: fit-content;
        }

        @keyframes wiggle {
            0%, 100% {
                transform: rotate(0deg) scale(1);
            }
            25% {
                transform: rotate(-5deg) scale(1.05);
            }
            75% {
                transform: rotate(5deg) scale(1.05);
            }
        }

        /* Main Offer */
        .promo-offer {
            text-align: left;
        }

        .promo-offer h3 {
            font-size: 2.8rem;
            color: var(--clr-light);
            font-weight: 900;
            margin-bottom: 5px;
            opacity: 0;
            animation: slideInFirst 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
        }

        .promo-offer h3 span {
            display: block;
            font-size: 5rem;
            color: #d32f2f;
            text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
        }

        @keyframes slideInFirst {
            0% {
                opacity: 0;
                transform: translateY(-30px) scale(0.9);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Footer text */
        .promo-footer {
            font-size: 1rem;
            color: var(--clr-light);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            opacity: 0.95;
        }

        /* White Ribbon */
        .ribbon {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--clr-light);
            padding: 20px 60px;
            z-index: 5;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            width: 110%;
        }

        .ribbon::before,
        .ribbon::after {
            content: '';
            position: absolute;
            top: 0;
            width: 0;
            height: 0;
            border-style: solid;
        }

        .ribbon::before {
            left: -25px;
            border-width: 30px 25px 30px 0;
            border-color: transparent var(--clr-light) transparent transparent;
        }

        .ribbon::after {
            right: -25px;
            border-width: 30px 0 30px 25px;
            border-color: transparent transparent transparent var(--clr-light);
        }

        .ribbon h4 {
            font-size: 1.5rem;
            color: var(--clr-dark);
            margin: 0;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0;
            animation: slideInSecond 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
        }

        @keyframes slideInSecond {
            0% {
                opacity: 0;
                transform: scale(0.8);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Order Button */
        .order-btn {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            background: var(--clr-secondary);
            color: var(--clr-light);
            padding: 16px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(10, 92, 61, 0.4);
            z-index: 6;
        }

        .order-btn:hover {
            background: #0d7049;
            transform: translateX(-50%) translateY(-3px);
            box-shadow: 0 8px 25px rgba(10, 92, 61, 0.5);
        }

        /* Demo Catalog Section */
        #catalogs-section {
            padding: 100px 0;
            background: var(--clr-light);
            text-align: center;
        }

        #catalogs-section h2 {
            font-size: 3rem;
            color: var(--clr-dark);
            margin-bottom: 20px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }
        }

    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2.2rem;
        }
        .promo-banner {
            height: 420px;
        }
        .card-layer {
            height: 360px;
        }
        .promo-content {
            height: 360px;
            padding: 30px;
        }
        .promo-offer h3 {
            font-size: 2rem;
        }
        .promo-offer h3 span {
            font-size: 3.5rem;
        }
        .ribbon {
            bottom: 70px;
            padding: 16px 40px;
        }
        .ribbon h4 {
            font-size: 1.2rem;
        }
        .order-btn {
            padding: 14px 32px;
            font-size: 1rem;
        }
    }


/* Title */
.hero-runner h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Description */
.hero-runner p {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 14px;
}

/* CTA (hidden until hover) */
.runner-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-primary);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.hero-runner:hover .runner-cta {
    opacity: 1;
    transform: translateX(0);
}

/* Media Queries (Original values retained, but the use of root variables elsewhere still cleans them up) */
@media (max-width: 991px) {
    .header-container {
        flex-wrap: wrap;
    }

    nav {
        order: 3;
        width: 100%;
        margin-top: var(--spacing-md);
    }

    nav ul {
        justify-content: center;
        gap: var(--spacing-lg);
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-cta {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    nav ul {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .services h2 {
        font-size: 28px;
    }

    .btn {
        width: 100%;
    }
}

/* ========== MOBILE RESPONSIVE FIXES ========== */

/* Base Mobile Adjustments (max-width: 768px) */
@media (max-width: 768px) {
  :root {
    --fs-base: 13px;
    --gap-nav: 20px;
    --spacing-xl: 20px;
    --padding-header: 8px 0;
  }

  /* Hero Section Mobile */
  .hero {
    height: auto;
    min-height: auto;
    padding: 80px 0 60px;
    background-position: center;
  }

  .hero h1 {
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .hero-tagline {
    font-size: 16px;
    margin: 8px 0 12px;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
  }

  /* Hero Runner - Hide or reposition on mobile */
  .hero-runner {
    position: static;
    transform: none;
    width: 100%;
    margin: 30px 0 0;
    right: auto;
    top: auto;
  }

  .hero-runner:hover {
    transform: translateX(0);
  }

  /* Featured Brands Mobile */
  .featured-brands {
    padding: 40px 0;
  }

  .featured-brands h2 {
    font-size: 24px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .brand-item {
    width: 140px;
    height: 100px;
    padding: 10px 15px;
  }

  .brand-item img {
    max-height: 60px;
  }

  /* Savings Calculator Mobile */
  .savings-calculator {
    padding: 40px 0;
  }

  .calculator-box {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .savings-calculator h1,
  .savings-calculator h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .savings-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
    margin-bottom: 15px;
  }

  .calculator-box > p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .input-group-custom input {
    font-size: 20px;
    padding: 12px;
  }

  .calculate-btn {
    padding: 12px 30px;
    font-size: 14px;
    width: 100%;
  }

  .results {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
  }

  .result-card {
    padding: 20px;
  }

  .result-value {
    font-size: 28px;
  }

  .result-label {
    font-size: 13px;
  }

  /* Services Section Mobile */
  .services-section {
    padding: 50px 0;
  }

  .services-section h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .services-section .section-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .service-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-bottom: 20px;
  }

  .service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .service-card p {
    font-size: 14px;
  }

  /* Solar Reasons Section Mobile */
  .solar-reasons-section {
    padding: 50px 0;
  }

  .solar-reasons-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .reasons-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .reasons-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .illustration-wrapper {
    max-width: 100%;
    padding: 0 20px;
  }

  .accordion-header {
    padding: 16px 18px;
  }

  .accordion-icon-wrapper {
    width: 38px;
    height: 38px;
    font-size: 18px;
    margin-right: 12px;
  }

  .accordion-title {
    font-size: 15px;
  }

  .accordion-content p {
    font-size: 14px;
  }

  .accordion-item.active .accordion-content {
    padding: 0 18px 16px 18px;
  }

  .reason-tag {
    font-size: 11px;
    padding: 5px 12px;
  }

  /* Solar Tips Section Mobile */
  .solar-tips-section {
    padding: 50px 0;
  }

  .solar-tips-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .solar-tip-card {
    height: 220px;
    margin-bottom: 20px;
  }

  .tip-info-card {
    padding: 25px 20px;
  }

  .tip-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .tip-info-card h5 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .tip-info-card p {
    font-size: 13px;
  }

  /* Contact Section Mobile */
  .contact-us {
    padding: 50px 0;
  }

  .contact-info h2 {
    font-size: 26px;
    margin-bottom: 25px;
    text-align: center;
  }

  .visit-us-section {
    padding: 20px;
    margin-bottom: 25px;
  }

  .visit-us-section h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .visit-us-section p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .whatsapp-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }

  .company-info strong {
    font-size: 16px;
  }

  .company-info p {
    font-size: 14px;
  }

  .contact-form-wrapper {
    padding: 25px 20px;
  }

  .contact-form .form-control {
    padding: 12px;
    font-size: 14px;
  }

  .contact-detail {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }

  .contact-detail i {
    font-size: 18px;
  }

  .btn-submit {
    padding: 14px 30px;
    font-size: 15px;
  }

  /* Subscription Section Mobile */
  .subscription-section {
    padding: 30px 0;
  }

  .subscription-bar h3 {
    font-size: 22px;
    margin-bottom: 20px;
    padding: 0 20px;
  }

  #subscribe-form {
    max-width: 100%;
    padding: 0 20px;
  }

  #subscribe-form .input-group {
    flex-direction: column;
    gap: 10px;
  }

  #subscribe-form input {
    border-radius: 8px !important;
    width: 100%;
    padding: 12px 15px;
  }

  .btn-subscribe {
    border-radius: 8px !important;
    width: 100%;
    padding: 12px 20px;
  }

  /* Catalog Section Mobile */
  .catalogs-section {
    padding: 40px 0;
  }

  .catalog-header h2 {
    font-size: 24px;
    padding: 0 20px;
  }

  .catalog-subtitle {
    font-size: 14px;
    padding: 0 20px;
  }

  .filter-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 14px;
    overflow: hidden;
  }

  .filter-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

  .filter-buttons::-webkit-scrollbar {
    display: none;
  }

   .filter-btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .sort-container {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }

  .sort-label {
    font-size: 13px;
  }

  .sort-select {
    width: 100%;
    min-width: auto;
    font-size: 13px;
    padding: 10px 14px;
  }
  
  .sort-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    padding: 0 15px;
  }

  .product-card {
    border-radius: 10px;
  }

  .product-image {
     width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
  }

  .product-badge {
    top: 8px;
    right: 8px;
    font-size: 9px;
    padding: 4px 10px;
  }

  .product-info {
    padding: 12px;
  }

  .product-brand {
    font-size: 10px;
    margin-bottom: 4px;
  }

  .product-name {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }

  .product-price {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .preview-stock {
    font-size: 12px;
  }

  .product-actions {
    padding: 10px 12px;
    gap: 6px;
  }

  .btn-add-cart {
    flex: 0 0 38px;
    height: 38px;
    font-size: 14px;
  }

  .btn-buy-now {
    height: 38px;
    font-size: 13px;
  }

  /* Package Offers Mobile */
  .package-offers-section {
    margin-top: 50px;
    padding-top: 40px;
  }

  .package-title {
    font-size: 24px;
    margin-bottom: 30px;
    padding: 0 20px;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .package-image {
    height: 200px;
  }

  .package-overlay span {
    font-size: 13px;
    padding: 10px 24px;
  }

  /* Checkout Mobile */
  #checkoutSection {
    padding: 30px 0;
  }

  .checkout-shell {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 20px 15px;
  }

  .checkout-main {
    padding: 20px 15px;
    border-radius: 10px;
  }

  .checkout-steps {
    margin-bottom: 25px;
  }

  .checkout-steps::before {
    display: none;
  }

  .checkout-steps .step span {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .checkout-steps .step p {
    font-size: 11px;
  }

  .checkout-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .checkout-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .checkout-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }

  .payment-methods {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 20px 0;
  }

  .payment-option {
    padding: 15px;
  }

  .payment-option h5 {
    font-size: 15px;
  }

  .payment-option p {
    font-size: 12px;
  }

  #paymentDetails {
    padding: 15px;
    margin-top: 15px;
  }

  .summary-row {
    font-size: 13px;
    padding: 6px 0;
  }

  .total-row {
    font-size: 16px;
    padding-top: 10px;
  }

  .checkout-sidebar {
    position: static;
  }

  .summary-box {
    padding: 15px;
    border-radius: 10px;
  }

  .summary-box h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .confirmation-box {
    padding: 30px 15px;
  }

  .success-icon {
    font-size: 50px;
  }

  .confirmation-details {
    padding: 15px;
    margin: 15px 0;
  }

  /* Messenger Float Mobile */
  .messenger-float {
    right: 15px;
    bottom: 15px;
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  /* Notification Mobile */
  #notification-container {
    top: 10px;
    right: 10px;
    left: 10px;
  }

  .notification {
    padding: 12px 15px;
    font-size: 14px;
  }

  /* Cart Notification Mobile */
  .cart-notification {
    top: 10px;
    right: 10px;
    left: 10px;
    padding: 12px 15px;
    font-size: 13px;
  }

  /* Cookie Consent Mobile */
  #cookieConsent {
    padding: 15px !important;
  }

  #cookieConsent button {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* View More Button Mobile */
  .btn-view-more {
    padding: 12px 28px;
    font-size: 13px;
  }

  .no-products {
    padding: 40px 20px;
  }

  .no-products i {
    font-size: 36px;
  }

  .no-products p {
    font-size: 14px;
  }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .hero-tagline {
    font-size: 14px;
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .savings-calculator h1,
  .savings-calculator h2 {
    font-size: 20px;
  }

  .services-section h2 {
    font-size: 22px;
  }

  .reasons-title {
    font-size: 24px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .product-image {
    height: 200px;
    padding: 20px;
  }

  .product-name {
    font-size: 15px;
  }

  .product-price {
    font-size: 24px;
  }

  .filter-btn {
    font-size: 12px;
    padding: 7px 14px;
  }

  .checkout-title {
    font-size: 20px;
  }

  .package-title {
    font-size: 20px;
  }
}

/* Landscape Mobile Orientation */
@media (max-width: 896px) and (orientation: landscape) {
  .hero {
    min-height: 400px;
    padding: 60px 0 40px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-runner {
    position: static;
    margin-top: 20px;
  }

  .solar-reasons-container {
    gap: 30px;
  }

  .accordion-header {
    padding: 12px 16px;
  }
}

/* Tablet Specific (768px - 991px) */
@media (min-width: 769px) and (max-width: 991px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .solar-reasons-container {
    grid-template-columns: 1fr;
  }

  .filter-buttons {
    flex-wrap: wrap;
  }

  .checkout-shell {
    grid-template-columns: 1fr;
  }
}

/* Large Tablets (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero h1 {
    font-size: 45px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-runner {
    right: 20px;
    width: 240px;
    padding: 18px 20px;
  }
}

/* Print Styles */
@media print {
  .hero,
  .messenger-float,
  .cart-notification,
  #notification-container,
  .whatsapp-btn,
  .btn-subscribe {
    display: none;
  }

  .checkout-shell {
    grid-template-columns: 1fr;
  }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .product-image img,
  .brand-item img,
  .package-image {
    image-rendering: -webkit-optimize-contrast;
  }
}