html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* This kills the horizontal scroll bar */
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html, body{
overflow-x:hidden;
font-family:'Poppins', sans-serif;
}

/* ---------------------- General Page ---------------------- */
body {
    font-family: Arial, sans-serif;
    background: #51dc8b; /* soft gray page background */
    margin: 0;
    text-align: center;
}

/* ---------------------- Title and Subtitle ---------------------- */
h1 {
    margin-top: 70px;
}



body{
font-family:'Poppins', sans-serif;
}

/* edit to customize screen on phone also */

html, body{
overflow-x:hidden;
}

img{
max-width:100%;
height:auto;
}

/* end */


body{
font-family:Arial;
background:linear-gradient(135deg,#0f2027,#80e891,#2c5364);
color:white;
}

/* body{
opacity:2;
transition:opacity 3s;
} */
/* .hero{
opacity:0;
animation:fadeIn 5s forwards;
} */


.product{
background:white;
color:black;
border-radius:15px;
padding:20px;
width:250px;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
transition:0.3s;
}

.product:hover{
transform:translateY(-10px) scale(1.03);
}




.filters{
margin:20px;
}

.filters button{
padding:10px 15px;
margin:5px;
border:none;
border-radius:8px;
background:#669764;
color:white;
cursor:pointer;
}

.filters button:hover{
background:#555;
}

.subtitle {
    color: #ffffff; /* dark gray */
    margin-bottom: 30px;
    font-size: 18px;
}

/* ---------------------- Products Container ---------------------- */
.products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

/* ---------------------- Individual Product Card ---------------------- */
.product {
    background: #a5d6a7; /* card color */
    width: 250px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

/* Hover effect */
.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(239, 218, 218, 0.2);
}

/* ---------------------- Product Image ---------------------- */
.product img {
    width: 70%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* ---------------------- Product Text ---------------------- */
.product h2 {
    margin: 10px 0 5px 0;
    font-size: 18px;
}

.product p {
    margin: 5px 0;
}

/* Brand */
.brand {
    color: #000000; /* medium gray */
    font-size: 14px;
}

/* Price */
.price {
    color: #253900;
    font-size: 22px;
    font-weight: bold;
    margin-top: 10px;
}

/* Product image container */
.product-image {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

/* Overlay description */
.product-image .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); /* semi-transparent black */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show overlay on hover */
.product-image:hover .overlay {
  opacity: 1;
}

.product-page-image{
width:300px;
height:auto;
display:block;
margin:auto;
border-radius:10px;
}



/* page inside */
.product-page {
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.95); /* Semi-transparent white */
    padding: 20px;
    box-sizing: border-box;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); /* Soft expensive shadow */
    color: #2f2c2c;
    text-align: left; /* Better for reading specs */
}

.product-page h2 {
    text-align: center;
    border-bottom: 2px solid #584f56;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.product-page ul {
    list-style: none;
    padding: 0;
}

.product-page li {
    padding: 8px 0;
    border-bottom: 1px solid #3b3838;
    font-size: 0.95rem;
}

/* Make the labels bold so it's easier to read */
.product-page li strong {
    color: #3b5998;
}

/* end */

.product-page-image{
width:300px;
display:block;
margin:auto;
border-radius:10px;
}

.thumbnails{
margin-top:15px;
display:flex;
justify-content:center;
gap:10px;
}

.thumbnails img{
width:60px;
height:60px;
object-fit:cover;
cursor:pointer;
border-radius:6px;
transition:0.3s;
}

.thumbnails img:hover{
transform:scale(1.1);
}

.whatsapp-button{
display:inline-block;
margin-top:20px;
padding:12px 20px;
background:#25D366;
color:white;
text-decoration:none;
border-radius:8px;
font-size:16px;
}

.whatsapp-button:hover{
background:#1da851;
}

/* This is your "Insurance" for all products */
.product a {
    text-decoration: none !important; /* Forces no underline everywhere */
    color: inherit;                 /* Forces the text to stay black/dark */
    display: block;                /* Makes the whole card area clickable */
}

.product h2 {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #333; /* Keeps the title a nice professional dark gray */
}

.slider{
width:300px;
margin:20px auto;
overflow:hidden;
border-radius:15px;
}

.slider img{
width:100%;
height:300px;
object-fit:cover;
}


