* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg: #ffffff;
    --muted: #f3f3f3;
    --card: #f7f7f7;
    --text: #1f2933;
    --muted-text: #6b7280;
    --accent: #ff6b35;
    --line: #e7e7e7;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.4;
}


/* HEADER NAVBAR */
/* header{
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    z-index: 20;
  } */
header {
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    /* ✅ changed from absolute to fixed */
    top: 0;
    left: 0;
    background: rgba(17, 15, 15, 0.35);
    /* backdrop-filter: blur(6px);    */
    z-index: 2000;
    /* ✅ keeps it above all content */
    transition: background 0.3s ease;
}

.logo img {
    width: 140px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 45px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.icons i {
    font-size: 18px;
    margin-left: 18px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.icons i:hover {
    transform: scale(1.1);
}

.menu-btn {
    display: none;
    cursor: pointer;
}

.menu-btn i {
    color: white;
    font-size: 26px;
}

.hero {
    width: 100%;
    height: 100vh;
    background: url("../images/banner.png") center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    /* ✅ Fixed gap issue */
}


.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    top: 0;
    left: 0;
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 850px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 700;
}

.hero-content .sub {
    font-size: 24px;
    margin-top: 10px;
}

.hero-content .tag {
    margin-top: 16px;
    font-size: 16px;
    background: rgba(41, 17, 17, 0.6);
    padding: 8px 20px;
    border-radius: 4px;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .hero {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-content .sub {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px 25px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        right: 25px;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px 30px;
        text-align: right;
        border-radius: 8px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content .sub {
        font-size: 18px;
    }

    .hero-content .tag {
        font-size: 13px;
    }
}

@media (max-width: 450px) {
    .logo img {
        width: 120px;
    }
}

/* Add at the end of your CSS: */

.search-bar-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 130px;
    /* adjust height as needed */
    background: #fff;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.15);
    z-index: 200;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.search-bar-container.active {
    display: flex;
}

.search-input {
    width: 70vw;
    max-width: 600px;
    padding: 13px 20px;
    font-size: 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.close-search {
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 20px;
    color: #555;
}

.hide-header {
    display: none !important;
}

/* Overlay Search Bar Responsive Styles */

.search-bar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100px;
    background: #fff;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.10);
    z-index: 201;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
}

.search-bar-overlay.active {
    display: flex;
}

.search-bar-content {
    display: flex;
    align-items: center;
    width: 90vw;
    max-width: 900px;
    margin: 0 auto;
    gap: 22px;
}

.search-logo {
    width: 100px;
    min-width: 54px;
    height: auto;
}

.search-input {
    flex: 1 1 110px;
    padding: 13px 18px;
    min-width: 50px;
    font-size: 17px;
    border-radius: 7px;
    border: 1px solid #ebeaea;
}

.search-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-icons i {
    font-size: 22px;
    color: #2d2d2d;
    cursor: pointer;
}

.close-search {
    font-size: 27px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #333;
    margin-left: 10px;
}

.hide-header {
    display: none !important;
}

/* Tablet Responsiveness */
@media (max-width: 900px) {
    .search-bar-content {
        width: 98vw;
        max-width: 99vw;
        gap: 12px;
        padding: 0 6px;
    }

    .search-input {
        font-size: 15px;
    }
}

/* Desktop nav visible only desktop */
.desktop-nav {
    display: flex;
}

.menu-btn {
    display: none;
}


.mobile-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: #fff;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: 0.4s ease;
    z-index: 4000;
    border-right: 1px solid #ddd;
    /* Clean border */
}

.mobile-menu a {
    color: #000;
    /* BLACK TEXT */
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
}

.mobile-menu a:hover {
    color: #ff4b4b;
    /* hover effect optional */
}

.mobile-menu.active {
    left: 0;
}

.close-mobile {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #000;
    /* close button black */
    font-size: 36px;
    cursor: pointer;
}

/* Hide desktop nav in mobile */
@media(max-width: 768px) {
    .nav-links {
        display: none !important;
    }

    .menu-btn {
        display: block;
    }
}


/* Mobile Responsiveness */
@media (max-width: 600px) {
    .search-bar-overlay {
        height: auto;
        min-height: 94px;
        padding: 14px 0;
    }

    .search-bar-content {
        flex-direction: column;
        width: 97vw;
        gap: 12px;
        align-items: stretch;
        padding: 0 5px;
    }

    .search-logo {
        margin-bottom: 2px;
        width: 65px;
        align-self: flex-start;
    }

    .search-input {
        width: 100%;
        min-width: 90px;
        padding: 11px 9px;
        border-radius: 6px;
    }

    .search-icons {
        width: 100%;
        justify-content: flex-end;
        gap: 16px;
    }
}

.search-bar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100px;
    background: #fff;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.10);
    z-index: 201;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
}

.search-bar-overlay.active {
    display: flex;
}

.search-bar-content {
    display: flex;
    align-items: center;
    width: 90vw;
    max-width: 900px;
    margin: 0 auto;
    gap: 22px;
}

.search-logo {
    width: 100px;
    min-width: 54px;
    height: auto;
}

.search-input {
    flex-grow: 1;
    padding: 13px 18px;
    min-width: 50px;
    font-size: 17px;
    border-radius: 7px;
    border: 1px solid #ebeaea;
}

.search-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-icons i {
    font-size: 22px;
    color: #2d2d2d;
    cursor: pointer;
}

.close-search {
    font-size: 27px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #333;
    margin-left: 10px;
}

.hide-header {
    display: none !important;
}

.login-btn {
    padding: 8px 22px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease;
}

.login-btn:hover {
    background: #ffffff71;
    color: #000;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .login-btn {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .search-bar-overlay {
        height: auto;
        min-height: 94px;
        padding: 14px 0;
    }

    .search-bar-content {
        flex-direction: column;
        width: 97vw;
        gap: 12px;
        align-items: stretch;
        padding: 0 5px;
    }

    .search-logo {
        margin-bottom: 2px;
        width: 65px;
        align-self: flex-start;
        display: none;
        /* Logo is hidden */
    }

    .search-input {
        width: 100%;
        min-width: 90px;
        padding: 11px 9px;
        border-radius: 6px;
    }

    .search-icons i.fa-regular.fa-heart {
        display: none;
    }

    .search-icons {
        width: 100%;
        justify-content: flex-end;
        gap: 16px;
    }
}

