/* Reset and base styles */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #64748b;
    --accent: #f59e0b;
    --background: #ffffff;
    --surface: #f8fafc;
    --text: #1e293b;
    --text-light: #64748b;
    --border: #e2e8f0;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    font-size: 13px; /* Smaller base font size */
}

/* Announcement Bar - Horizontal Scroll */
.announcement-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 8px 0; /* Smaller padding */
    font-size: 11px; /* Smaller font */
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.announcement-container {
    display: flex;
    width: max-content;
    animation: smoothScroll 25s linear infinite;
}

.announcement-text {
    padding: 0 30px; /* Smaller padding */
    white-space: nowrap;
    flex-shrink: 0;
}

.announcement-bar:hover .announcement-container {
    animation-play-state: paused;
}

@keyframes smoothScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px; /* Smaller padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px; /* Smaller height */
}

.logo {
    font-size: 22px; /* Smaller font */
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px; /* Smaller gap */
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 13px; /* Smaller font */
    padding: 6px 12px; /* Smaller padding */
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 80%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px; /* Smaller gap */
}

.cart-icon {
    position: relative;
    background: var(--primary);
    color: white;
    padding: 8px 16px; /* Smaller padding */
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px; /* Smaller gap */
    font-size: 13px; /* Smaller font */
}

.cart-icon:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cart-count {
    background: var(--accent);
    color: white;
    border-radius: 50%;
    width: 18px; /* Smaller */
    height: 18px; /* Smaller */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px; /* Smaller font */
    font-weight: bold;
}

.search-container {
    position: relative;
    width: 280px; /* Smaller width */
}

.search-input {
    width: 100%;
    padding: 10px 40px 10px 16px; /* Smaller padding */
    border: 2px solid var(--border);
    border-radius: 50px;
    outline: none;
    font-size: 13px; /* Smaller font */
    background: var(--surface);
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-input::placeholder {
    color: var(--text-light);
    font-size: 13px; /* Smaller font */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 80px 20px; /* Smaller padding */
    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 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem; /* Smaller font */
    font-weight: 800;
    margin-bottom: 16px; /* Smaller margin */
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1rem; /* Smaller font */
    margin-bottom: 30px; /* Smaller margin */
    opacity: 0.9;
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Smaller gap */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    color: white;
    padding: 12px 32px; /* Smaller padding */
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px; /* Smaller font */
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Shop Section */
.shop-section {
    max-width: 1400px;
    margin: 60px auto; /* Smaller margin */
    padding: 0 20px; /* Smaller padding */
}

.section-title {
    text-align: center;
    margin-bottom: 40px; /* Smaller margin */
    font-size: 2rem; /* Smaller font */
    font-weight: 800;
    color: var(--text);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px; /* Smaller */
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* Smaller */
    height: 3px; /* Smaller */
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Smaller minmax */
    gap: 24px; /* Smaller gap */
}

.product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px; /* Smaller */
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.product-card:hover {
    transform: translateY(-6px); /* Smaller transform */
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.25);
}

.product-image {
    width: 100%;
    height: 220px; /* Smaller height */
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 20px; /* Smaller padding */
}

.product-name {
    font-size: 1.1rem; /* Smaller font */
    font-weight: 700;
    margin-bottom: 8px; /* Smaller margin */
    color: var(--text);
}

.product-description {
    color: var(--text-light);
    margin-bottom: 12px; /* Smaller margin */
    font-size: 0.85rem; /* Smaller font */
    line-height: 1.5;
}

.product-price {
    font-size: 1.2rem; /* Smaller font */
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px; /* Smaller margin */
}

.add-to-cart {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 12px; /* Smaller padding */
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 700;
    font-size: 13px; /* Smaller font */
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* Smaller gap */
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3); /* Smaller shadow */
}

/* Cart Styles */
.cart-section {
    max-width: 1200px;
    margin: 40px auto; /* Smaller margin */
    padding: 0 20px; /* Smaller padding */
}

.cart-container {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.cart-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 20px; /* Smaller padding */
    text-align: center;
}

