* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #fffaf2;
    color: #333;
}

/* HEADER */

.main-header {
    background: linear-gradient(135deg, #5a2e0d, #7a3b12);
    color: #fff;
    padding: 18px 12px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 6px;
    margin-bottom: 8px;
}

.main-header h1 {
    font-size: 21px;
    margin-bottom: 4px;
}

.location {
    font-size: 14px;
    opacity: 0.9;
}

.tagline {
    font-size: 13px;
    margin-top: 4px;
    opacity: 0.85;
}

.header-actions {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.header-btn {
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.header-btn.call {
    background: #ff9800;
}

.header-btn.whatsapp {
    background: #25D366;
}
.brand-name {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
}

.brand-name span {
    display: inline-block;
    opacity: 0;
    transform: translateY(15px);
    animation: revealLetter 0.6s forwards;
}

/* Delay for each letter */
.brand-name span:nth-child(1) { animation-delay: 0.05s; }
.brand-name span:nth-child(2) { animation-delay: 0.10s; }
.brand-name span:nth-child(3) { animation-delay: 0.15s; }
.brand-name span:nth-child(4) { animation-delay: 0.20s; }
.brand-name span:nth-child(5) { animation-delay: 0.25s; }
/* space */
.brand-name span:nth-child(6) { animation-delay: 0.30s; }

.brand-name span:nth-child(7) { animation-delay: 0.35s; }
.brand-name span:nth-child(8) { animation-delay: 0.40s; }
.brand-name span:nth-child(9) { animation-delay: 0.45s; }
.brand-name span:nth-child(10){ animation-delay: 0.50s; }
.brand-name span:nth-child(11){ animation-delay: 0.55s; }
/* space */
.brand-name span:nth-child(12){ animation-delay: 0.60s; }

.brand-name span:nth-child(13){ animation-delay: 0.65s; }
.brand-name span:nth-child(14){ animation-delay: 0.70s; }
.brand-name span:nth-child(15){ animation-delay: 0.75s; }
.brand-name span:nth-child(16){ animation-delay: 0.80s; }
/* space */
.brand-name span:nth-child(17){ animation-delay: 0.85s; }

.brand-name span:nth-child(18){ animation-delay: 0.90s; }
.brand-name span:nth-child(19){ animation-delay: 0.95s; }
.brand-name span:nth-child(20){ animation-delay: 1.00s; }
.brand-name span:nth-child(21){ animation-delay: 1.05s; }
.brand-name span:nth-child(22){ animation-delay: 1.10s; }
.brand-name span:nth-child(23){ animation-delay: 1.15s; }
.brand-name span:nth-child(24){ animation-delay: 1.20s; }

@keyframes revealLetter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Already animated brand-name spans irukkum */

/* LOCATION animation */
.brand-location {
    font-size: 14px;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUpLocation 0.6s ease forwards;
    animation-delay: 1.4s; /* after brand name */
}

/* TAGLINE animation */
.brand-tagline {
    font-size: 13px;
    margin-top: 4px;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeScaleTagline 0.6s ease forwards;
    animation-delay: 1.8s; /* after location */
    letter-spacing: 0.5px;
}

/* Keyframes */
@keyframes fadeUpLocation {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeScaleTagline {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slight resize for very small phones */
@media (max-width: 360px) {
    .logo {
        width: 60px;
        height: 60px;
    }
}

/* SLIDER */
.slider {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

/* SECTIONS */
section {
    padding: 20px;
}

h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #5a2e0d;
}

/* PRODUCTS */
.products ul {
    list-style: none;
    max-width: 500px;
    margin: auto;
}

.products li {
    background: #fff;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 6px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.delivery-section {
    padding: 30px 15px;
    background: linear-gradient(135deg, #fff2dc, #ffe4b5);
}

.delivery-card {
    max-width: 420px;
    margin: auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    animation: fadeUp 1s ease;
}

/* Truck animation */
.delivery-icon {
    font-size: 48px;
    animation: moveTruck 2s infinite alternate ease-in-out;
}

.delivery-card h2 {
    margin-top: 10px;
    color: #5a2e0d;
    font-size: 22px;
}

.delivery-main {
    font-size: 16px;
    margin: 12px 0;
    line-height: 1.6;
}

.delivery-points {
    text-align: left;
    margin: 15px 0;
}

.delivery-points p {
    margin: 6px 0;
    font-size: 15px;
}

.delivery-note {
    margin-top: 15px;
    padding: 12px;
    background: #f3e7d9;
    border-radius: 10px;
    font-size: 14px;
}

/* Animations */
@keyframes moveTruck {
    from {
        transform: translateX(-10px);
    }
    to {
        transform: translateX(10px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile extra punch */
@media (max-width: 480px) {
    .delivery-card {
        padding: 22px 16px;
    }

    .delivery-icon {
        font-size: 52px;
    }
}

/* CONTACT */
.contact {
    text-align: center;
}

.contact button {
    margin-top: 10px;
    padding: 12px 20px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

/* FLOATING WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.price {
    font-weight: bold;
    font-size: 16px;
    margin: 8px 0 4px;
    color: #5a2e0d;
}

.product-card h3 {
    font-size: 15px;
}

.product-card span {
    font-size: 13px;
    color: #555;
}

.product-card button {
    margin-top: 8px;
    width: 100%;
    padding: 8px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
}
.contact-section {
    padding: 35px 15px;
    background: linear-gradient(135deg, #ffe9d2, #fff6ec);
}

.contact-card {
    max-width: 420px;
    margin: auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    animation: slideFade 1s ease;
}

.contact-card h2 {
    color: #5a2e0d;
    margin-bottom: 10px;
}

.contact-text {
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-details p {
    font-size: 14px;
    margin: 6px 0;
}

.contact-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 18px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    transform: scale(1.05);
}

/* Animation */
@keyframes slideFade {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.big-footer {
    background: #4a240a;
    color: #fff;
    padding: 35px 15px 20px;
    text-align: center;
}

.footer-block {
    margin-bottom: 25px;
}

.footer-block h3,
.footer-block h4 {
    color: #ffd28a;
    margin-bottom: 8px;
}

.footer-block p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 20px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 15px;
    font-size: 13px;
}

.footer-bottom a {
    color: #ffd28a;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Desktop view */
@media (min-width: 768px) {
    .big-footer {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        text-align: left;
    }

    .footer-bottom {
        grid-column: 1 / -1;
        text-align: center;
    }
}
.call-btn {
    background: #ff9800;
    margin-bottom: 10px;
}
.admin-login {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.login-box {
    background: #fff;
    padding: 20px;
    width: 280px;
    border-radius: 12px;
    text-align: center;
}

.login-box input {
    width: 100%;
    margin: 8px 0;
    padding: 8px;
}

.login-box button {
    width: 100%;
    padding: 8px;
    background: #5a2e0d;
    color: #fff;
    border: none;
    border-radius: 6px;
}
.order-btn {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: #25D366;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.order-btn:hover {
  transform: scale(1.03);
}
/* =========================
   PRODUCT VIDEO SECTION
   ========================= */

.product-video {
  margin: 50px 15px;
  text-align: center;
  animation: fadeSlideUp 1s ease;
}

.product-video h2 {
  font-size: 22px;
  color: #5a2d0c;
  margin-bottom: 5px;
}

.product-video p {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.video-wrapper{
    position:relative;
    max-width:900px;
    margin:auto;
}

.video-wrapper video{
    width:100%;
    border-radius:12px;
}

/* sound button */

.sound-btn{
    position:absolute;
    bottom:15px;
    right:15px;
    background:rgba(0,0,0,0.6);
    color:white;
    border:none;
    padding:8px 12px;
    border-radius:20px;
    cursor:pointer;
    font-size:16px;
}

.sound-btn:hover{
    background:black;
}

/* Video styling */
.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* =========================
   ANIMATIONS
   ========================= */

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =========================
   MOBILE OPTIMIZATION
   ========================= */

@media (max-width: 768px) {

  .product-video {
    margin: 35px 10px;
  }

  .product-video h2 {
    font-size: 18px;
  }

  .product-video p {
    font-size: 13px;
  }

  .video-wrapper {
    border-radius: 10px;
  }

  .video-wrapper video {
    border-radius: 10px;
  }
}
/* =========================
   FLOATING WHATSAPP BUTTON
   ========================= */

/* .whatsapp-float{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 15px rgba(0,0,0,0.25);
    z-index:999;
}

.whatsapp-float img{
    width:36px;
    height:36px;
}
@media (max-width:768px){

    .whatsapp-float{
        width:70px;
        height:70px;
        bottom:18px;
        right:18px;
    }

    .whatsapp-float img{
        width:38px;
        height:38px;
    }

}
.whatsapp-float{
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse{
    0%{transform:scale(1)}
    50%{transform:scale(1.08)}
    100%{transform:scale(1)}
} */

 .whatsapp-float i{
font-size:38px;
color:white;
}

/* =========================
   MOBILE OPTIMIZATION
   ========================= */

@media (max-width: 768px) {

  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    padding: 9px 14px;
    font-size: 13px;
  }

  .whatsapp-float img {
    width: 20px;
    height: 20px;
  }
}
