/* ==========================================================================
   AllChemists Custom Styles - Matico Demo Inspired Design
   ========================================================================== */

/* ==========================================================================
   Global Overrides - Reduced Padding
   ========================================================================== */
html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Reduce section padding */
.products-section,
.features-section,
.testimonials-section {
    padding: 35px 0 !important;
    margin-top: 0 !important;
}

/* Section Separation */
.products-section {
    border-bottom: 1px solid #e8e8e8;
}

.features-section {
    border-bottom: 1px solid #e8e8e8;
}

.testimonials-section {
    border-bottom: 1px solid #e8e8e8;
}

.hero-section {
    padding: 60px 0 !important;
    margin-top: 0 !important;
}

/* Fix header spacing */
.site-header {
    margin-bottom: 0 !important;
}

.site-header .container {
    padding: 0 15px;
}

.header-main {
    padding: 15px 0 !important;
}

/* ==========================================================================
   Top Bar - Dark Theme (Reference Style)
   ========================================================================== */
.top-bar {
    background: #0a1628;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-contact,
.top-bar a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 4px;
}

.top-bar-contact:hover,
.top-bar a:hover {
    color: #4dc42a;
    background: rgba(77, 196, 42, 0.1);
}

.top-bar-contact svg,
.top-bar a svg {
    flex-shrink: 0;
    stroke: currentColor;
}

/* Header Main - With Background Image & Dark Overlay */
.site-header {
    background: url('../images/header-bg.png') center center;
    background-size: cover;
    position: relative;
    min-height: 100px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.85);
    z-index: 0;
}

.site-header .container {
    position: relative;
    z-index: 1;
}

