body {
    background-color: hsl(0, 0%, 98%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: hsl(0, 0%, 30%);
}

.box-element {
    box-shadow: hsl(0, 0%, 80%) 0 0 16px;
    background-color: #fff;
    border-radius: 4px;
    padding: 10px;
}

.thumbnail {
    width: 100%;
    height: 200px;
    -webkit-box-shadow: -1px -3px 5px -2px rgba(214, 214, 214, 1);
    -moz-box-shadow: -1px -3px 5px -2px rgba(214, 214, 214, 1);
    box-shadow: -1px -3px 5px -2px rgba(214, 214, 214, 1);
}

.product {
    border-radius: 0 0 4px 4px;
}

#cart-icon {
    width: 25px;
    display: inline-block;
    margin-left: 15px;
}

#cart-icon:hover {
    transform: scale(1.2);
    transition: .5s;
}

#cart-total {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-color: rgb(255, 0, 238);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 14px;
}

.col-lg-4,
.col-lg-6,
.col-lg-8,
.col-lg-12 {
    margin-top: 10px;
}

.btn {
    border-radius: 0;
}

.row-image {
    width: 100px;
}

.form-field {
    width: 250px;
    display: inline-block;
    padding: 5px;
}

.cart-row {
    display: flex;
    align-items: flex-stretch;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ececec;

}

.quantity {
    display: inline-block;
    font-weight: 700;
    padding-right: 10px;


}

.chg-quantity {
    width: 12px;
    cursor: pointer;
    display: block;
    margin-top: 5px;
    transition: .1s;
}

.chg-quantity:hover {
    opacity: .6;
}


.hidden {
    display: none !important;
}

/* My additions */
.buy-actions {
    display: flex;
    align-items: center;
}

:root {
    --brand-teal: #0d9e8a;
    --brand-teal-dark: #0a7d6e;
    --brand-teal-glow: rgba(13, 158, 138, .12);
    --nav-bg: #ffffff;
    --nav-border: #e2eeec;
    --text-primary: #0f2e2a;
    --text-muted: #4a7a74;
    --dropdown-bg: #ffffff;
    --badge-bg: #e73cb9;
    --topbar-bg: #0b1f1e;
    --topbar-text: #8ab5b0;
    --topbar-border: rgba(13, 158, 138, .2);
    --drawer-bg: #0d2422;
    --drawer-border: rgba(13, 158, 138, .15);
    --drawer-text: #c8dedd;
    --drawer-muted: #6a9e98;
    --drawer-width: 290px;
}

/* ─── TOP CONTACT BAR (desktop only) ─── */
.topbar {
    background: var(--topbar-bg);
    border-bottom: 1px solid var(--topbar-border);
    padding: 6px 0;
    font-family: 'Outfit', sans-serif;
    font-size: .78rem;
    color: var(--topbar-text);
}

.topbar a {
    color: var(--topbar-text);
    text-decoration: none;
    transition: color .2s;
}

.topbar a:hover {
    color: var(--brand-teal);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.topbar-contact {
    display: flex;
    gap: 1.5rem;
}

.topbar-contact span {
    display: flex;
    align-items: center;
    gap: .4rem;
}

.topbar-social {
    display: flex;
    gap: .8rem;
}

.topbar-social a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--topbar-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .68rem;
    transition: background .2s, border-color .2s, color .2s;
}

.topbar-social a:hover {
    background: rgba(13, 158, 138, .15);
    border-color: var(--brand-teal);
    color: var(--brand-teal);
}

@media (max-width: 991px) {
    .topbar {
        display: none;
    }
}

/* ─── MAIN NAVBAR ─── */
.main-navbar {
    background: var(--nav-bg);
    border-bottom: 1px solid var(--nav-border);
    font-family: 'Outfit', sans-serif;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 16px rgba(13, 158, 138, .08);
}

.navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 68px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-logo-name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -.01em;
    white-space: nowrap;
}

.nav-logo-name span {
    color: var(--brand-teal);
}