.section {
    width: 100vw;
    /* full viewport width */
    padding: 50px 15px;
    /* reduce side padding for full screen */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
    margin: 0;
    /* remove auto margin that centers container */
    box-sizing: border-box;
}


.card img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.4s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card h2 {
    margin-top: 18px;
    font-size: 1.4rem;
    font-weight: 600;
}

.card p {
    margin: 10px 0 15px;
    color: #444;
    font-size: 0.9rem;
}

.card a {
    display: inline-block;
    padding: 8px 22px;
    border: 1px solid #000;
    text-decoration: none;
    color: #000;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: 0.3s;
    margin-bottom: 18px;
}

.card a:hover {
    background: #000;
    color: #fff;
}

/* Middle card image margin */
.middle-card img {
    margin-top: 25px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section {
        padding: 30px 20px;
    }

    .card img {
        height: 300px;
    }

    .card h2 {
        font-size: 1.2rem;
    }

    .card p {
        font-size: 0.85rem;
    }

    .card a {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 20px 15px;
    }

    .card img {
        height: 220px;
    }

    .card h2 {
        font-size: 1rem;
    }

    .card p {
        font-size: 0.8rem;
    }

    .card a {
        font-size: 0.7rem;
        padding: 5px 14px;
    }
}

.container {
    max-width: 100vw;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 20px;
    margin-top: 120px;
}

/* Sidebar */
.sidebar {
    background: var(--card);
    padding: 40px 32px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}



.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    background: linear-gradient(180deg, #fff, #f2f2f2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile h3 {
    font-size: 18px;
}

.profile p {
    color: var(--muted-text);
    font-size: 14px;
}

