@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

/* General Styling & Variables */
:root {
    /* FEMININE COSMETICS PALETTE */
    --primary-color: #D4A5A5; /* Soft blush pink — warmth, femininity */
    --secondary-color: #F5E1E1; /* Pale rose background for sections */
    --accent-color: #E8C7A3; /* Champagne gold — luxury touch */

    --text-dark: #4B3B3B; /* Soft dark brown — gentler than black */
    --text-light: #FFFFFF; /* Classic white for contrast */
    --bg-light: #FFF8F8; /* Very light pinkish-white background */

    --border-color: #E9D6D6; /* Soft beige-pink borders */
    --box-shadow: 0 8px 25px rgba(212, 165, 165, 0.15);
    --border-radius: 10px;
    --transition: all 0.4s ease-in-out;
    --font-family: 'Poppins', sans-serif;

    /* Message colors */
    --success-message: #C2E1C2; /* soft green */
    --error-message: #F28B82; /* pastel coral red */
    --info-message: #A7C7E7; /* soft pastel blue */
}


* {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
}

html {
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Message Box --- */
.message {
    padding: 15px 20px;
    background-color: var(--info-message);
    color: var(--text-light);
    text-align: center;
    box-shadow: var(--box-shadow);
    text-transform: capitalize;
    cursor: pointer;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
}
.message.success { background-color: var(--success-message); }
.message.error { background-color: var(--error-message); }


/* --- Buttons --- */
.btn,
.delete-btn,
.option-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
    white-space: nowrap; /* Prevent text wrapping */
}

.btn.primary-btn { /* For hero section CTA */
    background-color: var(--primary-color); 
    color: var(--text-light);
    border-color: var(--primary-color);
}
.btn.primary-btn:hover {
    background-color: #3B6647; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn.secondary-btn { /* For hero section CTA */
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}
.btn.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    border-color: var(--accent-color);
}


.btn { /* Default product add to cart button */
    background-color: var(--primary-color); /* Sage green/forest green */
    color: var(--text-light);
    border-color: var(--primary-color);
}

.btn:hover {
    background-color: #3B6647; /* Slightly darker sage */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.delete-btn {
    background-color: var(--error-message); /* Red for delete */
    color: var(--text-light);
    border-color: var(--error-message);
}
.delete-btn:hover {
    background-color: #C62828;
}


.option-btn {
    background-color: transparent; /* Changed to transparent for a cleaner look */
    color: var(--primary-color); /* Text color from primary */
    border: 1px solid var(--primary-color); /* Border in primary color */
}
.option-btn:hover {
    background-color: var(--primary-color); /* Fill on hover */
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* --- Form Container (Login/Register/Admin) --- */
.form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px);
    padding: 25px;
    background-color: var(--bg-light);
}

.form-container form {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    width: 100%;
    max-width: 550px;
    border: 1px solid var(--border-color);
}

.form-container form h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark); /* Dark blue-gray */
    text-align: center;
}

.form-container form .box {
    width: 100%;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    font-size: 16px;
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-container form .box:focus {
    border-color: var(--primary-color); /* Sage green/forest green focus */
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.15);
}


/* --- Section Headings --- */
.heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark); /* Dark blue-gray */
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 20px; /* Add some padding above heading */
}

/* --- Global Container for Sections --- */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 25px;
}

/* --- Hero Section --- */
/* HERO SECTION — FINAL FIX */
.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 85px); /* match your header height */
    overflow: hidden;
}

/* Tablets */
@media (max-width: 768px) {
    .hero-section {
        height: calc(100vh - 110px);
    }
}

/* Phones */
@media (max-width: 480px) {
    .hero-section {
        height: calc(100vh - 130px);
    }
}





/* 🟥 Side-by-side video layout */
.video-container {
  display: flex;
  flex-direction: row; /* side by side */
  width: 100%;
  height: 100%;
}

.video-container video {
  width: 50%;          /* half the screen each */
  height: 100%;
  object-fit: cover;
  filter: brightness(30%);
}

