/* ========================================
   SWAWLAMBAN - AYURVEDIC E-COMMERCE STYLES
   Premium Desi Theme with Organic Feel
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ========== CSS VARIABLES ========== */
:root {
    /* Primary Palette - Ayurvedic Theme */
    --gau-brown: #7A4A2E;
    --gau-brown-dark: #5D3820;
    --cow-hide-light: #C49A6C;
    --cow-hide-lighter: #D4B896;

    /* Secondary Palette - Nature */
    --neem-green: #4F6F52;
    --neem-green-light: #6B8E5A;
    --haldi-yellow: #E6B325;
    --haldi-yellow-light: #F5D76E;

    /* Neutral Colors */
    --desi-milk-white: #FAF7F2;
    --milk-white-pure: #FFFEFB;
    --ash-grey: #5A5A5A;
    --ash-grey-light: #8A8A8A;
    --ash-grey-dark: #3A3A3A;

    /* Status Colors */
    --natural-red: #9B3D3D;
    --soft-green: #6B8E5A;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(122, 74, 46, 0.05);
    --shadow-sm: 0 2px 4px rgba(122, 74, 46, 0.08);
    --shadow-md: 0 4px 12px rgba(122, 74, 46, 0.1);
    --shadow-lg: 0 8px 24px rgba(122, 74, 46, 0.12);
    --shadow-xl: 0 12px 40px rgba(122, 74, 46, 0.15);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px; /* Account for 94px header + breathing room */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--desi-milk-white);
    color: var(--ash-grey);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--desi-milk-white);
}

::-webkit-scrollbar-thumb {
    background: var(--cow-hide-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gau-brown);
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--gau-brown);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.875rem;
}

p {
    margin-bottom: 1rem;
    color: black;
}

a {
    color: var(--gau-brown);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--cow-hide-light);
}

/* ========== UTILITY CLASSES ========== */
.text-primary {
    color: var(--gau-brown) !important;
}

.text-secondary {
    color: var(--cow-hide-light) !important;
}

.text-success {
    color: var(--neem-green) !important;
}

.text-warning {
    color: var(--haldi-yellow) !important;
}

.text-danger {
    color: var(--natural-red) !important;
}

.text-muted {
    color: var(--ash-grey-light) !important;
}

.bg-primary {
    background-color: var(--gau-brown) !important;
}

.bg-secondary {
    background-color: var(--cow-hide-light) !important;
}

.bg-light {
    background-color: var(--desi-milk-white) !important;
}

.bg-milk {
    background-color: var(--milk-white-pure) !important;
}

.bg-success {
    background-color: var(--neem-green) !important;
}

/* ========== HEADER / NAVBAR ========== */
.announcement-bar {
    background: linear-gradient(90deg, var(--gau-brown) 0%, var(--gau-brown-dark) 100%);
    color: var(--desi-milk-white);
    padding: 8px 0;
    font-size: 0.875rem;
    text-align: center;
}

.announcement-bar i {
    color: var(--haldi-yellow);
    margin-right: 8px;
}

.navbar-main {
    background-color: var(--milk-white-pure);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar-main.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand .logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gau-brown) 0%, var(--cow-hide-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.navbar-brand .brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gau-brown);
}

.navbar-brand .brand-tagline {
    font-size: 0.7rem;
    color: var(--ash-grey-light);
    display: block;
    margin-top: -5px;
}

@media (max-width: 575px) {
    .navbar-main { padding: 10px 0; }
    .navbar-brand { margin: 0; }
}

/* Search Bar */
.search-box {
    position: relative;
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
}

@media (max-width: 991px) {
    .search-box { margin: 0 15px; }
}

@media (max-width: 768px) {
    .search-box {
        margin: 10px 0 0 0;
        max-width: 100%;
        order: 10; /* Push search to second row on mobile */
        flex: 0 0 100%;
    }
    .navbar-main .custom-container > div {
        justify-content: space-between;
    }
}

