/* 
   CEYSU - Premium CSS Design System
*/

:root {
    /* Color Palette */
    --primary-blue: #00509E;
    --secondary-blue: #48CAE4;
    --accent-cyan: #90E0EF;
    --dark-blue: #023E8A;
    --text-dark: #2B2D42;
    --text-light: #8D99AE;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    
    /* Gradients */
    --water-gradient: linear-gradient(135deg, #0077B6 0%, #48CAE4 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 80, 158, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 80, 158, 0.15);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Classes */
.text-center { text-align: center; }
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--water-gradient);
    border-radius: 2px;
}
.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--water-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(72, 202, 228, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 202, 228, 0.6);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}
.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Header New Styles */
.site-header {
    background-color: var(--white);
    padding-bottom: 20px;
}

/* Top Bar New */
.top-bar-new {
    background-color: #0d3b84;
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 400;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left {
    display: flex;
    align-items: center;
}
.top-bar-left .top-brand-name {
    font-weight: 700;
}
.top-bar-left .divider {
    margin: 0 10px;
    opacity: 0.5;
}
.top-bar-left .top-brand-sub {
    opacity: 0.8;
}
.top-bar-center {
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}
.top-bar-right .time-info, .top-bar-right .phone-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
}

/* Main Header */
.main-header {
    background: var(--white);
    padding: 25px 0;
}
.main-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Area */
.logo-area .logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-icon-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #0d3b84;
    line-height: 1;
}
.logo-icon-text .logo-icon {
    font-size: 1.8rem;
    margin-bottom: -5px;
}
.logo-icon-text .logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.brand-text {
    display: flex;
    flex-direction: column;
    border-left: 2px solid #eaeaea;
    padding-left: 15px;
    line-height: 1.2;
}
.brand-text .brand-title {
    color: #0d3b84;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}
.brand-text .brand-subtitle {
    color: #777;
    font-size: 0.9rem;
}

/* Search Area */
.search-area {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
}
.search-form {
    display: flex;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #ddd;
}
.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.search-input::placeholder {
    color: #aaa;
}
.search-btn {
    background: #0d3b84;
    color: var(--white);
    border: none;
    padding: 0 25px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.2s;
}
.search-btn:hover {
    background: #092c66;
}

/* Icons Area */
.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}
.action-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}
.action-item > i, .action-item .icon-wrapper > i {
    font-size: 1.8rem;
    color: #0d3b84;
}
.action-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.action-title {
    font-size: 0.8rem;
    color: #777;
}
.action-desc {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}
.icon-wrapper {
    position: relative;
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #0d3b84;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation Bar */
.main-nav {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 8px 15px;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
}
.nav-left .categories-btn {
    background: #0d3b84;
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    white-space: nowrap;
}
.nav-center {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}
.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
}
.nav-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #444;
    white-space: nowrap;
}
.nav-links a.active, .nav-links a:hover {
    color: #0d3b84;
}
.nav-links i {
    font-size: 1.1rem;
    color: #666;
}
.nav-links a.active i, .nav-links a:hover i {
    color: #0d3b84;
}
.nav-right .delivery-badge {
    background: #f0f7ff;
    padding: 8px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.delivery-icon {
    color: #0d3b84;
    font-size: 1.5rem;
}
.delivery-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    white-space: nowrap;
}
.del-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0d3b84;
}
.del-desc {
    font-size: 0.75rem;
    color: #555;
}

/* Features Bar */
.features-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafe;
    border-radius: 12px;
    padding: 15px 30px;
}
.feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.feat-icon i {
    font-size: 1.6rem;
    color: #0d3b84;
}
.feat-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.feat-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0d3b84;
}
.feat-desc {
    font-size: 0.8rem;
    color: #666;
}
.feat-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

/* Hero Slider Section */
.hero-slider-wrapper {
    position: relative;
    padding-top: 10px;
}

.hero-slider {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #e6f0fa; /* Fallback light blue */
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 45%, rgba(255, 255, 255, 0) 100%), url('../images/slider-bottle.png');
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hero-slide {
    display: none;
    padding: 60px 40px;
}
.hero-slide.active {
    display: block;
}

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

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: #0d3b84;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.slider-arrow:hover {
    background: #0d3b84;
    color: var(--white);
}
.prev-arrow {
    left: 20px;
}
.next-arrow {
    right: 20px;
}