.navbar{
background:#222;
padding:15px;
display:flex;
justify-content:center;
gap:40px;
}

/* .navbar a{
color:white;
text-decoration:none;
font-size:18px;
} */

/* .navbar a:hover{
position:sticky;
top:0;
z-index:1000;
color:#00ff88;
} */


.back-button{
display:inline-block;
margin-top:20px;
padding:10px 20px;
background:#222;
color:white;
text-decoration:none;
border-radius:20px;
font-size:16px;
transition:0.3s;
}

.back-button:hover{
background:#00ff88;
color:black;
border-radius:30px;
}

html{
scroll-behavior:smooth;
}


.news-ticker{
position:fixed;
bottom:0;
width:100%;
background:#111;
color:white;
overflow:hidden;
height:40px;
display:flex;
align-items:center;
}

.news-ticker{
position:fixed;
top:0;
width:100%;
background:#ffffff;
color:rgb(0, 0, 0);
overflow:hidden;
height:40px;
display:flex;
align-items:center;
z-index:1000;
}

.ticker-text{
white-space:nowrap;
padding-left:100%;
animation:tickerMove 20s linear infinite;
}

@keyframes tickerMove{
0%{
transform:translateX(0);
}

100%{
transform:translateX(-100%);
}
}

.popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
justify-content:center;
align-items:center;
z-index:2000;
}

.popup-content{
background:white;
padding:20px;
border-radius:15px;
text-align:center;
width:300px;
}

.popup-content{
width:90%;
max-width:400px;
}

.popup-content img{
width:100%;
border-radius:10px;
}

.close-btn{
font-size:25px;
cursor:pointer;
float:right;
}

.product img{
width:100%;
border-radius:10px;
transition:0.3s;
}

.product{
opacity:0;
transform:translateY(40px);
transition:0.6s;
}

.product.show{
opacity:1;
transform:translateY(0);
}


@media (max-width:768px){

.products{
flex-direction:column;
align-items:center;
}

.product{
width:90%;
}

h1{
font-size:22px;
}

}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.floating-cart{
position:fixed;
top:20px;
right:20px;
background:#00ffcc;
color:black;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
cursor:pointer;
box-shadow:0 5px 20px rgba(0,0,0,0.4);
z-index:5000;
}

.floating-cart span{
position:absolute;
top:-5px;
right:-5px;
background:red;
color:white;
font-size:12px;
width:20px;
height:20px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}

.overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
background:rgba(0,0,0,0.7);
color:white;
padding:15px;
opacity:0;
transition:0.3s;
}

.product-image{
position:relative;
}

.product:hover .overlay{
opacity:1;
}

.stock-status{
font-weight:600;
margin-top:8px;
display:flex;
align-items:center;
gap:6px;
}

.in-stock{
color:#000000;
}

.out-stock{
color:#ff3d00;
}

.product.out{
opacity:0.6;
pointer-events:none;
}

/* Clean & Professional Footer */
.site-footer {
    background-color: #f9f9f9;
    padding: 60px 20px 30px;
    border-top: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

/* Remove those ugly boxes and make it look clean */
.footer-section h2, .footer-section h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Style the links as a clean list, not buttons */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #3b5998; /* Your brand blue */
}

/* Contact Buttons Style */
.contact-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-btn {
    text-decoration: none;
    border: 1px solid #3b5998;
    color: #3b5998;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-btn:hover {
    background: #3b5998;
    color: white;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.2rem;
    color: #333;
}


/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/nb1.jpg'); /* Uses one of your slider images as background */
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.highlight {
    color: #3b5998; /* The signature blue from your logo/footer */
    background: rgb(226, 226, 226);
    padding: 0 10px;
    border-radius: 5px;
}

.about-container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Responsive grid for mobile */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-text h2 {
    font-size: 2rem;
    color: #fffafa;
    margin-bottom: 20px;
    border-left: 5px solid #ffffff00;
    padding-left: 15px;
}

