*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
   }
   body{
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
   }
   body::-webkit-scrollbar{
       display: none;
   }
    .spp-main-header{
    display: none;
   }
   .spp-nav-menu-list {
    display: none; /* Mobile view varra varaikkum ithu hidden-ah irukkum */
    list-style: none;
    gap: 20px;
}
      .whatsapp-modern {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
    padding: 15px;
}

/* SVG Icon Size */
.whatsapp-modern svg {
    fill: white;
    width: 35px;
    height: 35px;
}

/* Tooltip design */
.tooltip {
    position: absolute;
    right: 80px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-family: sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    white-space: nowrap;
}

/* Hover Effects */
.whatsapp-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-modern:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Simple breathing animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-modern {
    animation: pulse 2s infinite;
}
   .navbar{
    height: 100px;
    width: 100%;
    /* background-color: aqua; */
    overflow: hidden;
    padding: 15px;
   }
   .subnavbar{
    height: 100%;
    width: 100%;
    /* background-color: blue; */
    display: flex;
    align-items: center;
    justify-content: space-between;
   }
   .logo{
    height: 100%;
    width: 25%;
    /* background-color: aquamarine; */
   }
   .logo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
   }
   .links{
    height: 100%;
    width: 55%;
    /* background-color: beige; */
    display: flex;
    align-items: center;
    justify-content: space-around;
   }
   .links a{
    text-decoration: none;
    color: rgba(0, 0, 0, 0.77);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

/* underline effect */
.links a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: rgb(241,174,88); /* underline color */
    transition: width 0.3s ease;
}

/* hover underline */
.links a:hover::after{
    width: 0%;
}

/* active page underline */
.links a.active::after{
    width: 100%;
}
.slider {
    position: relative;
    width: 100%;
    height: 530px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.active {
    opacity: 1;
}

.content {
    margin-top: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    animation: fadeIn 1s ease-in-out;
}

.content h2 {
    font-size: 60px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.content span{
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.content p {
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    margin: 0 10px;
}

.container {
    height: auto;
    width: 100%;
    /* margin: 50px auto; */
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    border-radius: 10px;
  }
  
  h1 {
    text-align: center;
    margin-bottom: 30px;
    text-transform: capitalize;
    /* font-weight: 400; */
    /* font-family: "Poppins", sans-serif; */
    color:#218838;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
  }
  
  table, th, td {
    border: 1px solid #ddd;
  }
  
  .container th{
    padding: 10px;
    /* background-color: #102770; */
    text-align: center;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
  }
 .container td {
    padding: 10px;
    height: 100px;
    /* background-color: #102770; */
    text-align: center;
    color: black;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 15px;
    transform: scaleY(1.001);
  }
  .product-category td{
    padding: 10px;
    font-size: 18px;
    /* text-decoration: underline; */
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color:none;
    text-align: center;
    color:#F70068;
  }
  th {
    height: 50px;
    font-size: 16px;
    font-weight: 700;
    background-color:rgb(229,2,104);
    color:white;
  }
  .quantity {
    width: 50px; /* Adjust width as needed */
    height: 40px; /* Adjust height as needed */
    text-align: center; /* Center the number */
    font-size: 16px; /* Adjust font size */
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 4px; /* Slightly rounded corners */
    outline: none; /* Remove default focus outline */
}
.product-img + a:hover img {
    transform: scale(1.7);
    transition: 0.2s;
}
.quantity-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.qt-btn {
  width: 30px;
  height: 30px;
  background-color: #E91E63; /* Matching your header pink */
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
}

.qt-btn:active {
  background-color: #c2185b;
}

.quantity {
  width: 40px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  height: 28px;
  -moz-appearance: textfield; /* Removes default arrows */
}

/* Removes arrows in Chrome/Safari */
.quantity::-webkit-outer-spin-button,
.quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Optional: Style on focus */
.quantity:focus {
    border-color: #007bff; /* Blue border on focus */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
  .product-img {
    width: 60px;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .product-img:hover {
    transform: scale(1.2);
  }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 1111;
    padding-top: 160px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
  }
  
  .modal-content {
    z-index: 111111;
    margin: auto;
    display: block;
    height: 90%;
    width: 100%;
    max-width: 700px;
  }
  
  #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }
  
  .close {
    position: absolute;
    top: 105px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  .product-category {
    /* background-color: #ececec; */
    height: 50px;
    font-weight: bold;
    text-align: right;
    font-size: 1.2em;

  }
  #cartSummary {
    overflow: hidden;
    height: auto;
    width: 50%;
    background: #fff;
    padding: 0px 20px;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
    z-index: 1000;
  }
  #cartSummary th{
    background-color:darkblue;
    color: white;
    height: 52px;
    font-size: 13px;
    font-weight: 300;
  }
  #cartSummary tr{
    font-size: 12px;
    text-align: center;
    color: #121111;
  }
 
  #cartTable td {
    padding: 10px;
    background-color:#F70068;
    text-align: center;
    color: #FFFFFF;
    font-weight: 300;
    font-size: 14px;
    height: 30px;
    font-family: "Poppins", sans-serif;
  }
  tfoot td{
    /* background-color:darkblue; */
    /* color: white; */
    font-weight: 100;
    height: 30px;
  }
  #checkoutButton {
    display: block;
    width: 100%;
    padding: 10px;
    background: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    text-align: center;
    border-radius: 5px;
    transition: background 0.3s;
  }
  
  #checkoutButton:hover {
    background: #218838;
  }
  
  /* Cart icon styles */
  #cartIconContainer {
    position: fixed;
    bottom: 120px;
    right: 20px;
    width: 80px;
    height: 80px;
    z-index: 1000;
  }
  
  #cartIcon {
    width: 100%;
    height: 100%;
  }
  
  #cartQuantity {
    position: absolute;
    top: 0;
    right: 0;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 14px;
  }
  