/* Pagination Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 100;
}
.slider-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(13, 59, 132, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-dots .dot.active {
    background: #0d3b84;
    width: 12px;
    height: 12px;
    margin-top: -2px; /* vertically align larger active dot */
}

/* Hero Left Content */
.hero-left {
    flex: 1;
    max-width: 500px;
    z-index: 10;
    text-align: center;
    order: 2;
    transform: translateX(-50px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f4fa;
    color: #0d3b84;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    color: #0d3b84;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.hero-subtitle-cursive {
    font-family: 'Caveat', cursive;
    color: #2196F3;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-desc {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}
.hero-desc strong {
    color: #0d3b84;
}

/* Mini Features inside Left */
.hero-mini-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2.5rem;
}
.mini-feat {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mini-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.mini-feat-text {
    display: flex;
    flex-direction: column;
}
.mini-feat-text strong {
    color: #0d3b84;
    font-size: 0.85rem;
}
.mini-feat-text span {
    color: #666;
    font-size: 0.75rem;
}
.mini-feat-divider {
    width: 1px;
    height: 30px;
    background: rgba(0,0,0,0.1);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.btn-shop {
    background: #0d3b84;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.btn-shop:hover {
    background: #0a2d66;
}
.btn-whatsapp-order {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    color: #0d3b84;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.btn-whatsapp-order:hover {
    background: var(--white);
}
.btn-whatsapp-order i {
    font-size: 1.5rem;
}
.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.btn-text span {
    font-size: 0.7rem;
    color: #555;
}
.btn-text strong {
    font-size: 0.95rem;
    color: #0d3b84;
}

/* Hero Center Product */
.hero-center {
    flex: 1;
    display: flex;
    justify-content: center;
    z-index: 5;
    position: relative;
    order: 1;
}
.product-showcase img {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
}

/* Hero Right Info Card */
.hero-right {
    z-index: 10;
    order: 3;
}
.hero-info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    width: 260px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.info-row {
    display: flex;
    align-items: center;
    gap: 15px;
}
.info-icon {
    color: #0d3b84;
    font-size: 1.4rem;
    width: 30px;
    display: flex;
    justify-content: center;
}
.info-text {
    display: flex;
    flex-direction: column;
}
.info-text strong {
    color: #0d3b84;
    font-size: 0.85rem;
    margin-bottom: 2px;
}
.info-text span {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.2;
}
.info-row-divider {
    height: 1px;
    background: rgba(0,0,0,0.05);
    margin: 15px 0;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--white);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.feature-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}
.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--water-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(72, 202, 228, 0.3);
}
.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.feature-card p {
    color: var(--text-light);
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: var(--bg-light);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}
.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.product-img-wrapper {
    height: 300px;
    background: linear-gradient(180deg, #F0F8FF 0%, var(--white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.product-img-wrapper img {
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    z-index: 2;
}
.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}
/* Abstract water drop shape behind product */
.product-img-wrapper::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--accent-cyan);
    opacity: 0.2;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite alternate;
    z-index: 1;
}
@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}
.product-info {
    padding: 2rem;
    text-align: center;
}
.product-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.product-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Call to Action */
.cta-section {
    padding: 6rem 0;
    background: var(--water-gradient);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Background subtle waves could be added here */
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}
.cta-content h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.cta-section .btn-outline {
    border-color: var(--white);
    color: var(--white);
}
.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Site Footer */
:root {
  --footer-navy: #07103b;
  --footer-navy-light: #111c55;
  --footer-purple: #861174;
  --footer-purple-light: #a12b8c;
  --footer-blue: #174aaa;
  --footer-text: #111942;
  --footer-muted: #5f6681;
  --footer-border: #e6eaf4;
  --footer-white: #ffffff;
  --footer-green: #2eae51;
}

.site-footer {
  width: 100%;
  margin-top: 60px;
  color: var(--footer-text);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--footer-white);
}

.footer-container {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.footer-main {
  position: relative;
  overflow: hidden;
  padding: 65px 0 50px;
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('../images/footer-wave-new.png') no-repeat center center;
  background-size: cover;
}

/* Pseudo elements removed because image is now full background */

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.85fr) 1.25fr;
  gap: 48px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
}

.footer-brand > p {
  max-width: 330px;
  margin: 0;
  color: var(--footer-muted);
  font-size: 16px;
  line-height: 1.9;
}