.search-box input {
    width: 100%;
    padding: 12px 20px 12px 50px;
    border: 2px solid var(--cow-hide-lighter);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    background: var(--desi-milk-white);
}

.search-box input:focus {
    outline: none;
    border-color: var(--gau-brown);
    box-shadow: 0 0 0 4px rgba(122, 74, 46, 0.1);
}

.search-box .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ash-grey-light);
}

.search-box .search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gau-brown);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.search-box .search-btn:hover {
    background: var(--gau-brown-dark);
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 16px;
    color: var(--ash-grey);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link-item:hover {
    background: var(--desi-milk-white);
    color: var(--gau-brown);
}

.nav-link-item i {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.nav-link-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

.nav-link-item .badge {
    position: absolute;
    top: 2px;
    right: 8px;
    background: var(--haldi-yellow);
    color: var(--gau-brown);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    min-width: 18px;
    text-align: center;
}

/* Category Nav */
.category-nav {
    background: var(--desi-milk-white);
    border-bottom: 1px solid var(--cow-hide-lighter);
    padding: 10px 0;
}

.category-list {
    display: flex;
    gap: 30px;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
}

.category-list li a {
    color: var(--ash-grey);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 4px;
    display: inline-block;
    position: relative;
    transition: all var(--transition-fast);
}

.category-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gau-brown);
    transition: width var(--transition-normal);
}

.category-list li a:hover {
    color: var(--gau-brown);
}

.category-list li a:hover::after {
    width: 100%;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gau-brown) 0%, var(--gau-brown-dark) 100%);
    color: var(--desi-milk-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--cow-hide-light) 0%, var(--gau-brown) 100%);
    color: white;
}

.btn-secondary {
    background: var(--cow-hide-light);
    color: var(--gau-brown-dark);
}

.btn-secondary:hover {
    background: var(--cow-hide-lighter);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gau-brown);
    color: var(--gau-brown);
}

.btn-outline:hover {
    background: var(--gau-brown);
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, var(--neem-green) 0%, var(--neem-green-light) 100%);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-md);
}

/* ========== CARDS ========== */
.card {
    background: var(--milk-white-pure);
    border: 1px solid rgba(196, 154, 108, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-body {
    padding: 20px;
}

/* Product Card */
.product-card {
    position: relative;
    background: var(--milk-white-pure);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid rgba(196, 154, 108, 0.15);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.product-card .product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--desi-milk-white);
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-card .product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-card .product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 1;
    transform: translateX(0);
    transition: all var(--transition-normal);
}

.product-card .action-btn {
    width: 40px;
    height: 40px;
    background: var(--milk-white-pure);
    border: none;
    border-radius: var(--radius-md);
    color: var(--ash-grey);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.product-card .action-btn:hover {
    background: var(--gau-brown);
    color: white;
}

.product-card .action-btn.active {
    background: var(--natural-red);
    color: white;
}

.product-card .product-info {
    padding: 16px 20px 20px;
}

.product-card .product-category {
    font-size: 0.75rem;
    color: var(--ash-grey-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-card .product-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ash-grey-dark);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .product-name a {
    color: inherit;
}

.product-card .product-name a:hover {
    color: var(--gau-brown);
}

.product-card .product-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.product-card .price-current {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gau-brown);
}

.product-card .price-original {
    font-size: 0.9rem;
    color: var(--ash-grey-light);
    text-decoration: line-through;
}

.product-card .price-discount {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neem-green);
    background: rgba(79, 111, 82, 0.1);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.product-card .add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: var(--gau-brown);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.product-card .add-to-cart-btn:hover {
    background: var(--cow-hide-light);
    color: var(--gau-brown-dark);
}

/* ========== BADGES ========== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.badge-deal {
    background: linear-gradient(135deg, var(--haldi-yellow) 0%, var(--haldi-yellow-light) 100%);
    color: var(--gau-brown-dark);
}

.badge-prescription {
    background: linear-gradient(135deg, var(--neem-green) 0%, var(--neem-green-light) 100%);
    color: white;
}

.badge-new {
    background: var(--gau-brown);
    color: white;
}

.badge-bestseller {
    background: linear-gradient(135deg, var(--cow-hide-light) 0%, var(--haldi-yellow) 100%);
    color: var(--gau-brown-dark);
}

.badge-outofstock {
    background: var(--ash-grey);
    color: white;
}

/* ========== HERO SECTION ========== */
.hero-section {
    background: linear-gradient(135deg, var(--gau-brown) 0%, var(--gau-brown-dark) 50%, var(--neem-green) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--desi-milk-white);
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--haldi-yellow);
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--haldi-yellow);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* ========== SECTIONS ========== */
.section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section { padding: 45px 0; }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .section-header { margin-bottom: 30px; }
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neem-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    background: rgba(79, 111, 82, 0.08);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 15px;
}