/* Features Grid inside About */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feat-item i {
    font-size: 24px;
    color: #ff9900;
    background: #fff5e6;
    padding: 20px 30px 20px 10px;
    border-radius: 12px;
}

.feat-item h5 {
    margin: 0;
    font-size: 16px;
    color: #1a1a1a;
}

.feat-item p {
    margin: 0;
    font-size: 12px;
    color: #888;
}

/* Button Styling */
.learn-more-btn {
    width: fit-content;
    padding: 15px 35px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.learn-more-btn:hover {
    background: #ff9900;
    transform: translateX(10px);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
/* Parent Division with Fixed Dimensions */
.main-footer-wrapper {
    width: 100%; /* Fixed PX Width */
    height: 450px; /* Fixed PX Height */
    margin: 170px auto;
    background: #1a1a1a; /* Dark professional theme */
    border-radius: 0px 0px 0px 0px;
    position: relative;
    overflow: hidden;
    color: white;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
}

/* Internal Container using Percentages */
.main-footer-wrapper .footer-content-inner {
    width: 100%;
    height: 80%; /* Takes up 80% of fixed height */
    display: flex;
    /* align-items: center; */
    justify-content: space-evenly;
    padding: 5% 5% 0 5%;
    box-sizing: border-box;
}

/* Columns using Percentages */
.main-footer-wrapper .footer-content-inner .footer-col {
    width: 100%; 
    padding: 0 1%;
}
.location-col {
    margin-left: 20PX;
    width: 100%; /* Wider column for locations */
}
/* Location Card Styling */
.location-col .location-card {
    /* background: rgba(255, 255, 255, 0.03); */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    border-radius: 15px;
    padding: 15px;
    margin-top: 10px;
    transition: all 0.4s ease;
}

.location-card:hover {
    background: rgba(255, 153, 0, 0.05);
    border-color: #ff9900;
    transform: translateY(-5px);
}

.map-icon-wrapper {
    font-size: 24px;
    color: #ff9900;
    margin-bottom: 10px;
}

.address-details p {
    font-size: 13px;
    color: #b3b3b3;
    margin: 3px 0;
    line-height: 1.4;
}

.address-details strong {
    color: white;
    display: block;
    margin-bottom: 5px;
}

/* Directions Link Styling */
.location-card .map-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: #ff9900;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.map-link:hover {
    color: white;
    text-shadow: 0 0 5px #ff9900;
}

/* Map Icon Animation on Hover */
.location-card:hover .fa-map-marked-alt {
    animation: bounceMap 0.6s ease infinite alternate;
}

@keyframes bounceMap {
    from { transform: translateY(0); }
    to { transform: translateY(-5px); }
}
/* About Section */
.footer-col .footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    
}