.brand-features {
  display: flex;
  margin-top: 30px;
}

.brand-feature {
  position: relative;
  width: 33.333%;
  padding: 0 18px;
  text-align: center;
}

.brand-feature:first-child {
  padding-left: 0;
}

.brand-feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  width: 1px;
  height: 105px;
  background: var(--footer-border);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: var(--footer-blue);
  background: #eef4ff;
  font-size: 24px;
}

.brand-feature strong,
.brand-feature small {
  display: block;
}

.brand-feature strong {
  margin-bottom: 7px;
  color: var(--footer-text);
  font-size: 17px;
}

.brand-feature small {
  color: var(--footer-muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer-column h3,
.footer-action-area h3 {
  position: relative;
  margin: 0 0 30px;
  padding-bottom: 14px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 2px;
  background: var(--footer-purple);
}

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

.footer-column li + li {
  margin-top: 19px;
}

.footer-column a {
  color: var(--footer-text);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column li a:hover {
  display: inline-block;
  color: var(--footer-purple);
  transform: translateX(4px);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--footer-text);
  font-size: 15px;
  line-height: 1.6;
}

.contact-item > i {
  flex: 0 0 24px;
  margin-top: 3px;
  color: var(--footer-blue);
  font-size: 21px;
  text-align: center;
}

.contact-item strong {
  font-size: 17px;
}

.contact-link {
  text-decoration: none;
}

.contact-link:hover span {
  color: var(--footer-purple);
}

.footer-action-area {
  padding: 45px 0;
  color: var(--footer-white);
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(90, 88, 205, 0.2),
      transparent 32%
    ),
    linear-gradient(110deg, #080f36 0%, #10194d 55%, #071033 100%);
}

.action-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 0.75fr 1fr;
  gap: 45px;
}

.action-grid > div:not(:last-child) {
  padding-right: 35px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-action-area h3 {
  margin-bottom: 16px;
  padding: 0;
  font-size: 18px;
}

.quick-order p {
  max-width: 320px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-width: 300px;
  padding: 15px 22px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #27a946, #5bc565);
  box-shadow: 0 12px 30px rgba(28, 167, 67, 0.22);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 17px 35px rgba(28, 167, 67, 0.3);
}

.whatsapp-button > i {
  font-size: 34px;
}

.whatsapp-button span,
.whatsapp-button strong {
  display: block;
}

.whatsapp-button span {
  font-size: 17px;
  font-weight: 700;
}

.whatsapp-button strong {
  margin-top: 4px;
  font-size: 18px;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 12px;
}

.area-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(139, 25, 126, 0.74),
    rgba(76, 38, 126, 0.8)
  );
  font-size: 15px;
  font-weight: 700;
}

.area-list .wide {
  grid-column: span 2;
}

.social-links {
  display: flex;
  gap: 13px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  background: var(--footer-purple);
  transform: translateY(-3px);
}

.dealer-card {
  align-self: center;
  padding: 28px;
  border: 1px solid rgba(161, 178, 255, 0.5);
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(36, 57, 131, 0.72),
    rgba(18, 29, 82, 0.85)
  );
}

.dealer-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
}

.dealer-title i {
  font-size: 34px;
}

.dealer-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.footer-payment {
  color: #fff;
  background: #091139;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.payment-row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 42px;
  min-height: 92px;
}

.secure-payment {
  display: flex;
  align-items: center;
  gap: 13px;
}

.secure-payment > i {
  font-size: 26px;
}

.secure-payment span,
.secure-payment strong,
.secure-payment small {
  display: block;
}

.secure-payment strong {
  font-size: 14px;
  text-transform: uppercase;
}

.secure-payment small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 43px;
  padding: 0 12px;
  border-radius: 5px;
  color: #131b54;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.cash-payment {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: 10px;
  font-size: 14px;
}

.cash-payment i {
  font-size: 24px;
}

.legal-links {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  text-decoration: none;
}

.legal-links a:hover {
  color: #fff;
}

