/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

/* Body Styling */
body {
    font-family: 'Raleway', sans-serif;
    margin:0;
    padding: 0;
    background: radial-gradient(circle, #ffffff, #eeeeee, #FDFEFE);
    color: #4D4D4D;
    
}

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

/* Navbar Base Styles */
header {
    position:relative;
    top: 0;
    z-index: 1000;
    /* background: rgba(44, 62, 80, 0.95); Navbar Background */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}
.dropdown-toggle::after {
    content: ' ▼';
    font-size: 12px;
    margin-left: 5px;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    max-width: 1200px;
    margin: auto;
}

nav a {
    text-decoration: none;
    color: #031a5f;
    font-size: 15px;
    font-weight: 600;
    margin: 0 10px;
    font-weight: bolder;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #1ABC9C; /* Highlight color on hover */
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.logo span {
    font-size: 20px;
    font-family: 'Pacifico', cursive; /* Brand font */
    color: #1ABC9C;
}

/* Navigation Items */
.nav-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Dropdown Menu */
/* ===================================
   ULTRA-SMOOTH PREMIUM DROPDOWN MENU
=================================== */
.nav-item {
    position: relative;
}

/* Dropdown Base */
.nav-item .dropdown {
    display: flex;
    flex-direction: column; /* Ensures single-row stacked layout */
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 220px;
    background: rgba(28, 37, 51, 0.96); /* Deep navy tone */
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transform: translateY(15px) scale(0.97);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 999;
}

/* Dropdown Items */
.nav-item .dropdown a {
    display: block;
    width: 100%;
    padding: 12px 22px;
    color: #f8f8f8;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.35s ease;
    position: relative;
    box-sizing: border-box;
    letter-spacing: 0.4px;
}

/* Hover Effect — Subtle Slide + Glow */
.nav-item .dropdown a:hover {
    background: linear-gradient(to right, rgba(255, 126, 95, 0.25), rgba(255, 213, 102, 0.22));
    color: #FFD166;
    padding-left: 28px;
    text-shadow: 0 0 8px rgba(255, 209, 102, 0.7);
}

/* Optional arrow animation */
.nav-item .dropdown a::after {
    content: '›';
    position: absolute;
    right: 20px;
    font-size: 14px;
    color: #FFD166;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.nav-item .dropdown a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Remove border for last item */
.nav-item .dropdown a:last-child {
    border-bottom: none;
}

/* Smooth Dropdown Animation */
.nav-item:hover .dropdown {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Floating arrow under parent item */
.nav-item:hover::after {
    content: '';
    position: absolute;
    top: 96%;
    left: 25px;
    border-width: 7px;
    border-style: solid;
    border-color: rgba(28, 37, 51, 0.96) transparent transparent transparent;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
}

/* Optional entry animation for each item */
.nav-item:hover .dropdown a {
    animation: dropdownFade 0.4s ease forwards;
    opacity: 0;
}

.nav-item:hover .dropdown a:nth-child(1) { animation-delay: 0.05s; }
.nav-item:hover .dropdown a:nth-child(2) { animation-delay: 0.1s; }
.nav-item:hover .dropdown a:nth-child(3) { animation-delay: 0.15s; }
.nav-item:hover .dropdown a:nth-child(4) { animation-delay: 0.2s; }

@keyframes dropdownFade {
    from {
        transform: translateY(-8px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}



/* Login Icon */
nav a.login-icon {
    display: flex;
    align-items: center;
    color: #031a5f;
    font-weight: bolder;
    font-size: 15px;
    font-weight: bold;
}

nav a.login-icon:hover {
    color: #1ABC9C;
    text-decoration: underline;
}

nav a.login-icon i {
    margin-right: 8px;
}

/* Hamburger Menu for Mobile */
/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Hamburger Lines */
.hamburger div {
    width: 100%;
    height: 3px;
    background-color: #00E0C6;
    border-radius: 2px;
    transition: 0.4s ease;
}

/* Animation: Hamburger → X */
nav.active .hamburger div:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
nav.active .hamburger div:nth-child(2) {
    opacity: 0;
}
nav.active .hamburger div:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


/* Responsive Styles */
@media screen and (max-width: 768px) {

    /* SLIDE + FADE MENU */
    .nav-items {
        display: none;
        flex-direction: column;
        background: #243447;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        padding: 10px 0;
        border-radius: 0 0 10px 10px;
        overflow: hidden;

        opacity: 0;
        transform: translateY(-25px);
        transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);  /* Smooth */
    }

    /* When ACTIVE → slide down */
    nav.active .nav-items {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    /* MENU LINK ANIMATION (staggered fade + slide) */
    .nav-items a {
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        color: white;
        font-size: 17px;

        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.35s ease;
    }

    nav.active .nav-items a {
        opacity: 1;
        transform: translateY(0);
    }

    /* Delay each link slightly (stagger animation) */
    .nav-items a:nth-child(1) { transition-delay: 0.05s; }
    .nav-items a:nth-child(2) { transition-delay: 0.10s; }
    .nav-items a:nth-child(3) { transition-delay: 0.15s; }
    .nav-items a:nth-child(4) { transition-delay: 0.20s; }
    .nav-items a:nth-child(5) { transition-delay: 0.25s; }

    .nav-items a:last-child {
        border-bottom: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
}

/* Hover Effect */
.nav-item:hover > a {
    color: #00E0C6;
    transition: 0.3s ease;
}






/* MAIN CONTAINER */
.product-section {
    padding: 35px 5%;
    background: #fafafa;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

/* PRODUCT CARD */
.product-card {
    background: #ffffff;
    border-radius: 14px;
    border: 2px solid #e2e2e2;   /* STRONG BORDER */
    padding: 16px;
    transition: all 0.35s ease;
    box-shadow: 0px 5px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
}

/* CARD HOVER ANIMATION */
.product-card:hover {
    border-color: #ff5722;        /* BORDER COLOR ANIMATION */
    transform: translateY(-6px) scale(1.02);  
    box-shadow: 0px 10px 22px rgba(0,0,0,0.18);
}

/* IMAGE */
.product-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

/* IMAGE ZOOM ANIMATION */
.product-card:hover .product-image {
    transform: scale(1.15);       /* ZOOM-IN EFFECT */
}

/* TITLE */
/* PRODUCT TITLE INSIDE CARD */
.product-card .product-title {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;       /* Deep premium black */
}

/* PRICE COLORS */
.price {
    font-size: 18px;
    font-weight: 800;
    color: #e6004c;       /* Premium pink-red */
}

.mrp {
    font-size: 13px;
    text-decoration: line-through;
    color: #8f8f8f;       /* Softer Grey */
}

.discount {
    font-size: 13px;
    color: #1f8f3c;       /* Deep Green */
}

/* REVIEW COUNT */
.review-count {
    font-size: 12px;
    color: #750604;       /* Royal ink Blue */
}
.rating-section {
    color: #e3c30a !important;  /* bright yellow */
}


/* DELIVERY TEXT */
.delivery {
    font-size: 13px;
    color: #444;          /* Neutral readable grey */
    font-weight: 500;
}

/* PRODUCT DESCRIPTION (top) */
.product-description {
    font-size: 1.05rem;
    max-width: 900px;
    margin: auto;
    line-height: 1.7;
    background: linear-gradient(90deg, #202020, #ff4b2b, #ffb300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* MAIN TITLE (top) */
.product-title {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(90deg, #000000, #ff3e74, #ff742b, #ffc107);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* BUTTON AREA */
.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

/* BASE STYLE */
.action-buttons a,
.action-buttons button {
    flex: 1;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.4px;
    overflow: hidden;
    position: relative;
    transition: 0.4s ease;
}

/* GRADIENT BUTTON ANIMATION */
.action-buttons a::before,
.action-buttons button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.3),
        rgba(255,255,255,0)
    );
    transform: skewX(-20deg);
    transition: 0.4s ease;
}

/* ON HOVER: Shine animation */
.action-buttons a:hover::before,
.action-buttons button:hover::before {
    left: 100%;
}

/* CALL NOW BUTTON */
.btn-call-now {
    background: linear-gradient(45deg, #007bff, #004aad);
    box-shadow: 0px 4px 10px rgba(0,123,255,0.4);
}
.btn-call-now:hover {
    transform: scale(1.05);
}

/* WHATSAPP BUTTON */
.btn-buy-now {
    background: linear-gradient(45deg, #25D366, #128c4d);
    box-shadow: 0px 4px 10px rgba(37,211,102,0.45);
}
.btn-buy-now:hover {
    transform: scale(1.05);
}

/* MOBILE RESPONSIVE */
@media (max-width: 500px) {
    .product-card {
        padding: 14px;
        border-radius: 12px;
    }
    .product-image {
        height: 150px;
    }
    .action-buttons a,
    .action-buttons button {
        padding: 8px 0;
        font-size: 12px;
    }
}
/* TEXT ANIMATION */
.product-card .product-title,
.price,
.mrp,
.discount,
.review-count,
.delivery {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* SPEC DIVIDER SECTION */
.spec-divider {
    background: #ffffff;
    padding: 25px 10px;
    margin-bottom: 25px;
    border-radius: 14px;
    border: 2px solid #e2e2e2;
    text-align: center;
    box-shadow: 0px 4px 14px rgba(0,0,0,0.07);
    animation: fadeIn 1s ease;
}

/* Heading */
.spec-heading {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #000, #ff4b2b, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Box container */
.spec-box-container {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* CLEAN + FIXED SPEC BOX */
.spec-box {
    background: #fff;
    width: 120px;             /* fixed so text fits */
    height: 110px;            /* enough height for 3 lines */
    padding: 8px;
    border: 2px solid #ddd;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease;
    margin: 6px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
    animation: fadeIn 0.5s ease;
    overflow-wrap: break-word;     /* prevents spilling */
}

/* Hover animation */
.spec-box:hover {
    border-color: #ff5722;
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0px 6px 15px rgba(0,0,0,0.12);
}

/* Icons */
.spec-icon {
    font-size: 22px;
    margin-bottom: 4px;
}

/* Label */
.spec-title {
    font-size: 11px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Value */
.spec-value {
    font-size: 13px;
    font-weight: 800;
    color: #ff3d2e;
    margin: 0;
    line-height: 1.2;
}

/* Fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* MOBILE FIX – Perfect fit */
@media (max-width: 480px) {
    .spec-box {
        width: 95px;
        height: 95px;
        padding: 6px;
    }
    .spec-icon { font-size: 20px; }
    .spec-title { font-size: 10px; }
    .spec-value { font-size: 12px; }
}



/* 🌟 Footer Styles */
.shree-footer {
  background: linear-gradient(135deg, #1a1f2b, #2C3E50, #1B263B);
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Quicksand', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Soft animated gradient glow in the background */
.shree-footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(233, 116, 81, 0.2), transparent 60%);
  animation: glowMove 8s infinite linear;
  z-index: 0;
}
@keyframes glowMove {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Sections */
.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h2,
.footer-section h3 {
  color: #FFC107;
  margin-bottom: 12px;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.footer-section h2:hover,
.footer-section h3:hover {
  color: #E97451;
  text-shadow: 0 0 8px rgba(233, 116, 81, 0.6);
}

.footer-section p,
.footer-section ul {
  color: #ddd;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}



/* ✨ Animated underline + color glow */
.footer-section ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #E97451, #FFC107);
  transition: width 0.4s ease;
}

.footer-section ul li a:hover {
  color: #FFC107;
  transform: translateX(5px);
  text-shadow: 0 0 8px rgba(255, 193, 7, 0.5);
}

.footer-section ul li a:hover::after {
  width: 100%;
}

/* 🌐 Social Links */
.social-links {
  margin-top: 10px;
}

.social-icon {
  display: inline-block;
  margin: 0 6px;
  font-size: 1.1rem;
  color: #fff;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E97451, #FFC107);
  text-align: center;
  box-shadow: 0 0 5px rgba(255, 193, 7, 0.4);
  transition: all 0.4s ease;
}

.social-icon:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.9);
  background: linear-gradient(135deg, #FFC107, #E97451);
}

/* 📧 Contact links (Mail, WhatsApp, Phone) */
.footer-section a[href^="mailto"],
.footer-section a[href^="tel"],
.footer-section a[href*="wa.me"],
.footer-section a[href*="whatsapp"] {
  color: #FFC107;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin: 2px 0; /* smaller gap between contact links */
  transition: all 0.3s ease;
  position: relative;
}

.footer-section a[href^="mailto"]::before,
.footer-section a[href^="tel"]::before,
.footer-section a[href*="wa.me"]::before,
.footer-section a[href*="whatsapp"]::before {
  content: "•";
  color: #E97451;
  margin-right: 6px;
  transition: transform 0.3s ease;
}

.footer-section a[href^="mailto"]:hover,
.footer-section a[href^="tel"]:hover,
.footer-section a[href*="wa.me"]:hover,
.footer-section a[href*="whatsapp"]:hover {
  color: #E97451;
  text-shadow: 0 0 8px rgba(233, 116, 81, 0.7);
  transform: translateX(3px);
}

.footer-section a[href^="mailto"]:hover::before,
.footer-section a[href^="tel"]:hover::before,
.footer-section a[href*="wa.me"]:hover::before,
.footer-section a[href*="whatsapp"]:hover::before {
  transform: scale(1.3);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #ccc;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 25px;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}

.footer-bottom a {
  color: #FFC107;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #E97451;
}
.footer-section.popular h3 {
  color: #FFC107;
  margin-bottom: 10px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-section.popular h3:hover {
  color: #E97451;
  text-shadow: 0 0 6px rgba(233, 116, 81, 0.6);
}

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

.footer-section.popular ul li {
  margin: 4px 0;
  color: #ddd;
  font-size: 0.9rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-section.popular ul li:hover {
  color: #FFC107;
  transform: translateX(4px);
}

/* 📱 Mobile Optimization */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .footer-section.links {
    display: none; /* hide quick links on small screens */
  }

  .footer-section h2 {
    font-size: 1.1rem;
  }

  .footer-section p {
    font-size: 0.85rem;
    margin: 3px 0;
  }

  .social-icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 0.9rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
    margin-top: 15px;
  }
}