.about-text p {
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-card {
    background: #83bcc8;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border-bottom: 3px solid #3b5998;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.back-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background: #3b5998;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
}

.back-btn:hover {
    background: #2d4373;
}


/* Shipping Policy Styles */
.policy-container {
    background-color: #f4f7f6;
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.policy-card {
    background: rgb(192, 180, 240);
    max-width: 800px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.policy-header {
    background: #3b5998;
    color: rgb(185, 126, 126);
    padding: 40px;
    text-align: center;
}

.policy-header h1 { margin: 0; font-size: 2.5rem; }
.blue-text { color: #80e2ff; }

.policy-content { padding: 40px; }

.shipping-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.ship-box {
    padding: 20px;
    border: 1px solid #000000;
    border-radius: 10px;
    text-align: center;
}

.ship-box.highlighted {
    border-color: #3b5998;
    background-color: #69728b;
}

.ship-icon { font-size: 2.5rem; display: block; margin-bottom: 10px; }

.free-tag {
    background: #28a745;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
}

.important-notice {
    background: #f4e9c6;
    border-left: 5px solid #ffc107;
    padding: 20px;
    border-radius: 5px;
}

.important-notice h3 { margin-top: 0; color: #856404; }
.important-notice ul { padding-left: 20px; color: #856404; }
.important-notice li { margin-bottom: 10px; }

@media (max-width: 600px) {
    .shipping-grid { grid-template-columns: 1fr; }
}

/* Privacy Policy Styles */
.privacy-container {
    background-color: #f8f9fa;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.privacy-box {
    background: white;
    max-width: 700px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    line-height: 1.6;
}

.privacy-box h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 5px;
}

.last-updated {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 30px;
}

.privacy-section {
    margin-bottom: 25px;
}

.privacy-section h2 {
    color: #3b5998; /* Your brand blue */
    font-size: 1.3rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: inline-block;
}

.privacy-section p, .privacy-section li {
    color: #555;
}

.privacy-section ul {
    padding-left: 20px;
}

.privacy-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
}

/* Contact Page Styling */
.contact-page {
    background-color: #77db6a;
    min-height: 100vh;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.contact-container {
    max-width: 900px;
    width: 100%;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 { font-size: 2.8rem; margin-bottom: 10px; }
.blue-text { color: #3b5998; }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: rgba(90, 104, 7, 0.342);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.contact-card:hover { transform: translateY(-5px); }

.contact-icon { font-size: 3rem; display: block; margin-bottom: 15px; }

.contact-action-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    border: 2px solid #3b5998;
    color: #3b5998;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-action-btn.wa-bg {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.contact-action-btn:hover {
    background: #3b5998;
    color: white;
}

.social-connect {
    text-align: center;
    background: rgb(146, 154, 135);
    padding: 30px;
    border-radius: 15px;
}

.social-large-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-large-icons a {
    text-decoration: none;
    color: #3b5998;
    font-weight: bold;
    font-size: 1.1rem;
}

.back-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Remove underline and blue color from product links */
.product a {
    text-decoration: none; /* Removes the underline */
    color: inherit;        /* Makes the text stay black (or whatever color the parent is) */
    display: block;        /* Ensures the whole area remains clickable */
}

.product h2 {
    color: #333;           /* Force a nice dark gray/black color */
    text-decoration: none; /* Extra insurance to remove underline */
}

/* Optional: Keep the title black even when hovered */
.product a:hover h2 {
    color: #000;
    text-decoration: none;
}

.button-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.whatsapp-button, .back-button {
    flex: 1; /* Makes both buttons the same width */
    max-width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.8s;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
}

.back-button {
    background-color: #1a1a1a;
    color: white;
}

.whatsapp-button:hover { background: #1da851; transform: translateY(-2px); }
.back-button:hover { background: #333; transform: translateY(-2px); }

.site-footer {
    clear: both;      /* Prevents other elements from floating next to it */
    width: 100%;      /* Forces it to take the whole width */
    display: block;   /* Ensures it acts as a block, not a flex item */
    margin-top: 50px; /* Gives your products some breathing room */
}

/* Ensure the products container doesn't try to pull the footer in */
.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}



/* for you must like section */
/* --- Related Products Section --- */
.related-products {
    margin-top: 50px;
    padding: 30px 10px;
    border-top: 1px solid #ddd;
    background-color: #fcfcfc; /* Light grey to separate from main product */
    width: 100%;
    box-sizing: border-box;
}

.related-products h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #222;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.products-grid {
    display: flex;
    flex-wrap: wrap; /* CRITICAL: Prevents horizontal scroll/zoom on phone */
    justify-content: center;
    gap: 15px;      /* Slightly tighter gap for mobile screens */
    width: 100%;
}

/* Related Product Cards */
.related-products .product {
    background: rgb(201, 228, 183);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* Soft shadow */
    width: 160px; /* Perfect size for 2-column layout on most phones */
    transition: all 0.3s ease;
    text-align: center;
}

/* Clean up the images in the grid */
.related-products .product img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Hover Effect for Desktop */
.related-products .product:hover {
    transform: translateY(-5px); /* Lifts up instead of just zooming */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Fix text inside the cards */
.related-products .product h2 {
    font-size: 1rem;
    margin: 5px 0;
}

.related-products .product .price {
    color: #25D366; /* Matching your WhatsApp green */
    font-weight: bold;
}


/* If the screen is very small, make the search bar a bit shorter */
@media (max-width: 360px) {
    #searchInput.open {
        width: 150px; /* Shorter bar for small screens */
    }
}



.header-container {
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    padding: 15px 20px;
    width: 100%;
    gap: 20px;
    
    /* PUSHES THE WHOLE UNIT DOWN */
    margin-top: 30px; 
}

.brand-box {
    display: inline-flex;
    align-items: center;
    background: #f8f8f8;
    padding: 8px 15px;
    border-radius: 12px;
    border: 1px solid #eee;
    gap: 12px;
}

.store-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #222;
    text-transform: uppercase;
    margin: 0;
}

.store-logo {
    height: 55px; 
    width: auto;
    border-radius: 5px;
}

.search-container {
    display: flex !important;
    align-items: center !important;
    position: relative !important; /* Forces it back into the normal page flow */
    
    /* PUSH IT RIGHT: Increase this to move it further */
    margin-left: 100px !important; 
    
    /* PUSH IT DOWN: Increase this to move it lower */
    margin-top: 40px !important; 
    
    width: fit-content !important;
    z-index: 1000;
}

.search-icon {
    font-size: 1.5rem;
    cursor: pointer;
    background: #f1f1f1; 
    width: 48px; /* Slightly bigger for easier clicking on phone */
    height: 48px;
    border-radius: 50% !important; 
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
    transition: transform 0.2s;
}

#searchInput {
    width: 0;
    opacity: 0;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    transition: all 0.4s ease-in-out;
    background: transparent;
    border-bottom: 2px solid #cac4c4; /* Darker line so it's visible */
}

/* THE TRIGGER */
#searchInput.open, 
#searchInput.active {
    width: 180px !important;
    opacity: 1 !important;
    margin-left: 15px !important;
    padding: 5px 10px !important;
}

/* CHANGE THIS TO MATCH YOUR HTML NAME */
.search-wrapper {
    display: flex !important;
    align-items: center !important;
    position: relative !important; 
    
    /* PUSH IT RIGHT */
    margin-left: 22px !important; 
    
    /* PUSH IT DOWN */
    margin-top: 1px !important; 
    
    width: fit-content !important;
}

.search-icon {
    font-size: 1.5rem;
    cursor: pointer;
    background: #f1f1f1; 
    width: 48px;
    height: 48px;
    border-radius: 50% !important; 
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
}

#searchInput {
    width: 0;
    opacity: 0;
    border: none;
    outline: none;
    transition: all 0.4s ease;
    background: transparent;
    border-bottom: 2px solid #333;
}

/* This is the class your JavaScript adds on click */
#searchInput.open, 
#searchInput.active {
    width: 180px !important;
    opacity: 1 !important;
    margin-left: 15px !important;
    padding: 5px 10px !important;
}



#searchInput {
    width: 0;
    opacity: 0;
    border: none;
    outline: none;
    padding: 0;
    margin-left: 0;
    transition: all 0.4s ease-in-out;
    background: #f1f1f1; /* Light grey background like the circle */
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
}