.side-nav {
    margin-top: 12px;
    font-weight: 500;
    font-size: 20px;
}

.side-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 20px;
    border-radius: 6px;
    color: var(--text);
    text-decoration: none;
    margin-bottom: 10px;
    transition: background 0.3s;
}

.side-nav a:hover {
    background: #fff;
}

.side-nav a.active {
    background: var(--bg);
    border-left: 3px solid var(--text);
}

.side-nav a.active:hover {
    background: var(--bg);
}

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.scroll-top:hover {
    background: #e85c00;
}

/* ---------- RESPONSIVENESS ---------- */
/* ==============================

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        align-items: stretch;
        margin-top: 120px;
    }

    .sidebar {
        /* flex-direction: row; */
        align-items: center;
        justify-content: space-between;

    }

    .profile {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 0;
    }

    .profile h3 {
        font-size: 16px;
    }

    .side-nav {
        display: flex;
        /* gap: 10px; */
        font-size: 14px;
        margin-top: 0;
    }

    .side-nav a {
        padding: 10px 14px;
        margin-bottom: 0;
    }

    .addresses {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile (600px and below) */
@media (max-width: 600px) {
    .container {
        margin: 20px auto;
        padding: 0 15px;
        margin-top: 90px;
    }

    .sidebar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile {
        flex-direction: column;
        gap: 8px;
    }

    .side-nav {
        flex-direction: column;
        width: 100%;
        font-size: 16px;
        gap: 6px;
    }

    .side-nav a {
        justify-content: center;
        width: 100%;
    }

    .addresses {
        grid-template-columns: 1fr;
    }

    .address h3 {
        font-size: 20px;
    }

    .address p {
        font-size: 14px;
    }

    .avatar {
        width: 100px;
        height: 100px;
    }
}

/* Small mobile (400px and below) */
@media (max-width: 400px) {
    .profile h3 {
        font-size: 15px;
    }

    .side-nav a {
        font-size: 14px;

    }

    .address p {
        line-height: 24px;
    }
}

/* footer */
.main-footer {
    background: #f7f7f7;
    padding: 50px 70px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col-logo .logo {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-col-logo p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter {
    display: flex;
    margin-bottom: 25px;
}

.newsletter input[type="email"] {
    padding: 10px 15px;
    border: 1px solid #ddd;
    flex-grow: 1;
    font-size: 14px;
    outline: none;
}

.newsletter button {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

.social-icons .icon {
    font-size: 16px;
    color: #666;
    margin-right: 15px;
    cursor: pointer;
    transition: color 0.2s;
}

.social-icons .icon:hover {
    color: #000;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #000;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.footer-bottom .copyright {
    font-size: 13px;
    color: #666;
}

.footer-bottom .payment-methods img {
    height: 20px;
    margin-left: 10px;
}

@media (max-width: 768px) {

    /* Footer Adjustments */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        /* Two columns wide on tablets */
        gap: 40px 20px;
    }

    .footer-col-logo {
        grid-column: span 2;
        /* Logo column spans both columns */
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom .payment-methods {
        order: -1;
        /* Move payment logos to the top of the bottom section */
    }

    /* Previous Section Adjustments */
    .bag-collection {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 25px;
    }

    .bag-content p {
        margin: 0 auto 25px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-banner-section {
        flex-direction: column;
        height: auto;
        padding: 0 20px;
        gap: 20px;
    }

    .split-banner-item {
        min-height: 400px;
        width: 100%;
    }

    .banner-overlay-text {
        bottom: 20px;
        left: 20px;
    }

    .banner-overlay-text h1 {
        font-size: 26px;
    }
}

@media (max-width: 600px) {

    /* General Adjustments */
    header {
        padding: 10px 15px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    nav {
        order: 3;
        width: 100%;
    }

    nav ul {
        justify-content: center;
        padding-top: 5px;
        gap: 10px;
    }

    .right-section {
        order: 2;
    }

    .main-footer {
        padding: 30px 15px 15px;
    }

    /* Footer Adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        /* Stack all columns on phones */
    }

    .footer-col-logo {
        grid-column: span 1;
    }

    .footer-col {
        margin-bottom: 20px;
    }

    /* Previous Section Adjustments */
    .hero-text-2 {
        left: 50%;
        transform: translateX(-50%);
        bottom: 5%;
        text-align: center;
    }

    .hero-text-2 p {
        max-width: 90%;
    }

    .hero-slider .slide {
        padding: 0 20px;
        background-position: center;
        justify-content: center;
        text-align: center;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .products-section {
        padding: 30px 15px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-tabs {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 14px;
    }
}

/* footer */
/* ------------------------------------- */
/* FOOTER CSS STYLING */
/* ------------------------------------- */
.main-footer {
    background-color: #f7f7f7; 
    color: #333;
    padding-top: 50px;
    font-family: sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr); 
    gap: 30px;
    border-bottom: 1px solid #ddd;
}

/* Footer Column Titles */
.col-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Contact Info Column */
.footer-bagging-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #333; 
}

.call-us-free {
    font-size: 12px;
    font-weight: bold;
    color: #777;
    margin-top: 20px;
}

.phone-number {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.address-details {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
}

/* Links Columns */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #555;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #000;
}

/* Newsletter Column */
.newsletter-text {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-form input[type="email"] {
    padding: 10px 15px;
    border: 1px solid #ddd;
    flex-grow: 1;
    font-size: 14px;
}

.newsletter-form .submit-btn {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon-box {
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s, border-color 0.2s; /* Transition for border-color too */
    /* --- CIRCULAR ICONS ADDED HERE --- */
    border-radius: 50%; /* इसे पूरी तरह से गोलाकार बनाता है */
    /* ---------------------------------- */
}

.social-icon-box:hover {
    background-color: #eee;
    border-color: #bbb; /* Hover पर बॉर्डर कलर बदल सकते हैं */
}

/* Copyright Bar */
.copyright-bar {
    background-color: #fff; 
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.copyright-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #777;
}

.payment-icons i {
    font-size: 20px;
    margin-left: 10px;
    color: #777;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-col:nth-child(5) {
        grid-column: span 2; 
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-links ul {
        text-align: center;
    }
    
    .footer-col:nth-child(5) {
        grid-column: span 1; 
    }
    
    .newsletter-form {
        flex-direction: row;
        max-width: 90%;
        margin: 0 auto 20px auto;
    }

    .social-icons {
        justify-content: center;
        margin-bottom: 20px;
    }

    .copyright-content {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright-content p {
        margin-bottom: 10px;
    }
}


    /* Previous Section Adjustments */
    .bag-collection {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 25px;
    }

    .bag-content p {
        margin: 0 auto 25px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-banner-section {
        flex-direction: column;
        height: auto;
        padding: 0 20px;
        gap: 20px;
    }

    .split-banner-item {
        min-height: 400px;
        width: 100%;
    }

    .banner-overlay-text {
        bottom: 20px;
        left: 20px;
    }

    .banner-overlay-text h1 {
        font-size: 26px;
    }
}

@media (max-width: 600px) {

    /* General Adjustments */
    header {
        padding: 10px 15px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    nav {
        order: 3;
        width: 100%;
    }

    nav ul {
        justify-content: center;
        padding-top: 5px;
        gap: 10px;
    }

    .right-section {
        order: 2;
    }

    .main-footer {
        padding: 30px 15px 15px;
    }

    /* Footer Adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        /* Stack all columns on phones */
    }

    .footer-col-logo {
        grid-column: span 1;
    }

    .footer-col {
        margin-bottom: 20px;
    }

    /* Previous Section Adjustments */
    .hero-text-2 {
        left: 50%;
        transform: translateX(-50%);
        bottom: 5%;
        text-align: center;
    }

    .hero-text-2 p {
        max-width: 90%;
    }

    .hero-slider .slide {
        padding: 0 20px;
        background-position: center;
        justify-content: center;
        text-align: center;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .products-section {
        padding: 30px 15px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-tabs {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 14px;
    }
}