/* Desktop search */
.nav-search {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.nav-search form {
    display: flex;
    align-items: center;
    background: #f4faf9;
    border: 1.5px solid var(--nav-border);
    border-radius: 50px;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
}

.nav-search form:focus-within {
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 3px var(--brand-teal-glow);
}

.nav-search input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: .87rem;
    padding: .52rem 1.1rem;
    flex: 1;
    min-width: 0;
}

.nav-search input::placeholder {
    color: var(--text-muted);
    opacity: .7;
}

.nav-search button {
    background: var(--brand-teal);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    margin-right: 3px;
    cursor: pointer;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .85rem;
}

.nav-search button:hover {
    background: var(--brand-teal-dark);
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--dropdown-bg);
    border: 1px solid var(--nav-border);
    border-radius: 12px;
    display: none;
    z-index: 200;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(13, 158, 138, .1);
}

/* Desktop nav links */
.nav-links-desktop {
    display: flex;
    align-items: center;
    gap: .15rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links-desktop .nav-link {
    color: var(--text-muted) !important;
    font-size: .87rem;
    font-weight: 500;
    padding: .45rem .72rem !important;
    border-radius: 6px;
    transition: color .2s, background .2s;
    white-space: nowrap;
}

.nav-links-desktop .nav-link:hover {
    color: var(--brand-teal) !important;
    background: var(--brand-teal-glow);
}

.nav-links-desktop .dropdown-menu {
    background: var(--dropdown-bg);
    border: 1px solid var(--nav-border);
    border-radius: 10px;
    padding: .5rem;
    min-width: 180px;
    box-shadow: 0 12px 32px rgba(13, 158, 138, .1), 0 2px 8px rgba(0, 0, 0, .07);
    margin-top: 6px !important;
}

.nav-links-desktop .dropdown-item {
    color: var(--text-muted);
    font-size: .86rem;
    font-family: 'Outfit', sans-serif;
    border-radius: 6px;
    padding: .48rem .85rem;
    transition: background .2s, color .2s;
}

.nav-links-desktop .dropdown-item:hover {
    background: var(--brand-teal-glow);
    color: var(--brand-teal);
}

/* Right actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: .55rem;
    flex-shrink: 0;
    margin-left: auto;
}

.btn-nav-ghost {
    background: transparent;
    border: 1.5px solid var(--nav-border);
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: .82rem;
    font-weight: 500;
    padding: .38rem .9rem;
    border-radius: 7px;
    text-decoration: none;
    transition: border-color .2s, color .2s, background .2s;
    white-space: nowrap;
}

.btn-nav-ghost:hover {
    border-color: var(--brand-teal);
    color: var(--brand-teal);
    background: var(--brand-teal-glow);
}

.btn-nav-solid {
    background: var(--brand-teal);
    border: 1.5px solid var(--brand-teal);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    padding: .38rem .9rem;
    border-radius: 7px;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
}

.btn-nav-solid:hover {
    background: var(--brand-teal-dark);
    color: #fff;
}

/* User avatar */
.user-avatar-btn {
    position: relative;
    cursor: pointer;
}

.user-initials {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-teal);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: border-color .2s;
    user-select: none;
}

.user-avatar-btn:hover .user-initials {
    border-color: var(--brand-teal-dark);
}

.user-dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--dropdown-bg);
    border: 1px solid var(--nav-border);
    border-radius: 12px;
    min-width: 200px;
    padding: .75rem;
    display: none;
    box-shadow: 0 12px 32px rgba(13, 158, 138, .12);
    z-index: 300;
}

.user-dropdown-panel.open {
    display: block;
}

.user-dropdown-greeting {
    padding: .4rem .5rem .75rem;
    border-bottom: 1px solid var(--nav-border);
    margin-bottom: .5rem;
    font-size: .82rem;
    color: var(--text-muted);
}

.user-dropdown-greeting strong {
    color: var(--text-primary);
    display: block;
    font-size: .9rem;
    margin-top: .15rem;
}

