/* ========================================
   ROOT VARIABLES - ONLY THESE COLORS USED
======================================== */
:root {
    --metallic-light: #D8DEE4;
    --metallic-mid: #8B98A8;
    --metallic-dark: #4A5A6A;
    --background-dark: #1F2B3A;
    --background-darker: #151E2A;
    --pure-white: #FFFFFF;
    --pure-black: #000000;
    --text-gray: #3A4A5A;
}

/* ========================================
   GLOBAL RESET
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-gray);
    overflow-x: hidden;
}

/* ========================================
   TOP HEADER
======================================== */
.top-header {
    background: var(--background-darker);
    color: var(--pure-white);
    padding: 10px 0;
    font-size: 14px;
}

.top-header i {
    margin-right: 5px;
}

.delivery-badge {
    background: var(--pure-white);
    color: var(--pure-black);
    padding: 3px 12px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
}

.offer-text {
    font-weight: 500;
    font-size: 13px;
}

.welcome-badge {
    background: var(--pure-white);
    color: var(--pure-black);
    padding: 3px 15px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 12px;
}

/* ========================================
   NAVBAR
======================================== */
.navbar {
    padding: 15px 0;
    background: var(--pure-white);
}

.navbar-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--pure-black);
}

.brand-red {
    color: var(--metallic-dark);
}

.nav-link {
    color: var(--pure-black);
    font-weight: 500;
    padding: 8px 15px !important;
    transition: color 0.3s;
    font-size: 14px;
}

.nav-link:hover {
    color: var(--metallic-dark);
}

.badge {
    font-size: 10px;
    padding: 3px 6px;
    background: var(--metallic-dark);
    color: var(--pure-white);
}

/* ========================================
   SEARCH BAR
======================================== */
.search-container {
    max-width: 600px;
}

.search-bar {
    border: 2px solid var(--metallic-light);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s;
}

.search-bar:focus-within {
    border-color: var(--metallic-dark);
    box-shadow: 0 0 10px rgba(74, 90, 106, 0.2);
}

.search-bar .form-control {
    border: none;
    padding: 12px 20px;
    font-size: 15px;
}

.search-bar .form-control:focus {
    box-shadow: none;
    outline: none;
}

.btn-search {
    background: var(--metallic-dark);
    color: var(--pure-white);
    border: none;
    padding: 12px 25px;
    border-radius: 0;
    transition: all 0.3s;
}

.btn-search:hover {
    background: var(--background-darker);
    color: var(--pure-white);
}

/* ========================================
   CATEGORY MENU
======================================== */
.category-menu {
    background: var(--metallic-light);
    border-bottom: 2px solid var(--metallic-dark);
}

.category-menu .nav-link {
    color: var(--pure-black);
    font-weight: 600;
    font-size: 13px;
    padding: 12px 12px !important;
    transition: all 0.3s;
}

.category-menu .nav-link:hover {
    color: var(--metallic-dark);
    background: var(--pure-white);
}

/* ========================================
   CATEGORY ICONS SECTION
======================================== */
.category-icons-section {
    background: var(--pure-white);
    padding: 15px 0 15px;
}

.category-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.category-carousel .owl-nav button {
    position: absolute;
    width: 35px;
    height: 35px;
    background: var(--metallic-dark) !important;
    color: var(--pure-white) !important;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s;
}

.category-carousel .owl-nav button:hover {
    background: var(--background-darker) !important;
}

.category-carousel .owl-nav .owl-prev {
    left: -15px;
}

.category-carousel .owl-nav .owl-next {
    right: -15px;
}

.category-card {
    text-align: center;
    padding: 12px 8px;
    background: var(--pure-white);
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid var(--metallic-light);
}

.category-card:hover {
    box-shadow: 0 10px 25px rgba(74, 90, 106, 0.15);
    border-color: var(--metallic-dark);
}