.footer-col .brand-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #b3b3b3;
}

/* Social Icons */
.footer-col .social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    background: #ff9900; /* Matching your button color */
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-5px);
    background: #e68a00;
}

/* Links Section */
.footer-col .footer-heading {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

.footer-col .footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ff9900;
}

.footer-col .footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: #b3b3b3;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-menu li a:hover {
    color: #ff9900;
    padding-left: 8px;
}
/* Business Hours Specific Styling */
.hours-col .hours-list {
    margin-top: 10px;
}

.hours-list .hour-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.05); */
    font-size: 13px;
}

.hour-item .day {
    color: #b3b3b3;
    font-weight: 500;
}

.hour-item .time {
    color: white;
}

/* Highlight Sunday or Special Times */
.hour-item .time.highlight {
    color: #ff9900;
    font-weight: bold;
}

/* Seasonal Note with Pulse Animation */
.hours-col .seasonal-note {
    margin-top: 15px;
    font-size: 12px;
    color: #ff4757; /* Red/Pink for urgency */
    font-style: italic;
    animation: flashText 1.5s infinite;
}

@keyframes flashText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Hover effect for the entire hours section */
.hours-col:hover .hour-item {
    border-bottom-color: rgba(255, 153, 0, 0.3);
    transition: 0.3s;
}
/* Contact Mini-Cards (Echoing your design) */
.footer-col .contact-mini-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #ff9900;
    transition: 0.3s;
}

.contact-mini-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mini-icon {
    font-size: 20px;
    color: #ff9900;
}

.mini-text span {
    display: block;
    font-size: 13px;
}

/* Bottom Bar */
.main-footer-wrapper .footer-bottom {
    width: 100%;
    height: 20%; /* Remaining 20% of fixed height */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
}


@media screen and (max-width: 768px){

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
   }
   body{
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
   }
   body::-webkit-scrollbar{
       display: none;
   }
   .whatsapp-modern {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
    padding: 15px;
}

/* SVG Icon Size */
.whatsapp-modern svg {
    fill: white;
    width: 35px;
    height: 35px;
}

/* Tooltip design */
.tooltip {
    position: absolute;
    right: 80px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-family: sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    white-space: nowrap;
}

/* Hover Effects */
.whatsapp-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-modern:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Simple breathing animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
 /* Unique CSS using SPP prefix */
.spp-main-header {
    display: block;
    height: 10vh;
    width: 100%;
    padding: 10px 10px;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 9999; /* Higher z-index to stay on top */
}

.spp-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.spp-brand-logo img {
    height: 45px;
    display: block;
}

.spp-nav-menu-list {
    display: flex;
    list-style: none;
    gap: 20px;
}

.spp-menu-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.spp-menu-link:hover {
    color: #f39c12; /* Your Theme Orange */
}

/* Mobile Specific Styles */
.spp-hamburger-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.spp-bar {
    width: 28px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}
/* Burger Animation Logic */
.spp-hamburger-trigger {
    transition: all 0.3s ease-in-out;
}

.spp-bar {
    transition: all 0.3s ease-in-out;
}