.footer-copyright {
  padding: 19px 0;
  color: rgba(255, 255, 255, 0.7);
  background: #070e31;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-brand {
    grid-row: span 2;
  }

  .action-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .action-grid > div:nth-child(2) {
    border-right: 0;
  }

  .payment-row {
    grid-template-columns: 1fr 1fr;
    padding: 22px 0;
  }

  .legal-links {
    grid-column: span 2;
    justify-content: flex-start;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 768px) {
  .footer-container {
    width: min(100% - 30px, 1440px);
  }

  .footer-main {
    padding: 45px 0 35px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 25px;
  }

  .footer-brand {
    grid-column: span 2;
    grid-row: auto;
  }

  .footer-brand > p {
    max-width: 100%;
  }

  .footer-contact {
    grid-column: span 2;
  }

  .action-grid {
    grid-template-columns: 1fr;
  }

  .action-grid > div:not(:last-child) {
    padding: 0 0 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .payment-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .legal-links {
    grid-column: auto;
    flex-wrap: wrap;
    gap: 15px 22px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .brand-features {
    flex-direction: column;
    gap: 18px;
  }

  .brand-feature {
    display: grid;
    grid-template-columns: 55px 1fr;
    width: 100%;
    padding: 0;
    text-align: left;
  }

  .brand-feature:not(:last-child)::after {
    display: none;
  }

  .feature-icon {
    grid-row: span 2;
    margin: 0;
  }

  .brand-feature strong,
  .brand-feature small {
    padding-left: 12px;
  }

  .whatsapp-button {
    width: 100%;
    min-width: 0;
  }

  .area-list {
    grid-template-columns: 1fr;
  }

  .area-list .wide {
    grid-column: auto;
  }

  .payment-methods {
    flex-wrap: wrap;
  }
}

/* Quick Order Section */
.quick-order-section {
    background: #f8fafd;
    padding: 60px 0;
    margin-top: 40px;
    border-radius: 20px;
}
.section-header {
    margin-bottom: 40px;
}
.section-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0d3b84;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.section-icon i {
    font-size: 1.5rem;
}
.section-title {
    color: #0d3b84;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.section-subtitle {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 15px;
}
.section-wave {
    display: flex;
    justify-content: center;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: -5px;
    background: #0d3b84;
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 10;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #2196F3;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
}
.wishlist-btn:hover {
    color: #0d3b84;
}

.product-img {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.product-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0d3b84;
    margin-bottom: 5px;
    line-height: 1.3;
    min-height: 40px; /* Aligns titles with 2 lines */
}
.product-desc {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    margin-top: auto; /* Pushes to bottom */
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 15px;
}
.qty-btn {
    background: none;
    border: none;
    color: #555;
    font-size: 1rem;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-btn:hover {
    color: #0d3b84;
}
.qty-input {
    width: 30px;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    background: transparent;
}

.btn-add-cart {
    background: #0d3b84;
    color: var(--white);
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s;
}
.btn-add-cart:hover {
    background: #0a2d66;
}

/* Quick Info Banner */
.quick-info-banner {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    margin-bottom: 30px;
}
.q-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}
.q-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.q-text {
    display: flex;
    flex-direction: column;
}
.q-text strong {
    color: #0d3b84;
    font-size: 0.9rem;
    margin-bottom: 2px;
}
.q-text span {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.2;
}
.q-divider {
    width: 1px;
    height: 40px;
    background: #eaeaea;
    margin: 0 20px;
}

/* Whatsapp CTA */
.whatsapp-cta-wrapper {
    display: flex;
    justify-content: center;
}
.whatsapp-cta-pill {
    background: #f0f4f8;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}
.w-cta-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}
.w-cta-left i {
    color: #25D366;
    font-size: 1.5rem;
}
.w-cta-btn {
    background: #0d3b84;
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
}
.w-cta-btn:hover {
    background: #0a2d66;
    color: var(--white);
}

/* Categories Section */
.categories-section {
    position: relative;
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
}
.water-splash {
    position: absolute;
    top: 0;
    width: 300px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}
.splash-left {
    left: -50px;
    background-image: url('../images/splash-left.png');
}
.splash-right {
    right: -50px;
    background-image: url('../images/splash-right.png');
}

.categories-section .container {
    position: relative;
    z-index: 2;
}

.categories-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 20px;
}
.categories-grid::-webkit-scrollbar {
    height: 6px;
}
.categories-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.category-card {
    flex: 1;
    min-width: 140px;
    background: var(--white);
    border: 1px solid #eef2f6;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.category-card:hover, .category-card.active {
    box-shadow: 0 10px 25px rgba(13,59,132,0.1);
    transform: translateY(-5px);
    border-color: #dbeafe;
}

.cat-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
.cat-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.cat-info {
    padding: 0 15px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.cat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f0f7ff;
    color: #2196F3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: all 0.3s;
}
.category-card:hover .cat-icon, .category-card.active .cat-icon {
    background: #0d3b84;
    color: var(--white);
}

.cat-title {
    color: #0d3b84;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    margin-top: auto;
}

.cat-line {
    width: 25px;
    height: 3px;
    background: #2196F3;
    border-radius: 2px;
    transition: all 0.3s;
}
.category-card:hover .cat-line, .category-card.active .cat-line {
    background: #0d3b84;
    width: 40px;
}

/* Info Section */
.info-section {
    padding: 60px 0;
    background: #fdfdfd;
}
.info-container {
    background: #ffffff;
    border: 1px solid #f0f2f5;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.info-top-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Info Left */
.info-left {
    position: relative;
}
.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f4f0ff;
    color: #6b46c1;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.info-main-title {
    color: #0d3b84;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 5px;
}
.info-sub-title {
    color: #6b46c1;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.info-desc {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 90%;
}
.info-main-img {
    margin-top: 20px;
    position: relative;
    height: 250px;
}
.info-main-img img {
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Info Right */
.info-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-card {
    background: #ffffff;
    border: 1px solid #f0f2f5;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.info-card-content {
    flex: 1;
}
.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.info-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f4f0ff;
    color: #6b46c1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.info-card-title {
    color: #0d3b84;
    font-size: 1.1rem;
    font-weight: 700;
}
.info-card-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}
.info-card-graphic {
    width: 220px;
    flex-shrink: 0;
    text-align: center;
}
.info-card-graphic img {
    max-width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}