.site-header > .container {
    z-index: 1002;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0 !important;
    min-height: 100px;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.header-left {
    flex-shrink: 0;
}

.site-branding {
    display: block;
}

.site-branding img,
.site-branding .custom-logo {
    max-height: 90px;
    width: auto;
    display: block;
}

/* Force logo.png if custom logo not set */
.site-branding a,
.site-logo-link {
    display: block;
}

.site-branding img,
.site-logo {
    max-height: 90px;
    width: auto;
    display: block;
}

/* Hide text if using background logo */
.site-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.header-search {
    flex: 1;
    max-width: 600px;
    min-width: 0;
}

.header-search-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-search-form .vsearch-wrap {
    flex: 1;
    min-width: 0;
}

.header-search-form .search-field {
    flex: 1;
    width: 100%;
    padding: 14px 20px;
    border: none;
    background: transparent;
    color: #333;
    font-size: 14px;
    font-weight: 400;
}

.header-search-form .search-field::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.header-search-form .search-submit {
    padding: 14px 20px;
    background: #4dc42a;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-search-form .search-submit:hover {
    background: #3da821;
}

.header-search-form .search-submit svg {
    stroke: currentColor;
}

.header-search-form .vsearch-dropdown {
    left: 0;
    width: min(680px, calc(100vw - 30px));
}

.header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-group-action {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.header-account,
.header-wishlist,
.header-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.header-account:hover,
.header-wishlist:hover,
.header-cart:hover {
    background: rgba(77, 196, 42, 0.2);
    border-color: #4dc42a;
    color: #ffffff;
}

.header-account .icon,
.header-wishlist .icon,
.header-cart .icon {
    font-size: 20px;
}

.header-cart {
    background: rgba(77, 196, 42, 0.15);
    border-color: #4dc42a;
    position: relative;
}

.cart-count {
    background: #4dc42a;
    color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    position: absolute;
    top: -5px;
    right: -5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cart-total {
    font-weight: 700;
    color: #4dc42a;
}

/* Trust Badges Row - Better Layout */
.header-trust-badges {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 15px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge svg {
    stroke: #4dc42a;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.trust-badge span {
    white-space: nowrap;
}

/* Navigation - Dark Green with Professional SVG Icons */
.main-navigation {
    background: #2d8a1e;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 999;
    overflow: visible;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.main-navigation .container {
    padding: 0 15px;
    overflow: visible;
}

.nav-inner {
    display: flex;
    justify-content: flex-start;
    overflow: visible;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.nav-menu li {
    margin: 0;
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 0;
    white-space: nowrap;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.nav-menu > li > a::before {
    content: '';
    width: 18px;
    height: 18px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

/* Professional SVG Icons for Navigation */
.nav-menu > li:first-child > a::before,
.nav-menu > li > a[href*="home"]::before,
.nav-menu > li > a[href$="/"]::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline></svg>');
}

.nav-menu > li > a[href*="medicine"]::before,
.nav-menu > li > a[href*="vitamin"]::before,
.nav-menu > li > a[href*="product"]::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="4" y="4" width="16" height="16" rx="2" ry="2"></rect><rect x="9" y="9" width="6" height="6"></rect><line x1="9" y1="1" x2="9" y2="4"></line><line x1="15" y1="1" x2="15" y2="4"></line><line x1="9" y1="20" x2="9" y2="23"></line><line x1="15" y1="20" x2="15" y2="23"></line><line x1="20" y1="9" x2="23" y2="9"></line><line x1="20" y1="14" x2="23" y2="14"></line><line x1="1" y1="9" x2="4" y2="9"></line><line x1="1" y1="14" x2="4" y2="14"></line></svg>');
}

.nav-menu > li > a[href*="treatment"]::before,
.nav-menu > li > a[href*="health"]::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 12h-4l-3 9L9 3l-3 9H2"></path></svg>');
}

.nav-menu > li > a[href*="shop"]::before,
.nav-menu > li > a[href*="store"]::before,
.nav-menu > li > a[href*="retailer"]::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"></path><line x1="3" y1="6" x2="21" y2="6"></line><path d="M16 10a4 4 0 0 1-8 0"></path></svg>');
}

.nav-menu > li > a[href*="job"]::before,
.nav-menu > li > a[href*="career"]::before,
.nav-menu > li > a[href*="work"]::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="7" width="20" height="14" rx="2" ry="2"></rect><path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"></path></svg>');
}

.nav-menu > li > a[href*="about"]::before,
.nav-menu > li > a[href*="contact"]::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="16" x2="12" y2="12"></line><line x1="12" y1="8" x2="12.01" y2="8"></line></svg>');
}

.nav-menu > li > a:hover,
.nav-menu .current-menu-item > a {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* Dropdown Menu Styles */
.nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 240px;
    max-width: 300px;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    z-index: 1000;
    border-top: 3px solid #4dc42a;
}

.nav-menu li:hover > .sub-menu {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu .sub-menu li {
    margin: 0;
    width: 100%;
}

.nav-menu .sub-menu a {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 0;
    white-space: normal;
    line-height: 1.5;
    word-wrap: break-word;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu .sub-menu a:hover {
    background: #f5f5f5;
    color: #4dc42a;
    padding-left: 25px;
}

/* Nested Dropdown */
.nav-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    border-radius: 8px;
    margin-left: 2px;
}

.nav-menu .sub-menu li:hover > .sub-menu {
    display: block;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile Search Bar */
.mobile-search-bar {
    display: none;
    background: #0e3175;
    padding: 10px 0;
}

.mobile-search-form {
    display: flex;
    gap: 10px;
    overflow: visible;
    position: relative;
}

.mobile-search-form .vsearch-wrap {
    flex: 1;
    min-width: 0;
}

.mobile-search-form input[type="search"] {
    flex: 1;
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
}

.mobile-search-form button {
    padding: 10px 20px;
    background: #4dc42a;
    border: none;
    border-radius: 25px;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-search-form button svg {
    stroke: currentColor;
}

.mobile-search-form .vsearch-dropdown {
    left: 0;
    width: calc(100vw - 30px);
}

/* Desktop Only */
.desktop-only {
    display: block;
}

/* Site Content */
#content.site-content {
    margin-top: 0;
    padding-top: 0;
}

.col-full {
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   Enhanced Hero Section - Full Width Background
   ========================================================================== */
/* COMMENTED OUT - WORKING ON OTHER SECTIONS FIRST
.hero-section {
    background: url('../images/hero.png') center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
    padding: 80px 0 !important;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.1) 70%, transparent 100%);
    z-index: 1;
}

.hero-section .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    margin-top: 0;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    color: #ffffff;
    text-align: left !important;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    margin-top: 0;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-align: left !important;
}
*/

/* Hide hero search */
.hero-search {
    display: none;
}

/* Hero buttons - keeping these active */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start !important;
    flex-wrap: wrap;
    margin-top: 30px;
    text-align: left !important;
}

/* ==========================================================================
   Section Backgrounds - Full Width
   ========================================================================== */
.products-section {
    background: #ffffff;
    margin: 0;
    width: 100%;
}

.products-section:nth-child(even) {
    background: #f8f9fa;
}

.features-section {
    background: #f8f9fa;
    margin: 0;
    margin-top: 0 !important;
    width: 100%;
    padding: 50px 0 !important;
    position: relative;
    overflow: hidden;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-section {
    background: #ffffff;
    margin: 0;
    width: 100%;
}

/* ==========================================================================
   Enhanced Product Cards - Modern E-commerce Style
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #e0e0e0;
}

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
    background: #f8f9fa;
    flex-shrink: 0;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 25%;
    background: #4dc42a;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    text-align: center;
}

.product-badge.sale {
    background: #e91e63;
    color: #ffffff;
    left: 15px;
    width: 25%;
}

.product-badge.new {
    background: #4dc42a;
    color: #ffffff;
    left: 15px;
    width: 25%;
}

/* Wishlist Icon */
.product-image::after {
    content: '♡';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    line-height: 36px;
    text-align: center;
}

.product-card:hover .product-image::after {
    color: #4dc42a;
    background: #e8f5e9;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a1a1a;
    line-height: 1.4;
    height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.product-title a:hover {
    color: #4dc42a;
}

.product-description {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
    line-height: 1.4;
    height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Star Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
}

.product-rating .stars {
    color: #ffc107;
    letter-spacing: 2px;
}

.product-rating .rating-count {
    color: #999;
}

.product-price {
    font-size: 24px;
    font-weight: 800;
    color: #0e3175;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 32px;
}

.product-price del {
    font-size: 16px;
    color: #999;
    font-weight: 500;
}

.product-price .discount {
    font-size: 13px;
    color: #ffffff;
    font-weight: 700;
    background: #e91e63;
    padding: 3px 8px;
    border-radius: 6px;
}

/* Product Features */
.product-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.product-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
}

.product-feature-icon {
    font-size: 20px;
    margin-bottom: 4px;
    color: #666;
}

.product-feature-value {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.product-feature-label {
    font-size: 11px;
    color: #999;
}

.product-meta {
    display: none;
}

/* Buttons - Force Consistent Height */
.product-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.add-to-cart-btn,
.product-card .button,
.product-card .added_to_cart,
.product-card a.button,
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .added_to_cart {
    flex: 1;
    padding: 0 16px !important;
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
    background: #ffffff !important;
    color: #0e3175 !important;
    border: 2px solid #0e3175 !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    line-height: 1.2 !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    width: 100% !important;
}

.add-to-cart-btn:hover,
.product-card .button:hover,
.product-card .added_to_cart:hover,
.product-card a.button:hover,
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.button:hover,
.woocommerce ul.products li.product .added_to_cart:hover {
    background: #0e3175 !important;
    color: #ffffff !important;
    border-color: #0e3175 !important;
}

.buy-now-btn {
    flex: 1.5;
    padding: 0 16px !important;
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
    background: #4dc42a !important;
    color: #ffffff !important;
    border: 2px solid #4dc42a !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.2 !important;
    box-sizing: border-box !important;
}

.buy-now-btn:hover {
    background: #3da821 !important;
    border-color: #3da821 !important;
}

/* ==========================================================================
   Enhanced Feature Cards - Reference Style with Light Background
   ========================================================================== */
.features-section {
    background: #f8f9fa;
    margin: 0;
    margin-top: 0 !important;
    width: 100%;
    padding: 50px 0 !important;
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    text-align: center;
    padding: 35px 25px;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #4dc42a;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.feature-card:nth-child(1) .feature-icon {
    background: #e3f2fd;
}

.feature-card:nth-child(1) .feature-icon svg {
    stroke: #1976d2;
}

.feature-card:nth-child(2) .feature-icon {
    background: #e8f5e9;
}

.feature-card:nth-child(2) .feature-icon svg {
    stroke: #388e3c;
}

.feature-card:nth-child(3) .feature-icon {
    background: #fff3e0;
}

.feature-card:nth-child(3) .feature-icon svg {
    stroke: #f57c00;
}

.feature-card:nth-child(4) .feature-icon {
    background: #f3e5f5;
}

.feature-card:nth-child(4) .feature-icon svg {
    stroke: #7b1fa2;
}

.feature-card:nth-child(5) .feature-icon {
    background: #fce4ec;
}

.feature-card:nth-child(5) .feature-icon svg {
    stroke: #c2185b;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 13px;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Stats Row Below Features - Reference Style */
.features-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e8e8e8;
}

.stat-item {
    text-align: center;
    padding: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #4dc42a 0%, #3da821 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 3px 12px rgba(77, 196, 42, 0.25);
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    stroke-width: 2;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* ==========================================================================
   Enhanced Testimonial Cards - Gradient Hover
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(77, 196, 42, 0.1) 0%, rgba(14, 49, 117, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #4dc42a;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 70px;
    color: #4dc42a;
    opacity: 0.15;
    font-family: Georgia, serif;
    z-index: 0;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
}

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

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4dc42a 0%, #0e3175 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(77, 196, 42, 0.3);
    flex-shrink: 0;
}

.author-info h4 {
    margin: 0 0 3px 0;
    font-size: 16px;
    color: #0e3175;
    font-weight: 700;
}

.author-info p {
    margin: 0 0 5px 0;
    font-size: 13px;
    color: #777;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 14px;
}

/* ==========================================================================
   Section Titles - Reference Style
   ========================================================================== */
.section-title {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 0;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4dc42a 0%, #0e3175 100%);
    border-radius: 2px;
}

.section-title p {
    font-size: 15px;
    color: #666;
    margin-top: 10px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* ==========================================================================
   View All Button - Enhanced
   ========================================================================== */
.view-all-container {
    text-align: center;
    margin-top: 35px;
}

.btn-view-all {
    padding: 13px 45px;
    background: #0e3175;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(14, 49, 117, 0.2);
}

.btn-view-all:hover {
    background: #4dc42a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(77, 196, 42, 0.3);
}

/* ==========================================================================
   CTA Section - White Background
   ========================================================================== */
.cta-section {
    background: #ffffff !important;
    padding: 60px 0 !important;
    margin-top: 0 !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 36px !important;
    margin-bottom: 15px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
}

.cta-section p {
    font-size: 18px !important;
    margin-bottom: 30px !important;
    color: #666 !important;
}

.cta-section .btn-primary {
    font-size: 16px !important;
    padding: 15px 50px !important;
    background: #4dc42a !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(77, 196, 42, 0.3) !important;
}

.cta-section .btn-primary:hover {
    background: #3da821 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(77, 196, 42, 0.4) !important;
}

/* ==========================================================================
   WooCommerce Product Grid Enhancements
   ========================================================================== */
.woocommerce ul.products {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
    float: none !important;
    width: 100% !important;
}

.woocommerce ul.products li.product {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #e0e0e0;
}

.woocommerce ul.products li.product a {
    text-decoration: none;
}

.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: contain;
    padding: 20px;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f9fa;
    flex-shrink: 0;
}

.woocommerce ul.products li.product:hover a img,
.woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    font-weight: 700;
    padding: 20px 20px 6px;
    color: #1a1a1a;
    line-height: 1.4;
    height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.woocommerce ul.products li.product .price {
    color: #0e3175;
    font-weight: 800;
    font-size: 24px;
    padding: 0 20px 12px;
    display: block;
    min-height: 32px;
}

.woocommerce ul.products li.product .price del {
    color: #999;
    font-size: 16px;
    font-weight: 500;
}

.woocommerce ul.products li.product .button {
    margin: 0 20px 20px !important;
    width: calc(100% - 40px) !important;
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    background: #ffffff !important;
    color: #0e3175 !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.3s;
    border: 2px solid #0e3175 !important;
    cursor: pointer;
    font-size: 14px !important;
    line-height: 1.2 !important;
    box-sizing: border-box !important;
}

.woocommerce ul.products li.product .button:hover {
    background: #0e3175 !important;
    color: #ffffff !important;
    border-color: #0e3175 !important;
}

/* Product badges */
.woocommerce ul.products li.product .onsale {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 25%;
    background: #e91e63;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: none;
    margin: 0;
    min-height: auto;
    line-height: 1;
    right: auto;
    text-align: center;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-section,
    .features-section,
    .testimonials-section {
        padding: 35px 0 !important;
    }
    
    .cta-section {
        padding: 50px 0 !important;
    }
    
    .cta-section h2 {
        font-size: 32px !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-title {
        font-size: 14px;
        min-height: 38px;
    }
    
    .product-price {
        font-size: 18px;
    }
}

/* ==========================================================================
   Smooth Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.feature-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Stagger animation for grid items */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

/* ==========================================================================
   Mobile Responsive - Header & Navigation
   ========================================================================== */
@media (max-width: 768px) {
    /* Top Bar Mobile */
    .top-bar {
        font-size: 11px;
        padding: 5px 0;
    }
    
    .top-bar-inner {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .top-bar-left,
    .top-bar-right {
        gap: 10px;
        font-size: 11px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Header Mobile */
    .header-main {
        flex-wrap: wrap;
        padding: 10px 0 !important;
        gap: 10px;
        min-height: auto;
    }
    
    .header-left {
        order: 1;
        flex: 1;
    }
    
    .header-right {
        order: 2;
    }
    
    .header-search.desktop-only {
        display: none !important;
    }
    
    .mobile-search-bar {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .site-branding img,
    .site-branding .custom-logo {
        max-height: 50px;
    }
    
    .header-group-action {
        gap: 10px;
    }
    
    .header-account .label,
    .header-wishlist .label {
        display: none;
    }
    
    .header-account .icon,
    .header-wishlist .icon,
    .header-cart .icon {
        font-size: 18px;
    }
    
    /* Trust Badges Mobile */
    .header-trust-badges {
        gap: 15px;
        padding: 10px 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trust-badge {
        font-size: 11px;
        gap: 5px;
    }
    
    .trust-badge svg {
        width: 16px;
        height: 16px;
    }
    
    /* Navigation Mobile */
    .main-navigation {
        display: none;
    }
    
    .main-navigation.mobile-open {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu a {
        padding: 12px 15px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Hero Mobile */
    .hero-section {
        padding: 50px 0 !important;
        min-height: 400px;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: 36px !important;
    }
    
    .hero-content p {
        font-size: 16px !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-section::after {
        font-size: 80px;
        right: 5%;
    }
}

@media (max-width: 480px) {
    .top-bar-left span,
    .top-bar-right a {
        font-size: 10px;
    }
    
    .header-group-action {
        gap: 8px;
    }
    
    .cart-total {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 28px !important;
    }
    
    .hero-content p {
        font-size: 14px !important;
    }
    
    .hero-section {
        min-height: 350px;
    }
    
    .hero-section::after {
        display: none;
    }
}

/* ==========================================================================
   Hero Buttons - Reference Style
   ========================================================================== */
.hero-buttons .btn {
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    text-transform: capitalize;
}

.hero-buttons .btn-primary {
    background: #4dc42a;
    color: #ffffff;
    border-color: #4dc42a;
    box-shadow: 0 4px 15px rgba(77, 196, 42, 0.4);
}

.hero-buttons .btn-primary:hover {
    background: #3da821;
    border-color: #3da821;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 196, 42, 0.5);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    border-width: 2px;
}

.hero-buttons .btn-secondary:hover {
    background: #ffffff;
    color: #0e3175;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Medical Cross Icon (Optional) */
.hero-section::after {
    content: '+';
    position: absolute;
    top: 10%;
    right: 15%;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.05);
    font-weight: 300;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ==========================================================================
   Force Hero Content Left Alignment - Override All Styles
   ========================================================================== */
body .hero-section,
body section.hero-section {
    text-align: left !important;
}

body .hero-section .container,
body section.hero-section .container {
    text-align: left !important;
    display: block !important;
}

body .hero-section .hero-content,
body section.hero-section .hero-content,
body .hero-content {
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
    max-width: 550px !important;
    float: none !important;
    display: block !important;
}

body .hero-section .hero-content h1,
body section.hero-section .hero-content h1,
body .hero-content h1 {
    text-align: left !important;
    margin-left: 0 !important;
}

body .hero-section .hero-content p,
body section.hero-section .hero-content p,
body .hero-content p {
    text-align: left !important;
    margin-left: 0 !important;
}

body .hero-section .hero-buttons,
body section.hero-section .hero-buttons,
body .hero-buttons {
    justify-content: flex-start !important;
    text-align: left !important;
    margin-left: 0 !important;
}

/* Clearfix for hero section */
.hero-section::after {
    content: '';
    display: table;
    clear: both;
}


/* ==========================================================================
   Footer - Dark Background with Logo
   ========================================================================== */
.site-footer {
    background: #0a1628;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0;
}

.footer-main-wrapper {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Footer Logo */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

/* Footer Franchise Buttons */
.footer-franchise-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.footer-btn {
    display: inline-block;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    white-space: nowrap;
}

.footer-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.footer-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4dc42a;
    color: #4dc42a;
}

.footer-btn-primary {
    background: #4dc42a;
    border: 2px solid #4dc42a;
    color: #ffffff;
}

.footer-btn-primary:hover {
    background: #3da821;
    border-color: #3da821;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(77, 196, 42, 0.3);
}

/* Footer Widget Styling */
.footer-widget h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 20px;
}

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

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

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-widget ul li a:hover {
    color: #4dc42a;
    padding-left: 5px;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social .social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social .social-icon:hover {
    background: #4dc42a;
    border-color: #4dc42a;
    transform: translateY(-3px);
}

.footer-social .social-icon svg {
    width: 18px;
    height: 18px;
}

/* Footer Bottom */
.footer-bottom-wrapper {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
}

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

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

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #4dc42a;
}

.footer-payment-methods {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-main-wrapper {
        padding: 40px 0 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-payment-methods {
        justify-content: center;
    }
}