.user-dropdown-link {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .45rem .6rem;
    border-radius: 7px;
    color: var(--text-muted);
    font-size: .84rem;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.user-dropdown-link:hover {
    background: var(--brand-teal-glow);
    color: var(--brand-teal);
}

.btn-logout {
    width: 100%;
    margin-top: .5rem;
    background: rgba(231, 76, 60, .1);
    border: 1px solid rgba(231, 76, 60, .25);
    color: #e74c3c;
    font-family: 'Outfit', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    padding: .4rem;
    border-radius: 7px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: background .2s;
}

.btn-logout:hover {
    background: rgba(231, 76, 60, .2);
    color: #e74c3c;
}

/* Cart */
.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1.5px solid var(--nav-border);
    background: transparent;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: border-color .2s, color .2s, background .2s;
}

.cart-btn:hover {
    border-color: var(--brand-teal);
    color: var(--brand-teal);
    background: var(--brand-teal-glow);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--badge-bg);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: .63rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

/* Hamburger (mobile only) */
.nav-hamburger {
    display: none;
    background: transparent;
    border: 1.5px solid var(--nav-border);
    border-radius: 7px;
    padding: .35rem .55rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: border-color .2s, color .2s;
    flex-shrink: 0;
}

.nav-hamburger:hover {
    border-color: var(--brand-teal);
    color: var(--brand-teal);
}

/* ═══════════════════════════
     MOBILE SLIDE-IN DRAWER
  ═══════════════════════════ */
.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 2000;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity .3s;
}

.drawer-overlay.open {
    display: block;
    opacity: 1;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--drawer-width);
    background: var(--drawer-bg);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
}

.mobile-drawer.open {
    transform: translateX(0);
}

/* Drawer header */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid var(--drawer-border);
    flex-shrink: 0;
}

.drawer-logo {
    display: flex;
    align-items: center;
    gap: .55rem;
    text-decoration: none;
}

.drawer-logo img {
    height: 30px;
    width: auto;
}

.drawer-logo-name {
    font-family: 'Outfit', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
}

.drawer-logo-name span {
    color: var(--brand-teal);
}

.drawer-close {
    background: transparent;
    border: none;
    color: var(--drawer-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: .3rem .4rem;
    border-radius: 6px;
    transition: color .2s, background .2s;
}

.drawer-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

/* Drawer search */
.drawer-search {
    padding: .85rem 1.1rem;
    border-bottom: 1px solid var(--drawer-border);
    flex-shrink: 0;
}

.drawer-search form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--drawer-border);
    border-radius: 50px;
    overflow: hidden;
    transition: border-color .2s;
}

.drawer-search form:focus-within {
    border-color: var(--brand-teal);
}

.drawer-search input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: .85rem;
    padding: .48rem 1rem;
    flex: 1;
    min-width: 0;
}

.drawer-search input::placeholder {
    color: var(--drawer-muted);
}

.drawer-search button {
    background: var(--brand-teal);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    margin-right: 3px;
    cursor: pointer;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .78rem;
}

.drawer-search button:hover {
    background: var(--brand-teal-dark);
}

/* Drawer links */
.drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: .5rem 0;
}

.drawer-nav::-webkit-scrollbar {
    width: 3px;
}

.drawer-nav::-webkit-scrollbar-thumb {
    background: var(--drawer-border);
    border-radius: 2px;
}

.drawer-nav-item {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .78rem 1.2rem;
    color: var(--drawer-text);
    font-family: 'Outfit', sans-serif;
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background .2s, color .2s;
    border-left: 3px solid transparent;
    cursor: pointer;
    user-select: none;
}

.drawer-nav-item:hover {
    background: rgba(13, 158, 138, .1);
    color: #fff;
    border-left-color: var(--brand-teal);
}

.drawer-nav-item.active {
    background: var(--brand-teal);
    color: #fff;
    border-left-color: rgba(255, 255, 255, .5);
    font-weight: 600;
}

.drawer-nav-item i.icon {
    width: 20px;
    text-align: center;
    font-size: .92rem;
    flex-shrink: 0;
}

.drawer-chevron {
    margin-left: auto;
    font-size: .68rem;
    transition: transform .25s;
}

.drawer-nav-item.expanded .drawer-chevron {
    transform: rotate(90deg);
}

.drawer-submenu {
    display: none;
    background: rgba(0, 0, 0, .18);
}

.drawer-submenu.open {
    display: block;
}