.info-deposit-box {
    background: #f8f6fb;
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}
.deposit-icon {
    font-size: 2rem;
    color: #6b46c1;
}
.deposit-text {
    display: flex;
    flex-direction: column;
}
.deposit-text span {
    color: #555;
    font-size: 0.8rem;
    font-weight: 600;
}
.deposit-text strong {
    color: #6b46c1;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.1;
}

/* Info Features Row */
.info-features-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: #fafafc;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
}
.info-feat {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
}
.i-feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eef2f6;
    color: #0d3b84;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.info-feat h5 {
    color: #0d3b84;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.info-feat p {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
}
.info-feat-divider {
    width: 1px;
    height: 60px;
    background: #e2e8f0;
    margin-top: 10px;
}

/* Info Bottom Banner */
.info-bottom-banner {
    background: #f8fafd;
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.i-banner-left {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-size: 0.95rem;
    font-weight: 600;
}
.i-banner-left i {
    font-size: 1.3rem;
}
.btn-info-whatsapp {
    background: #0d3b84;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-info-whatsapp:hover {
    background: #0a2d66;
    color: var(--white);
}
.btn-info-whatsapp i {
    font-size: 1.6rem;
}
.btn-info-text {
    display: flex;
    flex-direction: column;
}
.btn-info-text span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.8);
}
.btn-info-text strong {
    font-size: 1rem;
    font-weight: 700;
}

/* --- Mobile Responsiveness Fixes --- */
@media (max-width: 992px) {
    .top-bar-new { display: none; }
    
    .main-header-inner {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-area {
        margin: 15px 0;
        max-width: 100%;
    }
    
    .main-nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-links {
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
    }
    
    .nav-right {
        display: none;
    }

    .slide-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-left {
        transform: translateX(0);
        order: 2;
        margin-bottom: 2rem;
    }
    
    .hero-center {
        order: 1;
        margin-bottom: 1.5rem;
    }
    
    .hero-right {
        order: 3;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .features-bar {
        flex-direction: column;
        gap: 20px;
    }
    
    .feat-divider {
        width: 100%;
        height: 1px;
    }
    
    .quick-info-banner {
        flex-direction: column;
        gap: 15px;
    }
    
    .q-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
    
    .info-top-grid {
        grid-template-columns: 1fr;
    }
    
    .info-features-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .info-feat-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
    
    .info-bottom-banner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle-cursive {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .whatsapp-cta-pill {
        flex-direction: column;
        padding: 15px;
        border-radius: 16px;
        text-align: center;
    }
    
    .category-card {
        min-width: 120px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .info-card-header {
        flex-direction: column;
    }
}