.icon-badge {
    width: 60px;
    height: 60px;
    background: var(--metallic-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 26px;
    color: var(--background-darker);
    border: 2px solid var(--metallic-mid);
    transition: all 0.3s;
}

.category-card:hover .icon-badge {
    background: var(--metallic-dark);
    color: var(--pure-white);
    border-color: var(--background-darker);
}

.deal-badge {
    background: var(--background-darker);
    color: var(--pure-white);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    border-color: var(--metallic-dark);
}

.category-card p {
    margin: 0;
    font-weight: 600;
    color: var(--pure-black);
    font-size: 12px;
}

/* ========================================
   HERO BANNER SECTION
======================================== */
.hero-banner-section {
    position: relative;
    background: var(--pure-white);
}

.banner-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.banner-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.banner-carousel .owl-nav button.owl-prev,
.banner-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(74, 90, 106, 0.7) !important;
    color: var(--pure-white) !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.banner-carousel .owl-nav button.owl-prev:hover,
.banner-carousel .owl-nav button.owl-next:hover {
    background: var(--metallic-dark) !important;
}

.banner-carousel .owl-nav button.owl-prev {
    left: 10px;
}

.banner-carousel .owl-nav button.owl-next {
    right: 10px;
}

.banner-carousel .owl-dots {
    text-align: center;
    margin-top: 15px;
}

.banner-carousel .owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: var(--metallic-mid);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.banner-carousel .owl-dot.active {
    background: var(--metallic-dark);
}

.owl-carousel .owl-nav button.owl-next, 
.owl-carousel .owl-nav button.owl-prev, 
.owl-carousel button.owl-dot {
    margin-top: -25px !important;
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

/* ========================================
   IMAGE BANNER CAROUSEL SECTION
======================================== */
.image-banner-carousel-section {
    position: relative;
    margin-bottom: 0;
}

.banner-slide {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(21, 30, 42, 0.85) 0%, rgba(21, 30, 42, 0.3) 100%);
    display: flex;
    align-items: center;
}

.banner-text {
    max-width: 600px;
}

.banner-text h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--pure-white);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.banner-text p {
    font-size: 20px;
    color: var(--pure-white);
    margin-bottom: 25px;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.btn-banner {
    background: var(--metallic-dark);
    color: var(--pure-white);
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid var(--metallic-dark);
    border-radius: 50px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
}

.btn-banner:hover {
    background: var(--pure-white);
    color: var(--metallic-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.image-banner-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

.image-banner-carousel .owl-nav button {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2) !important;
    color: var(--pure-white) !important;
    border-radius: 50%;
    font-size: 28px;
    transition: all 0.3s;
    pointer-events: all;
    backdrop-filter: blur(5px);
}

.image-banner-carousel .owl-nav button:hover {
    background: var(--metallic-dark) !important;
    transform: scale(1.1);
}

.image-banner-carousel .owl-nav .owl-prev {
    left: 30px;
}

.image-banner-carousel .owl-nav .owl-next {
    right: 30px;
}

.image-banner-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
}

/* ========================================
   FEATURES SECTION
======================================== */
.features-section {
    padding: 60px 0;
    background: var(--pure-white);
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: var(--metallic-light);
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 90, 106, 0.15);
}

.feature-card i {
    font-size: 50px;
    color: var(--metallic-dark);
    margin-bottom: 15px;
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--pure-black);
}

.feature-card p {
    color: var(--text-gray);
    margin: 0;
}

/* ========================================
   BRANDS & MANUFACTURERS SECTION
======================================== */
.brands-section,
.manufacturers-section {
    padding: 60px 0;
    background: var(--pure-white);
}

.manufacturers-section {
    background: var(--metallic-light);
}

.section-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--pure-black);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-card {
    background: var(--pure-white);
    border: 2px dashed var(--metallic-mid);
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.brand-card:hover {
    border-color: var(--metallic-dark);
    border-style: solid;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(74, 90, 106, 0.15);
}

.brand-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.brand-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.brand-name {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    text-align: center;
}

/* ========================================
   PRODUCT SHOWCASE SECTION
======================================== */
.product-showcase-section {
    padding: 50px 0;
    background: var(--metallic-light);
}

.deals-section {
    background: var(--pure-white);
}

.product-card {
    background: var(--pure-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(74, 90, 106, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(74, 90, 106, 0.15);
    border-color: var(--metallic-dark);
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--metallic-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--metallic-dark);
    color: var(--pure-white);
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 5px;
    z-index: 1;
}

.deal-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--background-darker);
    color: var(--pure-white);
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 5px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(21, 30, 42, 0.3);
}

.product-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pure-black);
    margin-bottom: 10px;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mrp {
    font-size: 0.75rem;
    color: var(--metallic-mid);
}

.mrp del {
    color: var(--metallic-mid);
}