.cart-header h1 {
    font-size: 1.5rem; /* Smaller font */
    font-weight: 700;
}

.cart-items {
    padding: 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto; /* Smaller image */
    gap: 16px; /* Smaller gap */
    align-items: center;
    padding: 20px; /* Smaller padding */
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.cart-item:hover {
    background: var(--surface);
}

.cart-item-image {
    width: 70px; /* Smaller */
    height: 70px; /* Smaller */
    object-fit: cover;
    border-radius: 6px; /* Smaller */
}

.cart-item-details h3 {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.95rem; /* Smaller font */
}

.cart-item-details p {
    color: var(--text-light);
    font-size: 0.8rem; /* Smaller font */
}

.cart-item-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem; /* Smaller font */
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px; /* Smaller gap */
    background: var(--surface);
    border-radius: var(--radius);
    padding: 6px; /* Smaller padding */
}

.quantity-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 28px; /* Smaller */
    height: 28px; /* Smaller */
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px; /* Smaller font */
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--primary-dark);
}

.quantity {
    font-weight: 600;
    min-width: 35px; /* Smaller */
    text-align: center;
    font-size: 0.9rem; /* Smaller font */
}

.remove-item {
    background: #ef4444;
    color: white;
    border: none;
    padding: 6px 12px; /* Smaller padding */
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    font-size: 12px; /* Smaller font */
    transition: var(--transition);
}

.remove-item:hover {
    background: #dc2626;
    transform: scale(1.05);
}

.cart-summary {
    padding: 24px; /* Smaller padding */
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px; /* Smaller margin */
    font-size: 0.95rem; /* Smaller font */
}

.summary-row.total {
    font-size: 1.1rem; /* Smaller font */
    font-weight: 800;
    color: var(--primary);
    border-top: 2px solid var(--border);
    padding-top: 12px; /* Smaller padding */
    margin-top: 12px; /* Smaller margin */
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, #f97316 100%);
    color: white;
    border: none;
    padding: 14px; /* Smaller padding */
    border-radius: var(--radius);
    font-size: 0.95rem; /* Smaller font */
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px; /* Smaller margin */
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.3); /* Smaller shadow */
}

.empty-cart {
    text-align: center;
    padding: 60px 20px; /* Smaller padding */
    color: var(--text-light);
}

.empty-cart h2 {
    font-size: 1.5rem; /* Smaller font */
    margin-bottom: 12px; /* Smaller margin */
    color: var(--text);
}

.continue-shopping {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 24px; /* Smaller padding */
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    margin-top: 16px; /* Smaller margin */
    transition: var(--transition);
    font-size: 0.9rem; /* Smaller font */
}

.continue-shopping:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 40px 20px 20px; /* Smaller padding */
    margin-top: 60px; /* Smaller margin */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Smaller minmax */
    gap: 32px; /* Smaller gap */
}

.footer-section h3 {
    margin-bottom: 16px; /* Smaller margin */
    font-size: 1.1rem; /* Smaller font */
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.85rem; /* Smaller font */
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 8px; /* Smaller margin */
    transition: var(--transition);
    padding: 2px 0; /* Smaller padding */
    font-size: 0.85rem; /* Smaller font */
}

.footer-section a:hover {
    color: white;
    transform: translateX(6px); /* Smaller transform */
}

.footer-bottom {
    text-align: center;
    margin-top: 40px; /* Smaller margin */
    padding-top: 20px; /* Smaller padding */
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.8rem; /* Smaller font */
}

/* ================================
   PRODUCT PAGE STYLES
   ================================ */

/* Product Detail Page */
.product-detail-section {
    max-width: 1200px;
    margin: 30px auto; /* Smaller margin */
    padding: 0 20px; /* Smaller padding */
}

.breadcrumb {
    margin-bottom: 20px; /* Smaller margin */
    font-size: 0.8rem; /* Smaller font */
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; /* Smaller gap */
    margin-bottom: 60px; /* Smaller margin */
}

.product-gallery {
    position: relative;
}