/* THE "LIKE BEFORE" STYLE (The White/Grey Pill) */
#searchInput.open, 
#searchInput.active {
    width: 200px !important;    /* Your original width */
    opacity: 1 !important;
    padding: 8px 15px !important; /* The inside spacing you had */
    margin-left: 10px !important; /* Space between the circle and the bar */
    background: #ffffff !important; /* Pure white bar like before */
    border: 1px solid #ddd !important; /* The thin border */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    
    /* THE GLASS LOOK */
    background: rgba(255, 255, 255, 0.1); /* Transparent white */
    backdrop-filter: blur(10px);         /* Blurs the background behind it */
    -webkit-backdrop-filter: blur(10px);
    
    padding: 12px 25px;
    margin: 25px auto;
    width: fit-content;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Shiny edge */
    
    /* THE GLOW EFFECT */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2), 
                0 0 15px rgba(76, 175, 80, 0.2); /* Soft green glow */
    
    transition: transform 0.3s ease;
}

/* Hover effect for Laptop users */
.price-container:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
}

.price-label {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price {
    color: #ffffff; /* White text looks better on the dark green bg */
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2rem; /* Big and Bold */
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* PHONE OPTIMIZATION */
@media (max-width: 600px) {
    .price-container {
        padding: 10px 20px;
        margin: 20px auto;
    }
    
    .product-price {
        font-size: 1.6rem; /* Slightly smaller for mobile screens */
    }
    
    .price-label {
        font-size: 0.7rem;
    }
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content; /* This prevents it from stretching to full width */
    margin: 10px auto;  /* This centers it */
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2); 
    border-radius: 12px;
}

.footer-section.info {
    display: flex;
    flex-direction: column;
    align-items: center; /* This ensures everything in the info box stays centered together */
    text-align: center;
}

.footer-socials {
    display: flex;
    justify-content: center; /* Keeps IG and TT centered under the text */
    gap: 20px;
    margin-top: 10px; /* Space directly under the Beirut sentence */
    /* REMOVED margin-left: 135px - that was the problem! */
}

.social-link {
    font-size: 1.8rem;
    color: #333;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Hover effects stay the same */
.social-link:hover {
    transform: translateY(-3px);
}

.social-link {
    font-size: 1.8rem; /* Makes the logos nice and visible */
    color: #333;       /* Matches your footer text */
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Instagram Hover Color */
.social-link .fa-instagram:hover {
    color: #E1306C; 
    transform: scale(1.2);
}

/* TikTok Hover Color */
.social-link .fa-tiktok:hover {
    color: #000;
    text-shadow: 2px 2px #ff0050, -2px -2px #00f2ea; /* TikTok glitch effect */
    transform: scale(1.2);
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    text-align: center;
    margin: 20px auto;
    
    /* THE WOW: Gradient from Black to your Brand Green */
    background: linear-gradient(to right, #1a1a1a 20%, #2e7d32 40%, #4caf50 60%, #1a1a1a 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Animation for that "Liquid" feel */
    animation: shine 5s linear infinite;
    
    letter-spacing: -1.5px; /* Super tight, super pro */
    text-transform: uppercase; /* Makes it feel like a heavy-duty brand */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* The Shine Animation */
@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Interaction: When you hover the product card */
.product:hover h2 {
    transform: scale(1.1) rotate(-1deg); /* Slight "cool" tilt */
    filter: drop-shadow(0px 0px 8px rgba(46, 125, 50, 0.5));
}

/* MOBILE: Make it fit perfectly */
@media (max-width: 600px) {
    h2 {
        font-size: 1.4rem;
        letter-spacing: -1px;
        margin: 15px auto;
    }
}

/* 1. Container Setup */
.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px; /* Slightly smoother rounded corners */
    background-color: #f9f9f9;
}

/* 2. Image Transition */
.product-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); /* Ultra smooth ease-out */
}

/* 3. Creative Frosted Glass Overlay */
.product-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Premium Blurry Glass Effect */
    background: rgba(255, 255, 255, 0.15); 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    
    /* Elegant Subtle Glow from the bottom corner */
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.65) 100%);

    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Hide it completely using opacity */
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

/* 4. Animated Typography inside the Overlay */
.product-image .overlay p {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase; /* Makes "yes!! your choice" look like a sleek tag */
    margin: 0;
    padding: 10px 20px;
    
    /* Glass tag border effect around the text */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(117, 233, 46, 0.889);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

    /* Text Animation Start Position (shifted slightly up) */
    transform: translateY(-20px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 5. THE INTERACTION (When Hovered) */
.product:hover .overlay {
    opacity: 1; /* Smoothly fades the glass sheet in */
}

.product:hover .overlay p {
    transform: translateY(0); /* Drops the text capsule perfectly into the center */
}

.product:hover .product-image img {
    transform: scale(1.08) rotate(1deg); /* Slight scale and tiny tilt for dynamic energy */
}