.offer-price {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.offer-price strong {
    color: var(--metallic-dark);
    font-size: 1.1rem;
    font-weight: 700;
}

.big-product {
    height: 100%;
    min-height: 400px;
}

.big-product .product-image {
    height: 350px;
}

.big-product .product-title {
    font-size: 1.1rem;
    min-height: 50px;
}

.big-product .offer-price strong {
    font-size: 1.3rem;
}

.small-product {
    height: 100%;
    min-height: 350px;
}

.small-product .product-image {
    height: 200px;
}

.small-product .product-title {
    font-size: 14px;
    min-height: 40px;
}

.row.g-3 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

/* ========================================
   NEWS BANNER SECTION
======================================== */
.news-banner-section {
    background: var(--pure-white);
    padding: 40px 0;
    border-top: 3px solid var(--metallic-dark);
    border-bottom: 3px solid var(--metallic-dark);
}

.news-banner-content {
    text-align: center;
}

.banner-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--pure-black);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.megaphone-icon {
    color: var(--metallic-dark);
    font-size: 48px;
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-5deg); }
    20%, 40%, 60%, 80% { transform: rotate(5deg); }
}

/* ========================================
   NEWS CARDS SECTION
======================================== */
.news-cards-section {
    padding: 60px 0;
    background: var(--metallic-light);
}

.news-card {
    background: var(--pure-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(74, 90, 106, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(74, 90, 106, 0.2);
    border-color: var(--metallic-dark);
}

.news-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--metallic-light);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 20px;
}

.news-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--pure-black);
    margin-bottom: 15px;
    line-height: 1.5;
    min-height: 70px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: var(--text-gray);
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-meta i {
    color: var(--metallic-dark);
    font-size: 14px;
}

.btn-view-all {
    background: var(--metallic-dark);
    color: var(--pure-white);
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid var(--metallic-dark);
    border-radius: 50px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-view-all:hover {
    background: var(--pure-white);
    color: var(--metallic-dark);
}

/* ========================================
   ABOUT SECTION DETAILED
======================================== */
.about-section-detailed {
    padding: 80px 0;
    background: var(--pure-white);
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(74, 90, 106, 0.2);
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--pure-black);
}

.about-section-detailed .lead {
    color: var(--metallic-dark);
    font-weight: 600;
    font-size: 20px;
}

.about-features li {
    padding: 12px 0;
    font-size: 17px;
    color: var(--text-gray);
}

.about-features li i {
    margin-right: 12px;
    font-size: 22px;
    color: var(--metallic-dark);
}

.about-content-full {
    background: var(--metallic-light);
    padding: 40px;
    border-radius: 20px;
    margin-top: 30px;
}

.content-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--pure-black);
    margin-bottom: 20px;
}

.about-content-full p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.about-feature-box {
    text-align: center;
    padding: 30px 20px;
    background: var(--pure-white);
    border-radius: 15px;
    transition: all 0.3s;
    height: 100%;
}

.about-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 90, 106, 0.15);
}

.about-feature-box i {
    font-size: 48px;
    color: var(--metallic-dark);
    margin-bottom: 15px;
}

.about-feature-box h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--pure-black);
    margin-bottom: 10px;
}

.about-feature-box p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.product-range-list,
.services-list {
    list-style: none;
    padding: 0;
}

.product-range-list li {
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(74, 90, 106, 0.1);
}

.product-range-list li strong {
    color: var(--metallic-dark);
    font-weight: 700;
}

.services-list li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.services-list li i {
    color: var(--metallic-dark);
    font-size: 20px;
    margin-top: 2px;
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-section {
    padding: 80px 0;
    background: var(--metallic-light);
}

.accordion-item {
    background: var(--pure-white);
    border: 2px solid var(--metallic-light);
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: var(--pure-white);
    color: var(--pure-black);
    font-size: 17px;
    font-weight: 700;
    padding: 20px 25px;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--metallic-dark);
    color: var(--pure-white);
}

.accordion-button:not(.collapsed) i {
    color: var(--pure-white);
}

.accordion-button::after {
    background-image: none;
    content: "\F282";
    font-family: "bootstrap-icons";
    font-size: 24px;
    color: var(--metallic-dark);
}

.accordion-button:not(.collapsed)::after {
    content: "\F286";
    color: var(--pure-white);
}

.accordion-button i {
    color: var(--metallic-dark);
    font-size: 22px;
}

.accordion-body {
    padding: 25px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    background: var(--pure-white);
}

/* ========================================
   FOOTER - LEFT ALIGNED CONTENT
======================================== */
.footer {
    background: var(--background-darker);
    color: var(--pure-white);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer .brand-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--pure-white);
    margin-bottom: 15px;
    text-align: left;
}

.footer .brand-red {
    color: var(--metallic-dark);
}

.footer p {
    color: var(--metallic-light);
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: left;
}

.footer h5 {
    color: var(--pure-white);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
    text-align: left;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--metallic-dark);
    border-radius: 2px;
}