.drawer-submenu a {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .62rem 1.2rem .62rem 3.3rem;
    color: var(--drawer-muted);
    font-family: 'Outfit', sans-serif;
    font-size: .84rem;
    text-decoration: none;
    transition: color .2s, background .2s;
}

.drawer-submenu a:hover {
    color: var(--brand-teal);
    background: rgba(13, 158, 138, .07);
}

.drawer-divider {
    height: 1px;
    background: var(--drawer-border);
    margin: .4rem 1.1rem;
}

/* Drawer auth */
.drawer-auth {
    padding: .9rem 1.1rem;
    border-top: 1px solid var(--drawer-border);
    display: flex;
    flex-direction: column;
    gap: .5rem;
    flex-shrink: 0;
}

.drawer-auth-greeting {
    font-family: 'Outfit', sans-serif;
    font-size: .79rem;
    color: var(--drawer-muted);
    padding-bottom: .55rem;
    border-bottom: 1px solid var(--drawer-border);
    margin-bottom: .1rem;
}

.drawer-auth-greeting strong {
    color: #fff;
    display: block;
    font-size: .88rem;
    margin-top: .1rem;
}

.btn-drawer-ghost {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .55rem;
    border-radius: 8px;
    border: 1px solid var(--drawer-border);
    background: transparent;
    color: var(--drawer-text);
    font-family: 'Outfit', sans-serif;
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color .2s, color .2s, background .2s;
}

.btn-drawer-ghost:hover {
    border-color: var(--brand-teal);
    color: var(--brand-teal);
}

.btn-drawer-solid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .55rem;
    border-radius: 8px;
    background: var(--brand-teal);
    border: 1px solid var(--brand-teal);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}

.btn-drawer-solid:hover {
    background: var(--brand-teal-dark);
    color: #fff;
}

.btn-drawer-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .55rem;
    border-radius: 8px;
    background: rgba(231, 76, 60, .1);
    border: 1px solid rgba(231, 76, 60, .25);
    color: #e74c3c;
    font-family: 'Outfit', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}

.btn-drawer-logout:hover {
    background: rgba(231, 76, 60, .2);
    color: #e74c3c;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
    .nav-hamburger {
        display: flex;
        align-items: center;
    }

    .nav-links-desktop {
        display: none;
    }

    .nav-search {
        display: none;
    }

    /* On mobile: hamburger | logo | cart (no login/register visible — they're in drawer) */
    .btn-nav-ghost,
    .btn-nav-solid {
        display: none;
    }

    .navbar-inner {
        gap: .6rem;
        height: 60px;
    }
}

@media (min-width: 992px) {

    .mobile-drawer,
    .drawer-overlay {
        display: none !important;
    }

    .nav-hamburger {
        display: none !important;
    }
}

div .thumbnail {
    aspect-ratio: 16/9;
}

.user-initials[data-initials^="A"],
.user-initials[data-initials^="B"],
.user-initials[data-initials^="C"] {
    background-color: #e74c3c;
}

.user-initials[data-initials^="D"],
.user-initials[data-initials^="E"],
.user-initials[data-initials^="F"] {
    background-color: #3498db;
}

.user-initials[data-initials^="G"],
.user-initials[data-initials^="H"],
.user-initials[data-initials^="I"] {
    background-color: #2ecc71;
}

.user-initials[data-initials^="J"],
.user-initials[data-initials^="K"],
.user-initials[data-initials^="L"] {
    background-color: #9b59b6;
}

.user-initials[data-initials^="M"],
.user-initials[data-initials^="N"],
.user-initials[data-initials^="O"] {
    background-color: #f39c12;
}

.user-initials[data-initials^="P"],
.user-initials[data-initials^="Q"],
.user-initials[data-initials^="R"] {
    background-color: #1abc9c;
}

.user-initials[data-initials^="S"],
.user-initials[data-initials^="T"],
.user-initials[data-initials^="U"] {
    background-color: #e67e22;
}

.user-initials[data-initials^="V"],
.user-initials[data-initials^="W"],
.user-initials[data-initials^="X"],
.user-initials[data-initials^="Y"],
.user-initials[data-initials^="Z"] {
    background-color: #34495e;
}