.main-image {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-detail-image {
    width: 100%;
    height: 400px; /* Smaller height */
    object-fit: cover;
    transition: var(--transition);
}

.product-detail-image:hover {
    transform: scale(1.02);
}

.product-info-detail {
    padding: 16px 0; /* Smaller padding */
}

.product-title {
    font-size: 1.8rem; /* Smaller font */
    font-weight: 800;
    margin-bottom: 16px; /* Smaller margin */
    color: var(--text);
    line-height: 1.2;
}

.product-price-large {
    font-size: 1.5rem; /* Smaller font */
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px; /* Smaller margin */
}

.product-meta {
    margin: 20px 0; /* Smaller margin */
    padding: 16px; /* Smaller padding */
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.meta-item {
    margin-bottom: 8px; /* Smaller margin */
    display: flex;
    align-items: center;
    font-size: 0.9rem; /* Smaller font */
}

.meta-item:last-child {
    margin-bottom: 0;
}

.meta-item strong {
    min-width: 100px; /* Smaller */
    color: var(--text);
}


.stock-status {
    padding: 3px 8px; /* Smaller padding */
    border-radius: 12px; /* Smaller */
    font-size: 0.75rem; /* Smaller font */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stock-status.in-stock {
    background: #dcfce7;
    color: #166534;
}

.stock-status.out-of-stock {
    background: #fee2e2;
    color: #dc2626;
}

.product-description-detail h3 {
    font-size: 1.1rem; /* Smaller font */
    margin-bottom: 12px; /* Smaller margin */
    color: var(--text);
}

.product-description-detail p {
    line-height: 1.6;
    color: var(--text-light);
    font-size: 0.9rem; /* Smaller font */
}

.product-actions {
    margin: 30px 0; /* Smaller margin */
    padding: 20px; /* Smaller padding */
    background: var(--surface);
    border-radius: var(--radius);
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
}

.quantity-selector {
    margin-bottom: 16px; /* Smaller margin */
}

.quantity-selector label {
    display: block;
    margin-bottom: 8px; /* Smaller margin */
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem; /* Smaller font */
}

.product-actions .quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px; /* Smaller gap */
}

.product-actions .quantity-input {
    width: 80px; /* Smaller */
    padding: 10px; /* Smaller padding */
    border: 2px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    font-weight: 600;
    background: white;
    font-size: 0.9rem; /* Smaller font */
}

.product-actions .quantity-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.product-page-add {
    width: 100%;
    font-size: 0.95rem; /* Smaller font */
    padding: 12px; /* Smaller padding */
    margin-top: 8px; /* Smaller margin */
}

.product-page-add:disabled {
    background: var(--text-light);
    cursor: not-allowed;
}

.product-page-add:disabled:hover {
    transform: none;
    box-shadow: none;
}

.product-features {
    margin-top: 30px; /* Smaller margin */
    padding: 20px; /* Smaller padding */
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.product-features h3 {
    font-size: 1.1rem; /* Smaller font */
    margin-bottom: 16px; /* Smaller margin */
    color: var(--text);
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 8px 0; /* Smaller padding */
    position: relative;
    padding-left: 25px; /* Smaller */
    font-size: 0.9rem; /* Smaller font */
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1rem; /* Smaller font */
    width: 20px; /* Smaller */
    height: 20px; /* Smaller */
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Related Products */
.related-products-section {
    background: var(--surface);
    padding: 60px 20px; /* Smaller padding */
    margin-top: 40px; /* Smaller margin */
}

.related-products-container {
    max-width: 1200px;
    margin: 0 auto;
}

.related-products-container h2 {
    text-align: center;
    font-size: 1.8rem; /* Smaller font */
    font-weight: 800;
    margin-bottom: 40px; /* Smaller margin */
    color: var(--text);
    position: relative;
}

.related-products-container h2::after {
    content: '';
    position: absolute;
    bottom: -8px; /* Smaller */
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* Smaller */
    height: 3px; /* Smaller */
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

/* Product Links */
.product-link {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.product-link:hover {
    color: var(--primary);
}

.product-card .product-link:hover .product-name {
    color: var(--primary);
}

/* Back to shop link */
.back-to-shop {
    display: inline-block;
    color: white;
    text-decoration: none;
    margin-top: 8px; /* Smaller margin */
    font-weight: 600;
    opacity: 0.9;
    transition: var(--transition);
    font-size: 0.9rem; /* Smaller font */
}

.back-to-shop:hover {
    opacity: 1;
    transform: translateX(-4px);
}

/* Active nav link */
.nav-links a.active {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
}

.nav-links a.active::after {
    width: 80%;
}

/* About Section */
.about-section {
    background: white;
    padding: 60px 20px; /* Smaller padding */
    margin-top: 60px; /* Smaller margin */
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-container h2 {
    font-size: 1.8rem; /* Smaller font */
    font-weight: 800;
    margin-bottom: 16px; /* Smaller margin */
    color: var(--text);
}

.about-container p {
    font-size: 0.95rem; /* Smaller font */
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    background: var(--surface);
    padding: 60px 20px; /* Smaller padding */
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-container h2 {
    font-size: 1.8rem; /* Smaller font */
    font-weight: 800;
    margin-bottom: 24px; /* Smaller margin */
    color: var(--text);
}

.contact-container p {
    font-size: 0.95rem; /* Smaller font */
    color: var(--text-light);
    margin-bottom: 12px; /* Smaller margin */
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Smaller gap */
    background: #25D366;
    color: white;
    padding: 12px 24px; /* Smaller padding */
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem; /* Smaller font */
    transition: var(--transition);
    margin-top: 20px; /* Smaller margin */
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.3); /* Smaller shadow */
}

/* Cart Actions */
.cart-actions {
    display: flex;
    gap: 12px; /* Smaller gap */
    margin-top: 16px; /* Smaller margin */
}

.clear-cart {
    background: var(--text-light);
    color: white;
    border: none;
    padding: 10px 16px; /* Smaller padding */
    border-radius: var(--radius);
    cursor: pointer;
    flex: 1;
    font-weight: 600;
    font-size: 0.9rem; /* Smaller font */
    transition: var(--transition);
}

.clear-cart:hover {
    background: #64748b;
    transform: translateY(-2px);
}

/* Empty cart specific styles */
.empty-cart {
    text-align: center;
    padding: 60px 20px; /* Smaller padding */
    color: var(--text-light);
}

.empty-cart h2 {
    font-size: 1.5rem; /* Smaller font */
    margin-bottom: 12px; /* Smaller margin */
    color: var(--text);
}

.empty-cart p {
    font-size: 0.95rem; /* Smaller font */
    margin-bottom: 20px; /* Smaller margin */
}

/* Cart item animations */
.cart-item {
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Item Total in Cart */
.item-total {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem; /* Smaller font */
}

/* Empty Cart Icon */
.empty-cart-icon {
    font-size: 3rem; /* Smaller */
    margin-bottom: 16px; /* Smaller margin */
    opacity: 0.5;
}

/* Mobile Price */
.mobile-price {
    display: none;
    font-weight: 700;
    color: var(--primary);
    margin-top: 6px; /* Smaller margin */
    font-size: 0.95rem; /* Smaller font */
}

/* Loading animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-card {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2rem; /* Smaller font */
    }
    
    .nav-links {
        gap: 16px; /* Smaller gap */
    }
    
    .search-container {
        width: 250px; /* Smaller */
    }
    
    .product-detail {
        gap: 30px; /* Smaller gap */
    }
    
    .product-detail-image {
        height: 350px; /* Smaller */
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 16px; /* Smaller padding */
        gap: 16px; /* Smaller gap */
    }
    
    .nav-links {
        order: 3;
        margin: 16px 0; /* Smaller margin */
    }
    
    .search-container {
        width: 100%;
        order: 2;
    }
    
    .hero {
        padding: 60px 16px; /* Smaller padding */
    }
    
    .hero h1 {
        font-size: 1.8rem; /* Smaller font */
    }
    
    .cart-item {
        grid-template-columns: 70px 1fr; /* Smaller image */
        grid-template-areas: 
            "image details"
            "price price"
            "quantity remove";
        gap: 12px; /* Smaller gap */
    }
    
    .cart-item-image {
        grid-area: image;
    }
    
    .cart-item-details {
        grid-area: details;
    }
    
    .cart-item-price {
        grid-area: price;
    }
    
    .quantity-controls {
        grid-area: quantity;
        justify-self: start;
    }
    
    .remove-item {
        grid-area: remove;
        justify-self: end;
    }
    
    .mobile-price {
        display: block;
    }
    
    .cart-item-price {
        display: none;
    }
    
    /* Product Page Mobile */
    .product-detail {
        grid-template-columns: 1fr;
        gap: 24px; /* Smaller gap */
    }
    
    .product-detail-image {
        height: 250px; /* Smaller */
    }
    
    .product-title {
        font-size: 1.5rem; /* Smaller font */
    }
    
    .product-price-large {
        font-size: 1.3rem; /* Smaller font */
    }
    
    .product-actions {
        padding: 16px; /* Smaller padding */
    }
    
    .meta-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .meta-item strong {
        min-width: auto;
        margin-bottom: 4px; /* Smaller margin */
    }
    
    .about-container h2,
    .contact-container h2,
    .related-products-container h2 {
        font-size: 1.5rem; /* Smaller font */
    }
    
    .about-container p,
    .contact-container p {
        font-size: 0.9rem; /* Smaller font */
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem; /* Smaller font */
    }
    
    .section-title {
        font-size: 1.5rem; /* Smaller font */
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .product-title {
        font-size: 1.3rem; /* Smaller font */
    }
    
    body {
        font-size: 12px; /* Even smaller base font for mobile */
    }
}
/* ================================
   FILTER SECTION STYLES
   ================================ */

.filter-section {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.filter-container {
    max-width: 100%;
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select,
.filter-search {
    padding: 10px 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    background: white;
    transition: var(--transition);
    width: 100%;
}

.filter-select:focus,
.filter-search:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.filter-actions {
    display: flex;
    gap: 10px;
    align-items: end;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border: none;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.apply-filter {
    background: var(--primary);
    color: white;
}

.apply-filter:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.clear-filter {
    background: var(--text-light);
    color: white;
}

.clear-filter:hover {
    background: #64748b;
    transform: translateY(-2px);
}

/* Active Filters */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.active-filters-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.remove-filter {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-left: 4px;
    padding: 2px 6px;
    border-radius: 50%;
    transition: var(--transition);
}

.remove-filter:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Results Count */
.results-count {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 15px;
    text-align: right;
    font-weight: 500;
}

/* No Products State */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.no-products-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.no-products h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text);
}

.no-products p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Product Category Badge */
.product-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.filter-group{
    position: relative;
    z-index: 1; 
}
.filter-group .filter-select{
    appearance: none;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><polygon fill="rgba(0,0,0,0.5)" points="0,0 20,0 10,10"/></svg>') no-repeat right 12px center;
    background-size: 12px;
}
.filter-group .filter-select::-ms-expand {
    display: none;

}
/* Hover effect for filter groups */
.filter-group:hover .filter-select {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.filter-label{
    margin-bottom:8px;
}


/* Responsive Design for Filters */
@media (max-width: 768px) {
    .filter-form {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .filter-actions {
        flex-direction: column;
    }
    
    .filter-btn {
        justify-content: center;
    }
    
    .active-filters {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .active-filters-label {
        margin-bottom: 8px;
    }
    
    .results-count {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .filter-section {
        padding: 16px;
    }
    
    .filter-form {
        gap: 10px;
    }
    
    .active-filter-tag {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}
/* ================================
   ABOUT PAGE STYLES
   ================================ */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(29, 78, 216, 0.9) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    color: white;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.about-hero-content h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mission Section */
.mission-section {
    padding: 60px 0;
    background: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text);
    position: relative;
}

.mission-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.mission-statement {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mission-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--surface) 0%, var(--border) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

/* Values Section */
.values-section {
    padding: 60px 0;
    background: var(--surface);
}

.values-section h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text);
    position: relative;
}

.values-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.value-card {
    background: white;
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.85rem;
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background: white;
}

.team-section h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text);
    position: relative;
}

.team-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.team-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.team-member {
    text-align: center;
    background: var(--surface);
    padding: 30px 20px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.member-image {
    margin-bottom: 20px;
}

.image-placeholder.member {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
}

.team-member h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.8rem;
}

/* Timeline Section */
.timeline-section {
    padding: 60px 0;
    background: var(--surface);
}

.timeline-section h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text);
    position: relative;
}

.timeline-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin: 0 24px;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex: 1;
    border: 1px solid var(--border);
}

.timeline-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.8rem;
}

/* About CTA Section */
.about-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.about-cta h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-cta p {
    font-size: 0.9rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: white;
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid white;
}

.cta-button.primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .mission-grid {
        gap: 40px;
    }
    
    .about-hero-content h1,
    .mission-content h2,
    .values-section h2,
    .team-section h2,
    .timeline-section h2,
    .about-cta h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .about-hero {
        padding: 40px 20px;
    }
    
    .about-hero-content h1,
    .mission-content h2,
    .values-section h2,
    .team-section h2,
    .timeline-section h2,
    .about-cta h2 {
        font-size: 1.4rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
    }
    
    .timeline-year {
        margin: 0 16px 0 0;
        min-width: 60px;
    }
    
    .timeline-content {
        margin-left: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        width: 180px;
    }
    
    .value-card {
        padding: 24px 16px;
    }
    
    .team-member {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    .mission-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero-content h1,
    .mission-content h2,
    .values-section h2,
    .team-section h2,
    .timeline-section h2,
    .about-cta h2 {
        font-size: 1.3rem;
    }
    
    .mission-statement {
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .image-placeholder {
        height: 200px;
    }
    
    .timeline-year {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .timeline-content {
        padding: 16px;
    }
}
/* ================================
   ABOUT PREVIEW SECTION STYLES
   ================================ */

.about-preview-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-preview-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 1000 1000"><polygon fill="rgba(37, 99, 235, 0.02)" points="0,800 800,0 1000,200 200,1000"/></svg>');
}

.about-preview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text);
    position: relative;
}

.about-preview-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.about-preview-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-preview-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
}

.feature-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.about-preview-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-button.primary,
.cta-button.secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid;
}

.cta-button.primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.cta-button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.cta-button.secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* About Preview Visual */
.about-preview-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.visual-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.visual-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.placeholder-content {
    position: relative;
    z-index: 1;
}

.placeholder-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.placeholder-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.visual-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-card {
    background: white;
    padding: 20px 15px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-preview-content {
        gap: 40px;
    }
    
    .about-preview-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-preview-section {
        padding: 60px 0;
    }
    
    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-preview-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .about-preview-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-preview-features {
        grid-template-columns: 1fr;
    }
    
    .about-preview-actions {
        justify-content: center;
    }
    
    .visual-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-preview-section {
        padding: 40px 0;
    }
    
    .visual-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .about-preview-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        width: 200px;
        justify-content: center;
    }
    
    .feature-item {
        padding: 10px;
    }
}
/* ================================
   CONTACT SECTION STYLES
   ================================ */