.footer ul {
    padding-left: 0;
    text-align: left;
}

.footer ul li {
    margin-bottom: 12px;
    text-align: left;
}

.footer ul li a {
    color: var(--metallic-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer ul li a:hover {
    color: var(--pure-white);
    padding-left: 5px;
}

.footer .contact-info li {
    color: var(--metallic-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.footer .contact-info li i {
    color: var(--metallic-dark);
    margin-right: 10px;
    font-size: 1.1rem;
    min-width: 20px;
    margin-top: 2px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--metallic-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--metallic-mid);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 152, 168, 0.3);
}

.footer hr {
    border-color: var(--metallic-dark);
    margin: 40px 0 20px;
}

.footer .row:last-child p,
.footer .row:last-child a {
    color: var(--metallic-light);
    font-size: 0.9rem;
}

.footer .row:last-child a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .row:last-child a:hover {
    color: var(--pure-white);
}

/* ========================================
   FLOAT BUTTONS
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 25px;
    background: #25D366;
    color: var(--pure-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: var(--pure-white);
}

.call-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--metallic-dark);
    color: var(--pure-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(74, 90, 106, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite 0.5s;
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(74, 90, 106, 0.6);
    color: var(--pure-white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* ========================================
   FIXED BOTTOM NAVIGATION FOR MOBILE
======================================== */
.fixed-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--pure-white);
    box-shadow: 0 -2px 10px rgba(74, 90, 106, 0.1);
    z-index: 1030;
    padding: 8px 0;
}

.bottom-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--metallic-mid);
    padding: 5px;
    transition: all 0.3s ease;
}

.bottom-nav-link i {
    font-size: 1.3rem;
    margin-bottom: 2px;
}

.bottom-nav-link span {
    font-size: 0.7rem;
    font-weight: 500;
}

.bottom-nav-link:hover,
.bottom-nav-link.active {
    color: var(--metallic-dark);
}