/* 🟡 Centered overlay content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.5;
}

/* 📱 Responsive tweak for mobile */
@media (max-width: 768px) {
  .video-container {
    flex-direction: column; /* stack only on small screens */
  }

  .video-container video {
    width: 100%;
    height: 50%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}



/* --- Product Grid Styling (used by Featured, Recently Added) --- */
.products-section .box-container,
.product-carousel-section .box-container { /* Applies to both */
    display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-content: center;
}

.products-section .box,
.product-carousel-section .box {
    padding: 25px;
    background-color: white;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
    position: relative; /* For the new button layout */
    overflow: hidden; /* For image hover effect */
}

.products-section .box:hover,
.product-carousel-section .box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.products-section .box img,
.product-carousel-section .box img {
    height: 140px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 15px;
    transition: transform var(--transition);
}

.products-section .box:hover img,
.product-carousel-section .box:hover img {
    transform: scale(1.05);
}

.products-section .box .name,
.product-carousel-section .box .name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 10px 0;
    line-height: 1.3;
}

.products-section .box .price,
.product-carousel-section .box .price {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 20px;
}

.products-section .box .btn,
.product-carousel-section .box .btn {
    width: 90%;
    padding: 10px 20px;
    margin-bottom: 10px; /* Space between buttons */
}
.products-section .box .option-btn,
.product-carousel-section .box .option-btn {
    width: 90%;
    padding: 10px 20px;
}


/* --- Carousel Specific Styles --- */
#productCarousel .carousel-inner {
    padding: 30px 0;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
}

#productCarousel .carousel-item {
    padding: 0 50px;
}

#productCarousel .carousel-control-prev,
#productCarousel .carousel-control-next {
    width: 5%;
    background: none;
    opacity: 0.8;
    transition: opacity var(--transition);
}

#productCarousel .carousel-control-prev:hover,
#productCarousel .carousel-control-next:hover {
    opacity: 1;
}

#productCarousel .carousel-control-prev-icon,
#productCarousel .carousel-control-next-icon {
    background-color: var(--primary-color); 
    padding: 15px;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    background-size: 50%;
}

#productCarousel .carousel-control-prev-icon {
    transform: translateX(5px);
}

#productCarousel .carousel-control-next-icon {
    transform: translateX(-5px);
}

#productCarousel .carousel-indicators button {
    background-color: var(--secondary-color); 
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    opacity: 0.7;
    transition: opacity var(--transition), background-color var(--transition);
}

#productCarousel .carousel-indicators button.active {
    background-color: var(--accent-color); 
    opacity: 1;
    width: 15px;
    height: 15px;
}

/* --- Categories Section --- */
.categories-section .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-content: center;
}

.category-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    padding: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden; /* For image transition */
}

.category-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.category-image-wrapper {
    width: 100%; /* Make image wrapper take full width of box */
    height: 150px; /* Fixed height for consistency */
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.category-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area, cropping if necessary */
    transition: transform var(--transition);
}

.category-box:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
}

.category-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    transition: color var(--transition);
}

.category-box:hover .category-name {
    color: var(--primary-color);
}


/* --- Shopping Cart Table (Existing, ensure consistency) --- */
.container .shopping-cart {
    padding: 25px 0;
}

.container .shopping-cart table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-light);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 30px;
}

.container .shopping-cart table thead {
    background-color: var(--primary-color);
}

.container .shopping-cart table thead th {
    padding: 18px;
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
}