/* X Animation when active */
.spp-hamburger-trigger.spp-cross-icon .spp-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.spp-hamburger-trigger.spp-cross-icon .spp-bar:nth-child(2) {
    opacity: 0; /* Middle line disappears */
    transform: translateX(-20px);
}

.spp-hamburger-trigger.spp-cross-icon .spp-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 992px) {
    .spp-hamburger-trigger {
        display: flex;
    }

    .spp-nav-menu-list {
        position: fixed;
        top: 10vh;
        right: -100%; /* Hidden by default */
        width: 250px;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        padding: 40px 20px;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    /* Unique Active Class */
    .spp-nav-menu-list.spp-is-active {
        right: 0;
    }

    .spp-menu-item {
        margin-bottom: 25px;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 10px;
    }
}
.whatsapp-modern {
    animation: pulse 2s infinite;
}
   .navbar{
    display: none;
    height: 100px;
    width: 100%;
    /* background-color: aqua; */
    overflow: hidden;
    padding: 15px;
   }
   .subnavbar{
    height: 100%;
    width: 100%;
    /* background-color: blue; */
    display: flex;
    align-items: center;
    justify-content: space-between;
   }
   .logo{
    height: 100%;
    width: 25%;
    /* background-color: aquamarine; */
   }
   .logo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
   }
   .links{
    height: 100%;
    width: 55%;
    /* background-color: beige; */
    display: flex;
    align-items: center;
    justify-content: space-around;
   }
   .links a{
    text-decoration: none;
    color: rgba(0, 0, 0, 0.77);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

/* underline effect */
.links a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: rgb(241,174,88); /* underline color */
    transition: width 0.3s ease;
}

/* hover underline */
.links a:hover::after{
    width: 0%;
}

/* active page underline */
.links a.active::after{
    width: 100%;
}
.slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.active {
    opacity: 1;
}

.content {
    margin-top: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    animation: fadeIn 1s ease-in-out;
}

.content h2 {
    font-size: 35px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.content span{
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.content p {
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    margin: 0 10px;
}


    .container {
        overflow: hidden;
        height: auto;
        width: 100%;
        margin: 0px 0px;
        padding: 10px;
        background: #fff;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        border-radius: 0px;
      }
      
      h1 {
        text-align: center;
        margin-bottom: 30px;
        text-transform: capitalize;
        /* font-weight: 400; */
        /* font-family: "Poppins", sans-serif; */
        color:#218838;
      }
      
      table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
      }
      
      table, th, td {
        border: 1px solid #ddd;
      }
      
      .container th{
        padding: 5px;
        /* background-color: #102770; */
        text-align: center;
        color: #FFFFFF;
        font-weight: 800;
        font-size: 10px;
        font-family: "Poppins", sans-serif;
      }
     .container td {
        padding: 3px;
        height: 50px;
        /* background-color: #102770; */
        text-align: center;
        color: black;
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-size: 10px;
        transform: scaleY(1.001);
      }
      .product-category td{
        padding: 5px;
        font-size: 14px;
        /* text-decoration: underline; */
        letter-spacing: 2px;
        text-transform: uppercase;
        background-color:none;
        text-align: center;
        color:#F70068;
      }
      th {
        height: 20px;
        font-size: 16px;
        font-weight: 700;
        background-color:rgb(229,2,104);
        color:white;
      }
    
    /* Optional: Style on focus */
    .quantity:focus {
        border-color: #007bff; /* Blue border on focus */
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }
     .quantity {
    width: 30px; /* Adjust width as needed */
    height: 30px; /* Adjust height as needed */
    text-align: center; /* Center the number */
    font-size: 14px; /* Adjust font size */
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 4px; /* Slightly rounded corners */
    outline: none; /* Remove default focus outline */
}
.product-img + a:hover img {
    transform: scale(1.7);
    transition: 0.2s;
}
.quantity-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  margin: auto;
  padding: auto;
}

.qt-btn {
  width: 22px;
  height: 22px;
  background-color: #E91E63; /* Matching your header pink */
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
}