.contact-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-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 1000 1000"><polygon fill="rgba(255,255,255,0.03)" points="0,800 800,0 1000,200 200,1000"/></svg>');
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Contact Info Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.contact-details p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 8px;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: #60a5fa;
}

.chat-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.chat-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Contact Form Styles */
.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.form-header p {
    font-size: 0.9rem;
    color: #94a3b8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group.full-width {
    grid-template-columns: 1fr;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.submit-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 160px;
    justify-content: center;
}

.submit-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    font-size: 0.8rem;
    color: #94a3b8;
    text-align: center;
}

/* Contact CTA */
.contact-cta {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.cta-content p {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        gap: 40px;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-header h2 {
        font-size: 1.8rem;
    }
    
    .form-group {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        padding: 20px;
    }
    
    .contact-form-container {
        padding: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-header h2 {
        font-size: 1.6rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .cta-content {
        padding: 24px 16px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
}
/* ================================
   PAGINATION STYLES
   ================================ */

.pagination-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pagination-info {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.pagination-nav {
    display: flex;
    align-items: center;
}

.pagination {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.pagination-item {
    display: flex;
    align-items: center;
}

.pagination-link,
.pagination-item.disabled span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    background: white;
}

.pagination-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.pagination-item.active .pagination-link.current {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination-item.disabled span {
    background: var(--surface);
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination-link.first,
.pagination-link.last {
    font-weight: 700;
}

.pagination-link.prev,
.pagination-link.next {
    font-size: 1.1rem;
}

/* Items Per Page Selector */
.items-per-page {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.items-per-page-select {
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    font-size: 0.85rem;
    transition: var(--transition);
}

.items-per-page-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Responsive Design for Pagination */
@media (max-width: 768px) {
    .pagination-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .pagination-info {
        order: 1;
    }
    
    .pagination-nav {
        order: 2;
    }
    
    .items-per-page {
        order: 3;
    }
    
    .pagination-link,
    .pagination-item.disabled span {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .pagination {
        gap: 2px;
    }
    
    .pagination-link,
    .pagination-item.disabled span {
        min-width: 32px;
        height: 32px;
        padding: 0 6px;
        font-size: 0.8rem;
    }
    
    .items-per-page {
        flex-direction: column;
        gap: 4px;
    }
    
    .pagination-info {
        font-size: 0.8rem;
    }
}
/* ================================
   CONTACT PAGE STYLES
   ================================ */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(29, 78, 216, 0.9) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Main Section */
.contact-main-section {
    padding: 80px 0;
    background: var(--surface);
}

.contact-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Contact Information Sidebar */
.contact-info-sidebar {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-info-header {
    margin-bottom: 40px;
    text-align: center;
}

.contact-info-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text);
}

.contact-info-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon-large {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.contact-detail-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.contact-detail-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-detail-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-detail-link:hover {
    color: var(--primary-dark);
}

.contact-detail-text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
}

.chat-button-large {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.chat-button-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Business Hours */
.business-hours h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item .day {
    font-weight: 600;
    color: var(--text);
}

.hour-item .time {
    color: var(--text-light);
    font-weight: 500;
}

/* Contact Form Main */
.contact-form-main {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.form-header-main {
    margin-bottom: 30px;
    text-align: center;
}

.form-header-main h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text);
}

.form-header-main p {
    color: var(--text-light);
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group-main {
    display: flex;
    flex-direction: column;
}

.input-group-main.full-width {
    grid-column: 1 / -1;
}

.input-group-main label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.contact-form-main input,
.contact-form-main select,
.contact-form-main textarea {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: white;
    font-size: 0.95rem;
    transition: var(--transition);
    width: 100%;
}

.contact-form-main input:focus,
.contact-form-main select:focus,
.contact-form-main textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form-main textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.submit-button-main {
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    justify-content: center;
}

.submit-button-main:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.submit-button-main:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-note-main {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

/* Form Messages */
.form-success {
    text-align: center;
    padding: 40px 20px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius);
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.form-success p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1rem;
}

.form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.error-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* FAQ Section */
.contact-faq-section {
    padding: 80px 0;
    background: white;
}

.contact-faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.contact-faq-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--text);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    text-align: left;
    padding: 30px;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        gap: 40px;
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 20px;
    }
    
    .contact-main-section {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-sidebar,
    .contact-form-main {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-faq-container h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 40px 20px;
    }
    
    .contact-main-section {
        padding: 40px 0;
    }
    
    .contact-info-sidebar,
    .contact-form-main {
        padding: 20px;
    }
    
    .contact-method-detail {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .contact-icon-large {
        align-self: center;
    }
    
    .hour-item {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .contact-faq-container h2 {
        font-size: 1.8rem;
    }
}