.custom-container {
    width: 80%;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .custom-container { width: 90%; }
}

@media (max-width: 768px) {
    .custom-container { width: 94%; }
}

@media (max-width: 480px) {
    .custom-container { width: 96%; }
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--ash-grey-light);
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gau-brown);
    font-weight: 600;
    margin-top: 30px;
}

.section-link:hover {
    gap: 12px;
}

/* ========== CATEGORY CARDS ========== */


/* ========== DOCTOR CONSULTATION CTA ========== */
.doctor-cta {
    background: linear-gradient(135deg, var(--neem-green) 0%, var(--neem-green-light) 100%);
    border-radius: var(--radius-xl);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.doctor-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.doctor-cta-content {
    position: relative;
    z-index: 1;
    color: white;
}

.doctor-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.doctor-cta-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.doctor-cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 450px;
}

.doctor-cta-features {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.doctor-cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.doctor-cta-feature i {
    color: var(--haldi-yellow);
}

/* ========== DEALS SECTION ========== */
.deals-section {
    background: linear-gradient(180deg, var(--desi-milk-white) 0%, rgba(230, 179, 37, 0.1) 100%);
}

.deal-timer {
    display: flex;
    gap: 12px;
    align-items: center;
}

.deal-timer-block {
    background: var(--gau-brown);
    color: white;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 55px;
}

.deal-timer-number {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.deal-timer-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
    background: var(--milk-white-pure);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(196, 154, 108, 0.1);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--haldi-yellow);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--cow-hide-lighter);
}

.testimonial-name {
    font-weight: 600;
    color: var(--ash-grey-dark);
    margin-bottom: 2px;
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--ash-grey-light);
}

/* ========== TRUST BADGES ========== */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px 0;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.trust-badge-icon {
    width: 60px;
    height: 60px;
    background: var(--desi-milk-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gau-brown);
    transition: all var(--transition-normal);
}

.trust-badge:hover .trust-badge-icon {
    background: var(--gau-brown);
    color: white;
}

.trust-badge-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ash-grey);
}

/* ========== FAQ ACCORDION ========== */
.faq-item {
    background: var(--milk-white-pure);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid rgba(196, 154, 108, 0.15);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ash-grey-dark);
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--gau-brown);
}

.faq-question i {
    transition: transform var(--transition-normal);
    color: var(--gau-brown);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 24px 20px;
    color: var(--ash-grey);
    line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--gau-brown-dark);
    color: var(--desi-milk-white);
    padding-top: 80px;
}

.footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-brand-logo .logo-icon {
    width: 50px;
    height: 50px;
    background: var(--cow-hide-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gau-brown-dark);
}

.footer-brand-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--haldi-yellow);
    color: var(--gau-brown-dark);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--haldi-yellow);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--haldi-yellow);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-newsletter {
    margin-top: 20px;
}