/* User Profile Dropdown Styles */
.user-initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #007bff;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.user-initials:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.user-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu-custom {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    background-color: white;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 1000;
    padding: 15px;
}

.dropdown-menu-custom.show {
    display: block;
}

.dropdown-greeting {
    color: #333;
    font-size: 14px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.dropdown-greeting strong {
    display: block;
    font-size: 16px;
    margin-top: 5px;
}

.btn-logout {
    width: 100%;
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-logout:hover {
    background-color: #c82333;
    text-decoration: none;
    color: white;
}

.dropdown-link {
    display: block;
    padding: 10px 0;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 10px;
}

.dropdown-link:hover {
    color: #007bff;
    text-decoration: none;
}

.dropdown-link i {
    margin-right: 8px;
}

/* Mobile Responsive Fixes */
@media (max-width: 991px) {

    /* When navbar collapses on mobile */
    .dropdown-menu-custom {
        position: fixed;
        right: 10px;
        top: 60px;
        /* Adjust based on your navbar height */
        left: auto;
        width: calc(100% - 20px);
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .dropdown-menu-custom {
        right: 10px;
        top: 60px;
        width: calc(100vw - 20px);
        max-width: none;
    }

    .user-initials {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Prevent dropdown from going off-screen on very small devices */
@media (max-width: 360px) {
    .dropdown-menu-custom {
        right: 5px;
        left: 5px;
        width: calc(100vw - 10px);
    }
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

.footer-description {
    color: #b3b3b3;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #b3b3b3;
    font-size: 14px;
}

.footer-contact-item i {
    color: #007bff;
    font-size: 16px;
    margin-top: 2px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #007bff;
    transform: translateY(-3px);
    color: #ffffff;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #333;
    border-radius: 8px;
    background-color: #2a2a2a;
    color: #ffffff;
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: #666;
}

.newsletter-input:focus {
    outline: none;
    border-color: #007bff;
}

.newsletter-btn {
    padding: 12px 25px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #0056b3;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.copyright {
    color: #666;
    font-size: 14px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-icon {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }
}

/* Styling for Sellers Begins */


.location-body {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)),
        url("../images/locationBG.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.btn-direction {
    background-color: #079168;
    border-radius: 8px;
    color: white;
}

.btn-direction:hover {
    background-color: white;
    border-radius: 8px;
    color: #079168;
    transform: scale(1.05);
}

/* Styling for Sellers Ends */



/* Styling for Vaccination BEGINS */

.vaccination-card {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)),
        url("../images/vaccination.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 28px;
    text-align: center;
    margin-top: 30px;
}

.vaccination-card h1 {
    max-width: 60%;
    color: white;
}

.vaccination-card p {
    max-width: 60%;
    color: rgb(215, 215, 215);
}

.vaccination-card a {
    border-radius: 14px;
}

.vacc-explainer-text {
    display: flex;
    flex-direction: row;
    gap: 1.4rem;
}

.step span {
    background: #079168;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    font-size: larger;
}

.step {
    /* border: 2px solid rgb(208, 208, 208); */
    border-radius: 16px;
    padding: 8px 12px;
}

@media (max-width: 768px) {

    .vaccination-card h1,
    .vaccination-card p {
        max-width: 85%;
    }

    .vaccination-explained,
    .vacc-explainer-text {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
}

/* Styling for Vaccination ENDS */


/* Styling for Vaccination BEGINS */

.health-card {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)),
        url("../images/health.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 28px;
    text-align: center;
    margin-top: 30px;
}

.health-card h1 {
    max-width: 60%;
    color: white;
}

.health-card p {
    max-width: 60%;
    color: rgb(215, 215, 215);
}

.health-card a {
    border-radius: 14px;
}

.health-explainer-text {
    display: flex;
    flex-direction: row;
    gap: 1.4rem;
}


@media (max-width: 768px) {

    .health-card h1,
    .health-card p {
        max-width: 85%;
    }

    .health-explained,
    .health-explainer-text {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
}

/* Styling for health ENDS */

/* Floating whatsapp button styles */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: all 0.3s ease;
    max-width: 260px;
}

.whatsapp-float i {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.whatsapp-float .whatsapp-label {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Floating whatsapp button styles */