.container .shopping-cart table tbody td {
    padding: 15px 18px;
    font-size: 16px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.container .shopping-cart table tbody td:last-child {
    border-bottom: none;
}

.container .shopping-cart table tbody td img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.container .shopping-cart table tbody td input[type="number"] {
    width: 70px;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    text-align: center;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.container .shopping-cart .total-price {
    text-align: right;
    padding: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.container .shopping-cart .total-price span {
    color: var(--primary-color);
    font-size: 1.7rem;
}


/* --- Purchase Button (WhatsApp, from mycart.php) --- */
.purchase-btn { /* For mycart.php */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding-bottom: 30px;
}

.purchase-btn input[type="submit"] {
    background-color: #25D366; /* WhatsApp green remains */
    color: var(--text-light);
    border: none;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.purchase-btn input[type="submit"]::before {
    content: '💬';
    font-size: 1.3em;
}


.purchase-btn input[type="submit"]:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.purchase-btn input[type="submit"]:active {
    transform: translateY(0);
}

.purchase-btn input[type="submit"]:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.3);
}

.purchase-btn input[type="submit"]:disabled {
    background-color: #b5b5b5;
    cursor: not-allowed;
    box-shadow: none;
}


/* --- Footer --- */
footer {
    color: black;
    padding: 40px 0;
    margin-top: 80px;
    border-top: 5px solid var(--accent-color); /* Muted gold for footer top border */
}

footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    color:black;
}

.footer-section {
    flex: 1 1 300px;
    padding: 15px;
      color: black;
}

.footer-section h3 {
    color: var(--accent-color); /* Muted gold for footer headings */
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p,
.footer-section ul li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: black;
}

.footer-section ul {
    list-style: none;
    padding: 0;
      color: black;
}

.footer-section ul li a {
    color: black;
    transition: var(--transition);
    padding: 5px 0;
    display: block;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

footer .copyright {
    text-align: center;
    padding: 25px 0 0;
    margin-top: 25px;
    color: rgb(0, 0, 0);
    font-size: 0.85rem;
}


/* --- Main content area - pushes sidebar to the right --- */
.main-content {
    flex-grow: 1; /* Allows main content to take up available space */
    padding: 20px; /* Add some padding to your main content */
    /* Adjust padding to not be under the fixed header */
    padding-top: 0; 
}

/* Sidebar styling */
.side-section {
  
    width: 280px; /* Adjust width as needed for your sidebar */
    background-color: var(--bg-light); /* Use your light background variable */
    border-left: 1px solid var(--border-color); /* Subtle left border */
    padding: 20px 15px; /* Padding inside the sidebar */
    box-shadow: var(--box-shadow); /* Use your shadow variable */
    display: flex; /* Use flexbox for internal layout if desired (e.g., column) */
    flex-direction: column; /* Stack items vertically */
    height: calc(100vh - 80px); /* Make it span the remaining viewport height (100vh - header height) */
    position: sticky; /* Makes it stick when scrolling */
    top: 80px; /* Aligns it to the top, below the fixed header */
    overflow-y: auto; /* Adds scroll if content exceeds height */
    flex-shrink: 0; /* Prevent sidebar from shrinking */
}

.side-section-heading {
    font-size: 1.3em;
    color: var(--text-dark); /* Use your dark text variable */
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color); /* Use your border color */
}

.side-product-list {
    list-style: none; /* Remove bullet points if it's a list */
    padding: 0;
    margin: 0;
    flex-grow: 1; /* Allows product list to take available height */
}

.side-product-item {
    margin-bottom: 15px;
    background-color: #fff; /* White background for individual items */
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: box-shadow 0.2s ease-in-out;
}

.side-product-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Slightly more prominent shadow on hover */
}

.side-product-item a {
    display: flex; /* Use flexbox for image and details */
    align-items: center; /* Vertically align items */
    text-decoration: none;
    color: inherit;
    padding: 10px;
}

.side-product-item img {
    width: 70px; /* Fixed width for product images */
    height: 70px; /* Fixed height to keep aspect ratio */
    object-fit: cover; /* Crop images to fit */
    margin-right: 15px;
    border-radius: 3px;
    flex-shrink: 0; /* Prevent image from shrinking */
}

.side-product-details {
    flex-grow: 1; /* Allow details to take remaining space */
}

.side-product-name {
    font-weight: bold;
    color: var(--text-dark); /* Use your dark text variable */
    margin-bottom: 5px;
    font-size: 0.95em;
}

.side-product-price {
    color: var(--primary-color); /* Use your primary color for prices */
    font-size: 0.9em;
    font-weight: 600;
}

.btn.view-all-side-btn {
    display: block; /* Make the button take full width */
    text-align: center;
    background-color: var(--primary-color); /* Use your primary color */
    color: var(--text-light);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    text-decoration: none;
    margin-top: 20px;
    transition: var(--transition);
}

.btn.view-all-side-btn:hover {
    background-color: #3B6647; /* Slightly darker primary on hover */
}

.side-section p { /* Styling for "No products found" message */
    text-align: center;
    color: var(--secondary-color); /* A softer color for info messages */
    font-style: italic;
}