.footer-newsletter-form {
    display: flex;
    gap: 10px;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form button {
    padding: 12px 20px;
    background: var(--haldi-yellow);
    color: var(--gau-brown-dark);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.footer-newsletter-form button:hover {
    background: var(--haldi-yellow-light);
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-payments span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-payments img {
    height: 25px;
    opacity: 0.8;
}

/* ========== FORMS ========== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 500;
    color: var(--ash-grey-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--cow-hide-lighter);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--milk-white-pure);
}

.form-control:focus {
    outline: none;
    border-color: var(--gau-brown);
    box-shadow: 0 0 0 4px rgba(122, 74, 46, 0.1);
}

.form-control::placeholder {
    color: var(--ash-grey-light);
}

/* ========== CART PAGE ========== */
.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--milk-white-pure);
    border-radius: var(--radius-lg);
    margin-bottom: 15px;
    border: 1px solid rgba(196, 154, 108, 0.15);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--ash-grey-dark);
    margin-bottom: 5px;
}

.cart-item-variant {
    font-size: 0.85rem;
    color: var(--ash-grey-light);
    margin-bottom: 10px;
}

.cart-item-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gau-brown);
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--cow-hide-lighter);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    background: var(--desi-milk-white);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--ash-grey);
    transition: all var(--transition-fast);
}

.quantity-selector button:hover {
    background: var(--gau-brown);
    color: white;
}

.quantity-selector input {
    width: 50px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
    background: var(--milk-white-pure);
}

/* Order Summary */
.order-summary {
    background: var(--milk-white-pure);
    border-radius: var(--radius-lg);
    padding: 25px;
    border: 1px solid rgba(196, 154, 108, 0.15);
    position: sticky;
    top: 100px;
}

.order-summary-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--cow-hide-lighter);
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.order-summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gau-brown);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid var(--cow-hide-lighter);
}

.coupon-input {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.coupon-input input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--cow-hide-lighter);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
}

.coupon-input button {
    padding: 12px 20px;
    background: var(--neem-green);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.coupon-input button:hover {
    background: var(--neem-green-light);
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--ash-grey-light);
}

.breadcrumb a:hover {
    color: var(--gau-brown);
}

.breadcrumb .separator {
    color: var(--cow-hide-lighter);
}

.breadcrumb .current {
    color: var(--ash-grey-dark);
    font-weight: 500;
}

/* ========== LOADING SPINNER ========== */
.htmx-indicator {
    display: none;
}

.htmx-request .htmx-indicator {
    display: flex;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(250, 247, 242, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.loading-overlay.htmx-request {
    display: flex;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--cow-hide-lighter);
    border-top-color: var(--gau-brown);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========== TOAST NOTIFICATIONS ========== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--milk-white-pure);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease;
    border-left: 4px solid var(--gau-brown);
}

.toast.success {
    border-left-color: var(--neem-green);
}

.toast.error {
    border-left-color: var(--natural-red);
}