.qt-btn:active {
  background-color: #c2185b;
}

.quantity {
  width: 40px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  height: 28px;
  -moz-appearance: textfield; /* Removes default arrows */
}

/* Removes arrows in Chrome/Safari */
.quantity::-webkit-outer-spin-button,
.quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
      .product-img {
        width: 60px;
        cursor: pointer;
        transition: transform 0.2s;
      }
      
      .product-img:hover {
        transform: scale(1.2);
      }
      
      .modal {
        display: none;
        position: fixed;
        z-index: 1111;
        padding-top: 160px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        margin-left: auto;
        margin-right: auto;
        overflow: auto;
        background-color: rgba(0,0,0,0.9);
      }
      
      .modal-content {
        z-index: 111111;
        margin: auto;
        display: block;
        height: 90%;
        width: 100%;
        max-width: 700px;
      }
      
      #caption {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 700px;
        text-align: center;
        color: #ccc;
        padding: 10px 0;
        height: 150px;
      }
      
      .close {
        position: absolute;
        top: 105px;
        right: 35px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: bold;
        transition: 0.3s;
      }
      
      .close:hover,
      .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
      }
      .product-category {
        /* background-color: #ececec; */
        height: 50px;
        font-weight: bold;
        text-align: right;
        font-size: 1.2em;
    
      }
      #cartSummary {
        overflow: hidden;
        height: auto;
        width: 100%;
        background: #fff;
        padding: 0px 0px;
        /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
        z-index: 1000;
        margin-bottom: 20px;
      }
      #cartSummary th{
        background-color:darkblue;
        color: white;
        height: 52px;
        font-size: 13px;
        font-weight: 300;
      }
      #cartSummary tr{
        font-size: 12px;
        text-align: center;
        color: #121111;
      }
      #cartTable {
        /* margin-bottom: 20px; */
      }
      #cartTable td {
        padding: 10px;
        background-color:#F70068;
        text-align: center;
        color: #FFFFFF;
        font-weight: 300;
        font-size: 12px;
        height: 30px;
        font-family: "Poppins", sans-serif;
      }
      tfoot td{
        /* background-color:darkblue; */
        /* color: white; */
        font-weight: 100;
        height: 30px;
      }
      #checkoutButton {
        display: block;
        width: 100%;
        padding: 10px;
        background: #28a745;
        color: white;
        border: none;
        cursor: pointer;
        text-align: center;
        border-radius: 5px;
        transition: background 0.3s;
      }
      
      #checkoutButton:hover {
        background: #218838;
      }
      
      /* Cart icon styles */
      #cartIconContainer {
        position: fixed;
        bottom: 100px;
        right: 20px;
        width: 60px;
        height: 60px;
        z-index: 1000;
      }
      
      #cartIcon {
        width: 100%;
        height: 100%;
      }
      
      #cartQuantity {
        position: absolute;
        top: 0;
        right: 0;
        background: red;
        color: white;
        border-radius: 50%;
        padding: 5px 10px;
        font-size: 14px;
      }





/* Features Grid inside About */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feat-item i {
    font-size: 24px;
    color: #ff9900;
    background: #fff5e6;
    padding: 20px 30px 20px 10px;
    border-radius: 12px;
}

.feat-item h5 {
    margin: 0;
    font-size: 16px;
    color: #1a1a1a;
}

.feat-item p {
    margin: 0;
    font-size: 12px;
    color: #888;
}