.bottom-nav-link.active i {
    color: var(--metallic-dark);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Desktop view - full height banner */
@media (min-width: 768px) {
    .banner-image img {
        height: 455px;
        border-radius: 15px;
    }
}

/* Tablet View (768px - 991px) */
@media (max-width: 991.98px) and (min-width: 768px) {
    .search-container {
        max-width: 100%;
    }
    
    .nav-link {
        padding: 10px 15px !important;
    }
    
    .big-product {
        min-height: 300px;
    }
    
    .big-product .product-image {
        height: 250px;
    }
    
    .small-product {
        min-height: 320px;
    }
    
    .small-product .product-image {
        height: 180px;
    }
    
    .product-title {
        font-size: 0.85rem;
        height: 38px;
    }
    
    .banner-slide {
        height: 400px;
    }
    
    .banner-text h2 {
        font-size: 36px;
    }
    
    .banner-text p {
        font-size: 18px;
    }
    
    .btn-banner {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* Tablet and Mobile (max-width: 991px) */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 70px;
    }
    
    .footer {
        padding: 50px 0 20px;
        margin-top: 60px;
    }
    
    .footer .brand-text {
        font-size: 1.6rem;
    }
    
    .footer h5 {
        margin-top: 20px;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        bottom: 160px;
    }
    
    .call-float {
        bottom: 90px;
    }
}

/* Mobile View (576px - 767px) */
@media (max-width: 767.98px) and (min-width: 576px) {
    .product-showcase-section {
        padding: 30px 0;
    }
    
    .section-heading {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .small-product {
        min-height: 300px;
    }
    
    .product-image,
    .small-product .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-title {
        font-size: 0.8rem;
        height: 36px;
        margin-bottom: 8px;
    }
    
    .mrp {
        font-size: 0.7rem;
    }
    
    .offer-price {
        font-size: 0.8rem;
    }
    
    .offer-price strong {
        font-size: 1rem;
    }
}

/* Mobile View (max-width: 767px) */
@media (max-width: 767.98px) {
    .navbar-logo {
        height: 40px;
    }
    
    .banner-image img {
        height: 200px;
        border-radius: 10px;
    }
    
    .banner-carousel .owl-nav {
        display: none;
    }
    
    .banner-carousel .owl-dots {
        margin-top: 10px;
    }
    
    .banner-carousel .owl-dot {
        width: 8px;
        height: 8px;
    }
    
    .category-carousel .owl-nav .owl-prev {
        left: 0;
    }
    
    .category-carousel .owl-nav .owl-next {
        right: 0;
    }
    
    .icon-badge {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .category-card p {
        font-size: 11px;
    }
    
    .section-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .brand-card {
        min-height: 150px;
        padding: 20px 10px;
    }
    
    .brand-logo {
        height: 60px;
    }
    
    .brand-logo img {
        max-height: 60px;
    }
    
    .brand-name {
        font-size: 13px;
    }
    
    .banner-slide {
        height: 350px;
    }
    
    .banner-overlay {
        background: rgba(21, 30, 42, 0.75);
    }
    
    .banner-text {
        text-align: center;
        max-width: 100%;
    }
    
    .banner-text h2 {
        font-size: 28px;
    }
    
    .banner-text p {
        font-size: 16px;
    }
    
    .image-banner-carousel .owl-nav button {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .image-banner-carousel .owl-nav .owl-prev {
        left: 15px;
    }
    
    .image-banner-carousel .owl-nav .owl-next {
        right: 15px;
    }
    
    .banner-title {
        font-size: 28px;
    }
    
    .megaphone-icon {
        font-size: 32px;
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-title {
        font-size: 14px;
        min-height: 60px;
    }
    
    .about-content-full {
        padding: 25px;
    }
    
    .content-title {
        font-size: 24px;
    }
    
    .about-feature-box {
        margin-bottom: 20px;
    }
    
    .accordion-button {
        font-size: 15px;
        padding: 15px 20px;
    }
    
    .footer {
        padding: 40px 0 20px;
        margin-top: 50px;
    }
    
    .footer .brand-text {
        font-size: 1.5rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 90px;
        right: 20px;
    }
    
    .call-float {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Mobile View (max-width: 575px) */
@media (max-width: 575.98px) {
    .top-header {
        text-align: center;
    }
    
    .top-header .col-md-6 {
        text-align: center !important;
        margin-bottom: 5px;
    }
    
    .offer-text {
        display: block;
        margin-bottom: 5px;
    }
    
    .category-card {
        padding: 10px 5px;
    }
    
    .icon-badge {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .category-card p {
        font-size: 10px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .brand-card {
        min-height: 130px;
        padding: 15px 8px;
    }
    
    .brand-logo {
        height: 50px;
        margin-bottom: 10px;
    }
    
    .brand-logo img {
        max-height: 50px;
    }
    
    .brand-name {
        font-size: 12px;
    }
    
    .product-showcase-section {
        padding: 25px 0;
    }
    
    .section-heading {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .product-card {
        min-height: 280px;
    }
    
    .small-product {
        min-height: 280px;
    }
    
    .product-image,
    .small-product .product-image {
        height: 160px;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-title {
        font-size: 0.75rem;
        height: 34px;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    
    .price-info {
        gap: 3px;
    }
    
    .mrp {
        font-size: 0.65rem;
    }
    
    .offer-price {
        font-size: 0.75rem;
    }
    
    .offer-price strong {
        font-size: 0.95rem;
    }
    
    .sale-badge {
        padding: 4px 10px;
        font-size: 0.65rem;
        top: 8px;
        left: 8px;
    }
    
    .row.g-3 {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.75rem;
    }
    
    .banner-slide {
        height: 300px;
    }
    
    .banner-text h2 {
        font-size: 24px;
    }
    
    .banner-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .btn-banner {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .image-banner-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .image-banner-carousel .owl-nav .owl-prev {
        left: 10px;
    }
    
    .image-banner-carousel .owl-nav .owl-next {
        right: 10px;
    }
    
    .banner-title {
        font-size: 22px;
    }
    
    .btn-view-all {
        font-size: 14px;
        padding: 10px 25px;
    }
    
    .footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }
    
    .footer .brand-text {
        font-size: 1.3rem;
    }
    
    .footer p,
    .footer ul li a,
    .footer .contact-info li {
        font-size: 0.85rem;
    }
    
    .footer h5 {
        font-size: 0.95rem;
        margin-top: 15px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 85px;
        right: 15px;
    }
    
    .call-float {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        bottom: 15px;
        right: 15px;
    }
}

/* Extra Small Mobile (max-width: 399px) */
@media (max-width: 399.98px) {
    .product-card {
        min-height: 260px;
    }
    
    .small-product {
        min-height: 260px;
    }
    
    .product-image,
    .small-product .product-image {
        height: 140px;
    }
    
    .product-info {
        padding: 8px;
    }
    
    .product-title {
        font-size: 0.7rem;
        height: 32px;
    }
    
    .offer-price strong {
        font-size: 0.9rem;
    }
}