.toast.warning {
    border-left-color: var(--haldi-yellow);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .search-box {
        margin: 0 15px;
        max-width: 100%;
    }

    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-description {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .doctor-cta {
        padding: 40px;
    }

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

@media (max-width: 768px) {
    .navbar-main .container {
        flex-wrap: wrap;
    }

    .search-box {
        order: 3;
        width: 100%;
        margin: 15px 0 0;
        max-width: none;
    }

    .nav-links {
        gap: 4px;
    }

    .nav-link-item {
        padding: 8px 10px;
    }

    .nav-link-item span {
        display: none;
    }

    .category-nav {
        overflow-x: auto;
    }

    .category-list {
        gap: 20px;
        flex-wrap: nowrap;
        padding: 0 10px;
    }

    .section {
        padding: 50px 0;
    }

    .doctor-cta {
        padding: 30px;
    }

    .doctor-cta-features {
        flex-direction: column;
        gap: 15px;
    }

    .footer-top {
        text-align: center;
    }

    .footer-description {
        margin: 0 auto 20px;
    }

    .footer-social {
        justify-content: center;
    }

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

    .trust-badges {
        gap: 25px;
    }

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

@media (max-width: 576px) {
    body {
        font-size: 15px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stat {
        min-width: 45%;
    }

    .deal-timer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-card .product-info {
        padding: 12px 15px 15px;
    }

    .order-summary {
        position: static;
    }
}

/* ========== DARK/BROWN BACKGROUND — HEADING COLOR FIX ========== */
/* Ensures headings inside brown/dark sections are white, not brown */
.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section h4,
.hero-section h5,
.hero-section h6,
.doctor-cta h1,
.doctor-cta h2,
.doctor-cta h3,
.doctor-cta h4,
.doctor-cta h5,
.doctor-cta h6,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.announcement-bar h1,
.announcement-bar h2,
.announcement-bar h3,
.announcement-bar h4,
.announcement-bar h5,
.announcement-bar h6,
.pg-hero h1,
.pg-hero h2,
.pg-hero h3,
.pg-hero h4,
.pg-hero h5,
.pg-hero h6,
.pg-cta-banner h1,
.pg-cta-banner h2,
.pg-cta-banner h3,
.pg-cta-banner h4,
.pg-cta-banner h5,
.pg-cta-banner h6,
.shop-page-header h1,
.shop-page-header h2,
.shop-page-header h3,
.shop-page-header h4,
.shop-page-header h5,
.shop-page-header h6 {
    color: white !important;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease;
}

.animate-slide-up {
    animation: slideUp 0.5s ease;
}

.animate-pulse {
    animation: pulse 2s ease infinite;
}

/* Hover animations */
.hover-lift {
    transition: transform var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-scale {
    transition: transform var(--transition-normal);
}

.hover-scale:hover {
    transform: scale(1.02);
}/ *   M o d e r n   C a t e g o r y   C a r d   * / 
 
 . m o d e r n - c a t e g o r y - c a r d   { 
 
         b a c k g r o u n d :   # f f f ; 
 
         b o r d e r :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ; 
 
         b o r d e r - r a d i u s :   1 6 p x ; 
 
         p a d d i n g :   3 0 p x   2 0 p x ; 
 
         t r a n s i t i o n :   a l l   0 . 3 s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 ) ; 
 
         h e i g h t :   1 0 0 % ; 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         b o x - s h a d o w :   0   4 p x   6 p x   - 1 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ; 
 
 } 
 
 
 
 . m o d e r n - c a t e g o r y - c a r d : h o v e r   { 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ; 
 
         b o x - s h a d o w :   0   2 0 p x   2 5 p x   - 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ,   0   1 0 p x   1 0 p x   - 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 4 ) ; 
 
         b o r d e r - c o l o r :   v a r ( - - g a u - b r o w n - l i g h t ) ; 
 
 } 
 
 
 
 . m o d e r n - c a t e g o r y - c a r d : : b e f o r e   { 
 
         c o n t e n t :   ' ' ; 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   0 ; 
 
         l e f t :   0 ; 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   4 p x ; 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   v a r ( - - h a l d i - y e l l o w ) ,   v a r ( - - g a u - b r o w n ) ) ; 
 
         o p a c i t y :   0 ; 
 
         t r a n s i t i o n :   o p a c i t y   0 . 3 s   e a s e ; 
 
 } 
 
 
 
 . m o d e r n - c a t e g o r y - c a r d : h o v e r : : b e f o r e   { 
 
         o p a c i t y :   1 ; 
 
 } 
 
 
 
 . c a t e g o r y - i c o n - w r a p p e r   { 
 
         w i d t h :   8 0 p x ; 
 
         h e i g h t :   8 0 p x ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         m a r g i n - b o t t o m :   2 0 p x ; 
 
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ; 
 
 } 
 
 
 
 . m o d e r n - c a t e g o r y - c a r d : h o v e r   . c a t e g o r y - i c o n - w r a p p e r   { 
 
         t r a n s f o r m :   s c a l e ( 1 . 1 )   r o t a t e ( 5 d e g ) ; 
 
 } 
 
 

/* ========== SMOOTH INTERACTION ADDITIONS ========== */

/* Toast — enter/exit */
.toast {
    opacity: 0;
    transform: translateX(110%);
    transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
    max-width: 320px;
    min-width: 240px;
}
.toast.show {
    opacity: 1;
    transform: translateX(0);
}
.toast i { font-size: 1.1rem; flex-shrink: 0; }
.toast.success i { color: var(--neem-green); }
.toast.error   i { color: var(--natural-red); }
.toast.warning i { color: var(--haldi-yellow); }
.toast.info    i { color: #4a90d9; }
.toast button  { background: none; border: none; cursor: pointer; margin-left: auto; color: var(--ash-grey-light); padding: 0 0 0 8px; font-size: 1rem; }

/* Cart badge pop animation */
@keyframes badgePop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.5); }
    70%  { transform: scale(0.9); }
    100% { transform: scale(1); }
}
.badge-pop { animation: badgePop 0.4s cubic-bezier(0.34,1.56,0.64,1); }