/* Button Styling */
.learn-more-btn {
    width: fit-content;
    padding: 15px 35px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.learn-more-btn:hover {
    background: #ff9900;
    transform: translateX(10px);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}





/* Responsive Mobile View */
@media (max-width: 600px) {
    .glass-bar {
        flex-direction: column;
        border-radius: 20px;
        text-align: center;
        gap: 20px;
        padding: 30px;
    }
    .file-info {
        flex-direction: column;
    }
}
/* Parent Division with Fixed Dimensions */
.main-footer-wrapper {
    width: 100%; /* Fixed PX Width */
    height: auto; /* Fixed PX Height */
    margin: 170px auto;
    background: #1a1a1a; /* Dark professional theme */
    border-radius: 0px 0px 0px 0px;
    position: relative;
    overflow: hidden;
    color: white;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
}

/* Internal Container using Percentages */
.main-footer-wrapper .footer-content-inner {
    width: 100%;
    height: 100%; /* Takes up 80% of fixed height */
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-evenly;
    padding: 5% 5% 0 5%;
    box-sizing: border-box;
}

/* Columns using Percentages */
.main-footer-wrapper .footer-content-inner .footer-col {
    margin-top: 20px;
    width: 100%; 
    padding: 0 0%;
}
.location-col {
    margin-left: 0PX;
    width: 100%; /* Wider column for locations */
}
/* Location Card Styling */
.location-col .location-card {
    /* background: rgba(255, 255, 255, 0.03); */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    border-radius: 15px;
    padding: 0px;
    margin-top: 10px;
    transition: all 0.4s ease;
}

.location-card:hover {
    background: rgba(255, 153, 0, 0.05);
    border-color: #ff9900;
    transform: translateY(-5px);
}

.map-icon-wrapper {
    font-size: 24px;
    color: #ff9900;
    margin-bottom: 10px;
}

.address-details p {
    font-size: 13px;
    color: #b3b3b3;
    margin: 3px 0;
    line-height: 1.4;
}

.address-details strong {
    color: white;
    display: block;
    margin-bottom: 5px;
}

/* Directions Link Styling */
.location-card .map-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: #ff9900;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.map-link:hover {
    color: white;
    text-shadow: 0 0 5px #ff9900;
}

/* Map Icon Animation on Hover */
.location-card:hover .fa-map-marked-alt {
    animation: bounceMap 0.6s ease infinite alternate;
}

@keyframes bounceMap {
    from { transform: translateY(0); }
    to { transform: translateY(-5px); }
}
/* About Section */
.footer-col .footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    
}

.footer-col .brand-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #b3b3b3;
}

/* Social Icons */
.footer-col .social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    background: #ff9900; /* Matching your button color */
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-5px);
    background: #e68a00;
}

/* Links Section */
.footer-col .footer-heading {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

.footer-col .footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ff9900;
}

.footer-col .footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: #b3b3b3;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-menu li a:hover {
    color: #ff9900;
    padding-left: 8px;
}
/* Business Hours Specific Styling */
.hours-col .hours-list {
    margin-top: 10px;
}

.hours-list .hour-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.05); */
    font-size: 13px;
}

.hour-item .day {
    color: #b3b3b3;
    font-weight: 500;
}

.hour-item .time {
    color: white;
}

/* Highlight Sunday or Special Times */
.hour-item .time.highlight {
    color: #ff9900;
    font-weight: bold;
}

/* Seasonal Note with Pulse Animation */
.hours-col .seasonal-note {
    margin-top: 15px;
    font-size: 12px;
    color: #ff4757; /* Red/Pink for urgency */
    font-style: italic;
    animation: flashText 1.5s infinite;
}

@keyframes flashText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Hover effect for the entire hours section */
.hours-col:hover .hour-item {
    border-bottom-color: rgba(255, 153, 0, 0.3);
    transition: 0.3s;
}
/* Contact Mini-Cards (Echoing your design) */
.footer-col .contact-mini-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #ff9900;
    transition: 0.3s;
}

.contact-mini-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mini-icon {
    font-size: 20px;
    color: #ff9900;
}

.mini-text span {
    display: block;
    font-size: 13px;
}

/* Bottom Bar */
.main-footer-wrapper .footer-bottom {
    width: 100%;
    height: 60px; /* Remaining 20% of fixed height */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom p {
    font-size: 12px;
    text-align: center;
    color: #666;
}







}