/* Modern E-commerce Pharmacy CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Landing Page (lp-) styles ===== */
.lp-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eef1f4;
}

.lp-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.lp-brand img { height: 36px; width: auto; }
.lp-brand span { font-weight: 700; color: #008080; }

.lp-nav { display: flex; gap: 24px; }
.lp-nav a {
    color: #343a40;
    text-decoration: none;
    font-weight: 600;
}
.lp-nav a.active, .lp-nav a:hover { color: #008080; }

.lp-cta-group { display: flex; gap: 12px; }
.lp-btn { padding: 10px 18px; border-radius: 999px; text-decoration: none; font-weight: 700; }
.lp-btn-text { color: #008080; border: 2px solid #008080; background: rgba(255, 255, 255, 0.95); }
.lp-btn-primary { background: #008080; color: #fff; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); }
.lp-btn-outline { border: 2px solid #008080; color: #008080; background: rgba(255, 255, 255, 0.95); }
.lp-btn-outline:hover { background: #008080; color: #fff; }

.accent { color: #008080; }

.lp-hero { 
    background: url('/pharmacy_system/assets/images/Landingpage_bg.png') center/cover no-repeat; 
    padding: 100px 0 80px; 
    position: relative;
}
.lp-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 128, 128, 0.7), rgba(0, 0, 0, 0.5));
}
.lp-hero-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 40px; 
    align-items: center; 
    position: relative; 
    z-index: 1;
}
.lp-hero-copy { 
    text-align: center; 
    max-width: 800px; 
    margin: 0 auto; 
}
.lp-hero-copy h1 { 
    font-size: 46px; 
    line-height: 1.1; 
    color: #fff; 
    margin-bottom: 20px; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.lp-hero-copy p { 
    color: #f0f0f0; 
    margin-bottom: 30px; 
    font-size: 18px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.lp-hero-actions { 
    display: flex; 
    gap: 16px; 
    align-items: center; 
    justify-content: center;
}
.lp-explore { 
    color: #fff; 
    text-decoration: none; 
    font-weight: 600; 
}
.lp-explore i { color: #008080; margin-right: 8px; }

.lp-hero-art { position: relative; min-height: 280px; display: flex; align-items: center; justify-content: center; }
.lp-hero-blob { position: absolute; width: 320px; height: 220px; background: radial-gradient( circle at 30% 30%, #b3e0e0, #008080 ); border-radius: 30px; transform: rotate(-6deg); filter: blur(0.2px); }
.lp-hero-blob.small { width: 220px; height: 160px; }
.lp-hero-art i { font-size: 64px; color: #008080; position: relative; z-index: 1; margin: 0 8px; }

.lp-services { background: #fafafa; padding: 60px 0; text-align: center; }
.lp-services h2 { font-size: 28px; margin-bottom: 10px; }
.lp-sub { color: #6b7280; margin-bottom: 24px; }
.lp-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lp-card { background: #fff; border: 1px solid #eef1f4; border-radius: 14px; padding: 20px; text-align: left; transition: transform .2s ease; }
.lp-card:hover { transform: translateY(-4px); }
.lp-card-icon { width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center; color: #fff; margin-bottom: 12px; }
.lp-card-icon.yellow { background: #f9ca24; }
.lp-card-icon.green { background: #2ecc71; }
.lp-card-icon.purple { background: #9b59b6; }
.lp-card-icon.orange { background: #008080; }
.lp-card h3 { margin-bottom: 6px; font-size: 18px; }
.lp-card p { color: #6b7280; font-size: 14px; }

.lp-steps { background: #f0f7f7; padding: 60px 0; }
.lp-steps-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: center; }
.lp-steps-copy h2 { font-size: 32px; margin-bottom: 10px; }
.lp-steps-copy p { color: #6b7280; margin-bottom: 14px; }
.lp-steps-list { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 10px; }
.lp-steps-list li { background: #fff; border: 1px solid #b3e0e0; border-radius: 12px; padding: 10px 12px; font-weight: 600; color: #374151; display: flex; align-items: center; gap: 10px; }
.lp-steps-list li span { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: #008080; color: #fff; font-weight: 800; }
.lp-steps-art { position: relative; min-height: 200px; display: grid; place-items: center; }
.lp-steps-art i { font-size: 56px; color: #008080; z-index: 1; }

.lp-agency { 
    background: #fff; 
    padding: 80px 0; 
}
.lp-agency-grid { 
    display: grid; 
    grid-template-columns: 1.2fr 1fr; 
    gap: 60px; 
    align-items: center; 
}
.lp-agency-copy h2 { 
    font-size: 32px; 
    margin-bottom: 20px; 
    line-height: 1.2;
}
.lp-agency-copy p { 
    color: #6b7280; 
    margin-bottom: 30px; 
    line-height: 1.6;
    font-size: 16px;
}
.lp-agency-copy .lp-btn {
    margin-top: 10px;
}
.lp-agency-art { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}
.map-container {
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.2);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(0, 128, 128, 0.1);
}
.map-container iframe {
    display: block;
    width: 100%;
    height: 300px;
}

.lp-testimonials { 
    background: #e0f2f1; 
    padding: 60px 0; 
    text-align: center; 
    position: relative;
}
.lp-testimonials h2 {
    color: #00695c;
    margin-bottom: 20px;
}
.lp-testimonial-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 16px; }
.lp-t-card { 
    background: #ffffff; 
    border: 1px solid #b2dfdb; 
    border-radius: 12px; 
    padding: 18px; 
    text-align: left; 
    box-shadow: 0 2px 4px rgba(0, 128, 128, 0.1);
}
.lp-t-card h4 { margin-bottom: 6px; color: #008080; font-weight: 600; }
.lp-t-card p { color: #555; font-size: 14px; }

.lp-cta-band { background: linear-gradient(90deg,#008080,#20b2aa); color:#fff; }
.lp-cta-band-row { display:flex; align-items:center; justify-content: space-between; gap:16px; padding: 26px 0; }
.lp-cta-band-row h3 { font-size: 20px; font-weight: 800; }

@media (max-width: 992px) {
    .lp-hero-grid, .lp-steps-grid, .lp-agency-grid { grid-template-columns: 1fr; }
    .lp-card-grid { grid-template-columns: repeat(2,1fr); }
    .lp-testimonial-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .lp-nav { display: none; }
    
    .lp-btn {
        padding: 12px 16px;
        font-size: 13px;
        min-width: 80px;
    }
}

@media (max-width: 600px) {
    .lp-card-grid { grid-template-columns: 1fr; }
    .lp-testimonial-row { grid-template-columns: 1fr; }
    .lp-hero-copy h1 { font-size: 34px; }
    
    .lp-btn {
        padding: 10px 14px;
        font-size: 12px;
        min-width: 70px;
    }
}

/* Header Styles for Landing Page */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    padding: 15px 0;
}

.header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #28a745;
}

.logo img {
    height: 40px;
    width: auto;
}

.support-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.support-info .phone {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.support-info .sub {
    font-size: 12px;
    color: #6c757d;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login, .btn-register {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-login {
    background: transparent;
    color: #28a745;
    border: 2px solid #28a745;
}

.btn-login:hover {
    background: #28a745;
    color: white;
}

.btn-register {
    background: #28a745;
    color: white;
    border: 2px solid #28a745;
}

.btn-register:hover {
    background: #218838;
    border-color: #218838;
}

/* Top Header */
.top-header {
    background: #f8f9fa;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #e9ecef;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left span {
    color: #6c757d;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-right a {
    color: #6c757d;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.top-right a:hover {
    color: #28a745;
}

.cart-count {
    background: #28a745;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 12px;
    margin-left: 5px;
}

/* Main Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #28a745;
}

.logo img {
    height: 40px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.category-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.category-btn:hover {
    background: #218838;
}

.search-container {
    display: flex;
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: #28a745;
}

.search-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #218838;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #28a745;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #28a745;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Navigation Bar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.category-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.category-btn:hover {
    background: #218838;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #28a745;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #28a745;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.recently-viewed {
    color: #28a745;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.recently-viewed:hover {
    color: #218838;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8ff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2328a745" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%2328a745" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%2328a745" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="%2328a745" opacity="0.1"/><circle cx="90" cy="40" r="1" fill="%2328a745" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text .highlight {
    color: #28a745;
    font-style: italic;
}

.hero-text p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: #28a745;
    border: 2px solid #28a745;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-outline:hover {
    background: #28a745;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.btn-primary {
    background: #28a745;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.medicine-bottles {
    display: flex;
    gap: 20px;
    align-items: end;
}

.bottle {
    width: 60px;
    height: 80px;
    border-radius: 8px;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.bottle-1 {
    background: linear-gradient(45deg, #28a745, #20c997);
    animation-delay: 0s;
}

.bottle-2 {
    background: linear-gradient(45deg, #007bff, #6610f2);
    animation-delay: 0.5s;
    height: 100px;
}

.bottle-3 {
    background: linear-gradient(45deg, #fd7e14, #e83e8c);
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #28a745;
}

/* Promotional Banners */
.promo-banners {
    padding: 40px 0;
    background: white;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.promo-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.promo-banner:hover {
    transform: translateY(-5px);
}

.banner-1 {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
}

.banner-2 {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
}

.banner-3 {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.banner-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.banner-text p {
    color: #6c757d;
    font-size: 0.9rem;
}

.banner-image i {
    font-size: 3rem;
    color: #28a745;
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dc3545;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.banner-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.banner-btn:hover {
    background: #218838;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.features .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.features .section-header p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #e8f5e8 0%, #d1ecf1 100%);
    padding: 80px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaves" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25,10 Q30,5 35,10 Q30,15 25,10" fill="%2328a745" opacity="0.1"/><path d="M15,30 Q20,25 25,30 Q20,35 15,30" fill="%2328a745" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23leaves)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.cta-text {
    flex: 1;
    max-width: 500px;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-image {
    flex: 1;
}

.product-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateX(10px);
}

.product-item i {
    font-size: 2rem;
    color: #28a745;
}

.product-item span {
    font-weight: 600;
    color: #333;
}

/* Featured Products */
.featured-products {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.section-title p {
    color: #6c757d;
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    color: #28a745;
    border: 2px solid #28a745;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #28a745;
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-badge.discount {
    background: #dc3545;
}

.product-image {
    text-align: center;
    margin: 20px 0;
}

.product-image i {
    font-size: 3rem;
    color: #28a745;
}

.product-category {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.product-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.product-rating span {
    color: #6c757d;
    font-size: 0.9rem;
}

.product-brand {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #28a745;
}

.original-price {
    font-size: 1rem;
    color: #6c757d;
    text-decoration: line-through;
}

.add-to-cart {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
    width: 100%;
    justify-content: center;
}

.add-to-cart:hover {
    background: #218838;
}

.product-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Bottom CTA Section */
.bottom-cta {
    background: linear-gradient(135deg, #e8f5e8 0%, #d1ecf1 100%);
    padding: 60px 0;
    position: relative;
}

.bottom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaves" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25,10 Q30,5 35,10 Q30,15 25,10" fill="%2328a745" opacity="0.1"/><path d="M15,30 Q20,25 25,30 Q20,35 15,30" fill="%2328a745" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23leaves)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.cta-image {
    flex: 1;
}

.health-products {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateX(10px);
}

.product-item i {
    font-size: 2rem;
    color: #28a745;
}

.product-item span {
    font-weight: 600;
    color: #333;
}

.cta-text {
    flex: 1;
    max-width: 500px;
}

.cta-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text .highlight {
    color: #28a745;
    font-style: italic;
}

.cta-text p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #28a745;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #28a745;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #28a745;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #28a745;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #218838;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info i {
    color: #28a745;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-header {
        display: none;
    }
    
    .header-top .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .btn-login, .btn-register {
        width: 100%;
        justify-content: center;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .banner-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        padding: 15px;
    }
}

/* ===== Final CTA Section ===== */
.lp-final-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px 0;
    position: relative;
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.final-cta-content .accent {
    color: #008080;
}

.final-cta-content p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-buttons-compact {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.cta-buttons-compact .lp-btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 140px;
}

.cta-buttons-compact .lp-btn-primary {
    background: #008080;
    color: #ffffff;
    border: none;
}

.cta-buttons-compact .lp-btn-primary:hover {
    background: #20b2aa;
    transform: translateY(-2px);
}

.cta-buttons-compact .lp-btn-outline {
    background: transparent;
    color: #008080;
    border: 2px solid #008080;
}

.cta-buttons-compact .lp-btn-outline:hover {
    background: #008080;
    color: #ffffff;
}

.final-note {
    font-size: 0.95rem;
    color: #008080;
    font-weight: 500;
    margin: 0;
}

/* Responsive Design for Final CTA */
@media (max-width: 768px) {
    .lp-final-cta {
        padding: 40px 0;
    }
    
    .final-cta-content h2 {
        font-size: 1.9rem;
    }
    
    .final-cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons-compact {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .lp-final-cta {
        padding: 30px 0;
    }
    
    .final-cta-content h2 {
        font-size: 1.7rem;
    }
    
    .cta-buttons-compact .lp-btn {
        min-width: 120px;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .final-note {
        font-size: 0.9rem;
    }
}

/* ===== Contact Us Section ===== */
.lp-contact {
    padding: 30px 0;
    background: #ffffff;
    text-align: center;
}

.lp-contact h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.lp-contact .lp-sub {
    font-size: 0.9rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 25px auto;
    line-height: 1.4;
}

.contact-grid {
    display: flex;
    justify-content: center;
    text-align: left;
    align-items: start;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #008080;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.15);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #008080;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.contact-icon i {
    color: #ffffff;
    font-size: 1.2rem;
}

.contact-card h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-card p {
    color: #6c757d;
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 0.9rem;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

.contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 128, 128, 0.15);
    border: 2px solid #008080;
    width: 100%;
    max-width: 600px;
}

.contact-form h3 {
    color: #008080;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 12px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.9rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #008080;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.2);
    transform: translateY(-2px);
    border-width: 3px;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-submit-btn {
    width: 100%;
    padding: 12px;
    background: #008080;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.3);
}

.contact-submit-btn:hover {
    background: #20b2aa;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.4);
}

.contact-submit-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

.form-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section Responsive */
@media (max-width: 968px) {
    .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .lp-contact {
        padding: 25px 0;
    }
    
    .contact-form {
        padding: 25px 20px;
        max-width: 100%;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .lp-contact h2 {
        font-size: 2rem;
    }
    
    .lp-contact .lp-sub {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 25px 20px;
    }
    
    .contact-form h3 {
        font-size: 1.3rem;
    }
    
    .contact-submit-btn {
        padding: 14px;
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 18px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
}

/* ===== Customer Rating Stars ===== */
.customer-rating {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 10px;
}

.customer-rating i {
    font-size: 0.9rem;
    color: #ffd700;
}

.customer-rating .far {
    color: #ddd;
}

.lp-t-card {
    text-align: center;
    position: relative;
}

/* ===== Professional Login Modal ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 480px;
    transform: scale(0.9);
    animation: modalSlideIn 0.3s ease forwards;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #008080, #20b2aa);
    color: #ffffff;
    padding: 25px;
    text-align: center;
    position: relative;
}

.modal-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 30px 25px;
    text-align: center;
    line-height: 1.6;
}

.modal-body p {
    margin: 0 0 15px 0;
    color: #333;
}

.modal-body p:first-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: #008080;
}

.modal-body p:last-child {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0;
}

.modal-footer {
    padding: 0 25px 25px 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.modal-btn-primary {
    background: #008080;
    color: #ffffff;
}

.modal-btn-primary:hover {
    background: #20b2aa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.3);
}

.modal-btn-secondary {
    background: transparent;
    color: #008080;
    border: 2px solid #008080;
}

.modal-btn-secondary:hover {
    background: #008080;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Modal Responsive */
@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .modal-body {
        padding: 20px 15px;
    }
    
    .modal-footer {
        padding: 0 15px 20px 15px;
        flex-direction: column;
    }
    
    .modal-btn {
        width: 100%;
    }
}

/* ===== Products Section ===== */
.lp-products {
    padding: 30px 0;
    background: linear-gradient(135deg, #e0f7f7 0%, #b3e5e5 50%, #cce7e7 100%);
    text-align: center;
}

.lp-products h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.lp-products .lp-sub {
    font-size: 0.9rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 20px auto;
    line-height: 1.4;
}

.lp-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.lp-product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eef1f4;
}

.lp-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.15);
}

.product-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid #eef1f4;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    padding: 10px;
}

.lp-product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 12px;
}

.product-category {
    font-size: 0.8rem;
    color: #008080;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-info h4 {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
    height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    font-size: 1.1rem;
    color: #008080;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-btn {
    display: inline-block;
    width: 100%;
    padding: 8px;
    background: #008080;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.product-btn:hover {
    background: #20b2aa;
    transform: translateY(-1px);
}

.product-cta {
    text-align: center;
    margin-top: 15px;
}

/* Product Section Responsive */
@media (max-width: 768px) {
    .lp-products {
        padding: 25px 0;
    }
    
    .lp-product-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        margin: 40px 0;
        padding: 0 20px 20px 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .lp-product-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-image img {
        padding: 8px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-info h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
        height: 2.4em;
    }
    
    .product-price {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .product-btn {
        padding: 8px;
        font-size: 0.8rem;
    }
    
    .product-category {
        font-size: 0.7rem;
        margin-bottom: 5px;
    }
    
    /* Scrollbar styling */
    .lp-product-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .lp-product-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .lp-product-grid::-webkit-scrollbar-thumb {
        background: #008080;
        border-radius: 10px;
    }
    
    .lp-product-grid::-webkit-scrollbar-thumb:hover {
        background: #20b2aa;
    }
}

@media (max-width: 480px) {
    .lp-product-grid {
        padding: 0 15px 15px 15px;
        gap: 12px;
    }
    
    .lp-product-card {
        flex: 0 0 250px;
    }
    
    .product-image {
        height: 160px;
    }
    
    .product-image img {
        padding: 6px;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-info h4 {
        font-size: 0.85rem;
        height: 2.2em;
    }
    
    .product-price {
        font-size: 1rem;
    }
    
    .product-btn {
        padding: 6px;
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .lp-product-grid {
        padding: 0 10px 10px 10px;
        gap: 10px;
    }
    
    .lp-product-card {
        flex: 0 0 220px;
    }
    
    .product-image {
        height: 140px;
    }
    
    .product-image img {
        padding: 5px;
    }
    
    .product-info {
        padding: 8px;
    }
    
    .product-info h4 {
        font-size: 0.8rem;
        height: 2em;
    }
    
    .product-price {
        font-size: 0.95rem;
    }
}

/* Quick Links Footer Styling */
.footer-section ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #28a745;
    transform: translateX(5px);
}