/* --- Responsiveness --- */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.8rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .navbar nav {
        gap: 15px;
    }
    .navbar nav a {
        font-size: 1rem;
    }
    .hero-section {
        height: 500px;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        font-size: 1.1rem;
        max-width: 500px;
    }
    .hero-content .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    .products-section .box-container,
    .product-carousel-section .box-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .categories-section .box-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
    .category-box img {
        height: 120px;
    }
    /* Hide sidebar on smaller screens or adjust layout */
    .side-section {
        display: none; /* Hide sidebar by default on smaller screens */
    }
    body {
        flex-direction: column; /* Stack header and main content vertically */
    }
    .main-content {
        padding: 20px; /* Restore padding if sidebar is hidden */
        padding-top: 0; /* Maintain original padding top for main content */
    }
}
@media (max-width: 576px) {
    .hero-section {
        height: 400px; /* Shorter hero on mobile */
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .hero-content .btn {
        display: block; /* Stack buttons */
        margin: 10px auto;
        width: 80%;
    }
.products-section .box-container,
.product-carousel-section .box-container,
.categories-section .box-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
}

    .products-section .box,
    .product-carousel-section .box,
    .category-box {
        width: 100%;
       max-width: 100%;
/* Constrain width even in single column */
        margin: 0 auto;
    }
    .heading {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    footer .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .footer-section {
        flex: none;
        width: 100%;
        padding: 10px;
    }
    .footer-section ul li a:hover {
        transform: none;
    }
    /* Carousel adjustments for smaller screens */
    #productCarousel .carousel-item {
        padding: 0 15px; 
    }
    #productCarousel .carousel-control-prev,
    #productCarousel .carousel-control-next {
        width: 8%; 
    }
    #productCarousel .carousel-control-prev-icon,
    #productCarousel .carousel-control-next-icon {
        padding: 10px; 
        background-size: 40%;
    }
    #productCarousel .carousel-indicators {
        bottom: 10px; 
    }
    /* Specific overrides for carousel when only one item is displayed per slide */
    #productCarousel .carousel-item .col-md-4 {
        flex: 0 0 100%; /* Take full width */
        max-width: 100%;
    }
    /* Ensure body adapts to no sidebar */
    body {
        display: block; /* Remove flex on smaller screens if sidebar is hidden */
        padding-top: 80px; /* Keep padding for fixed header */
        min-height: auto; /* Allow content to dictate height */
    }
    .main-content {
        width: 100%; /* Main content takes full width */
        padding: 25px; /* Adjust as needed for smaller screens */
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    
    .btn, .delete-btn, .option-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
    .products-section .box img,
    .product-carousel-section .box img {
        height: 150px;
    }
    .products-section .box .name,
    .product-carousel-section .box .name {
        font-size: 1.1rem;
    }
    .products-section .box .price,
    .product-carousel-section .box .price {
        font-size: 1.4rem;
    }
    .category-box img {
        height: 100px;
    }
    .category-name {
        font-size: 1rem;
    }
}
/* style.css */
a{
    text-decoration: none;
}
/* --- General Body and Layout Reset (Important for full-width layout) --- */
body {
    margin: 0;
    padding: 0;
    display: flex; /* If using flexbox for overall page layout */
    flex-direction: column; /* Stacks header, main, footer vertically */
    min-height: 100vh; /* Ensures body takes at least full viewport height */
}

main {
    flex-grow: 1; /* Allows main content to expand and push footer down */
    /* Add padding if needed to prevent content from touching header/footer */
    padding-bottom: 20px; /* Example padding */
}

.black-friday-banner {
    background: linear-gradient(135deg, #000, #111);
    color: #fff;
    text-align: center;
    padding: 22px 15px;
    border-radius: 12px;
    margin: 25px auto;
    width: 100%;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    animation: glow 2s infinite alternate;
}

/* Title */
.black-friday-banner .bf-big {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    display: block;
}

/* Subtitle */
.black-friday-banner .bf-small {
    font-size: 1.2rem;
    margin-top: 5px;
}

.black-friday-banner strong {
    color: #ff3b7c; /* gold */
}

/* Glow animation */
@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
    to {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .black-friday-banner .bf-big {
        font-size: 1.6rem;
    }
    .black-friday-banner .bf-small {
        font-size: 1rem;
    }
}


/* FIX PRODUCT BOX HEIGHT — ONLY THIS */
.products-section .box,
.product-carousel-section .box,
.category-box {
    height: auto !important;
    padding: 10px !important; /* Optional: to avoid huge interior spacing */
}

/* FIX IMAGE HEIGHT */
.products-section .box img,
.product-carousel-section .box img,
.category-box img {
    height: 140px !important;     /* Adjust this value if needed */
    object-fit: cover !important;
}

/* FORCE 2 COLUMNS ON MOBILE */
@media (max-width: 576px) {
    .products-section .box-container,
    .product-carousel-section .box-container,
    .categories-section .box-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    /* More compact layout */
    .products-section .box,
    .product-carousel-section .box,
    .category-box {
        padding: 10px !important;
        height: auto !important;
    }
}
.hbMobileMenu{
padding-left: 30px;
}




/* --- News Ticker Styling --- */
.ticker-wrap {
    margin: 0;              /* remove ALL margins */
    padding: 14px 0;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.ticker {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: moveRight 22s linear infinite;
}

.ticker span {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-right: 40px;
    text-transform: uppercase;
}

/* Animation */
@keyframes moveRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