/* Add-to-cart button success state */
.add-to-cart-btn.cart-added {
    background: var(--neem-green) !important;
    border-color: var(--neem-green) !important;
    color: white !important;
    transform: scale(0.97);
}

/* Wishlist heart pulse */
.wishlist-btn.active i {
    animation: heartPop 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes heartPop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.4); }
    100% { transform: scale(1); }
}

/* Cart item — smooth remove */
.cart-item {
    transition: opacity 0.2s ease, transform 0.2s ease, max-height 0.3s ease;
}
.htmx-swapping.cart-item {
    opacity: 0;
    transform: translateX(-10px);
}

/* Qty button active press */
.qty-btn:active { transform: scale(0.88); }

/* Bottom nav cart badge */
.cart-badge-num {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--haldi-yellow);
    color: var(--gau-brown-dark);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 20px;
    min-width: 16px;
    text-align: center;
    line-height: 1.4;
}

/* Smooth page-level HTMX swap on cart items */
#cart-items .htmx-settling {
    animation: fadeSlideIn 0.25s ease;
}
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ========== MODERN FOOTER REDESIGN ========== */
.footer {
    background: linear-gradient(135deg, #5D3820 0%, #3d2415 100%);
    position: relative;
    margin-top: 80px;
}

.footer-wave {
    position: absolute;
    top: -59px;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-inner {
    padding: 60px 0 30px;
}

.footer-brand-row {
    text-align: center;
    margin-bottom: 50px;
}

.footer-logo-wrap {
    background: white;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo-wrap:hover {
    transform: translateY(-4px);
}

.footer-tagline {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-socials a:hover {
    background: var(--haldi-yellow);
    color: var(--gau-brown-dark);
    transform: translateY(-4px);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    margin: 50px 0;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-links-col {
    text-align: left;
}

.footer-col-heading {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--haldi-yellow);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col-heading i {
    font-size: 0.85rem;
}

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

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

.footer-links-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-col ul li a:hover {
    color: var(--haldi-yellow);
    padding-left: 6px;
}

.footer-contact-items li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-contact-items li i {
    color: var(--haldi-yellow);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-bar p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-bar a {
    color: var(--haldi-yellow);
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom-bar a:hover {
    color: var(--haldi-yellow-light);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 767px) {
    .footer {
        margin-top: 60px;
    }
    
    .footer-inner {
        padding: 40px 0 20px;
    }
    
    .footer-brand-row {
        margin-bottom: 35px;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
    }
    
    .footer-divider {
        margin: 35px 0;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 35px;
    }
    
    .footer-links-col {
        text-align: center;
    }
    
    .footer-col-heading {
        justify-content: center;
    }
    
    .footer-contact-items li {
        justify-content: center;
        text-align: left;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        padding-top: 25px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-socials a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer-links-col ul li a {
        font-size: 0.85rem;
    }
    
    .footer-contact-items li {
        font-size: 0.8rem;
    }
}
