/* EtSepeti - Turkish Products Store Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #C41E3A;
    --primary-dark: #9E1830;
    --secondary: #D4A574;
    --accent: #1E5631;
    --background: #FDF8F3;
    --text: #2C1810;
    --text-light: #6B5B4F;
    --card-bg: #FFFFFF;
    --border: #E8DED4;
    --success: #22C55E;
}

/* Icon Sizes - Lucide Icons */
.icon-xs { width: 14px; height: 14px; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 18px; height: 18px; }
.icon-lg { width: 20px; height: 20px; }
.icon-xl { width: 24px; height: 24px; }
.icon-xxl { width: 32px; height: 32px; }
.icon-huge { width: 64px; height: 64px; }
.icon-filled { fill: currentColor; }

/* Utility Classes */
.text-muted { color: var(--text-light); }
.text-small { font-size: 12px; }
.text-medium { font-size: 13px; }
.mt-15 { margin-top: 15px; }
.mb-10 { margin-bottom: 10px; }
.opacity-80 { opacity: 0.8; }

/* Flex utilities */
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-8 { gap: 8px; }
.gap-10 { gap: 10px; }
.gap-12 { gap: 12px; }

/* Cart Payment Info */
.cart-payment-info {
    text-align: center;
}

.cart-payment-info p {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.cart-payment-logos {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

/* Order Payment Info */
.order-payment-logos {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

/* Footer info text */
.footer-info-text {
    margin-top: 15px;
    font-size: 12px;
    opacity: 0.8;
}

.footer-schedule {
    margin-top: 15px;
}

.footer-links {
    margin-top: 5px;
}

/* Search button compact */
.add-to-cart-compact {
    padding: 8px 16px;
    font-size: 12px;
}

/* Checkout form elements */
.checkout-form h2:first-child {
    margin-top: 0;
}

/* Payment icons with color */
.icon-success {
    color: #7AB72B;
}

/* Legal text */
.legal-notice {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.legal-notice a,
.link-primary {
    color: var(--primary);
}

/* Delivery note */
.delivery-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 15px;
}

/* Payment info in order summary */
.order-payment-note {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

/* Contact box margin */
.content-box-spaced {
    margin-top: 40px;
}

/* Info box highlight */
.info-box-highlight {
    margin-top: 30px;
    padding: 20px;
    background: rgba(196, 30, 58, 0.05);
    border-radius: 10px;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
    background: rgba(0,0,0,0.1);
    padding: 8px 0;
    font-size: 13px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-top a:hover {
    color: white;
}

.header-main {
    padding: 16px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.logo-text span {
    color: var(--secondary);
}

.logo-subtitle {
    font-size: 12px;
    opacity: 0.9;
    margin-top: -4px;
}

.cart-btn {
    background: white;
    color: var(--primary);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cart-count {
    background: var(--primary);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Navigation */
.nav {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-list li a {
    display: block;
    padding: 16px 24px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-list li a:hover,
.nav-list li a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: rgba(196, 30, 58, 0.05);
}

/* Hero Banner */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #C4956A 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Header (for inner pages) */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #C4956A 100%);
    padding: 40px 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 16px;
    opacity: 0.9;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 0;
    background: white;
    border-bottom: 1px solid var(--border);
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    font-size: 14px;
}

.breadcrumbs-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumbs-list li a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.breadcrumbs-list li a:hover {
    color: var(--primary);
}

.breadcrumbs-list li span {
    color: var(--text);
    font-weight: 500;
}

.breadcrumbs-list li::after {
    content: '/';
    color: var(--border);
}

.breadcrumbs-list li:last-child::after {
    content: '';
}

/* Main Content */
.main {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    color: var(--text);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-light);
    font-size: 16px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #f5f0eb;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-category a {
    color: var(--primary);
    text-decoration: none;
}

.product-category a:hover {
    text-decoration: underline;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.product-name a {
    color: var(--text);
    text-decoration: none;
}

.product-name a:hover {
    color: var(--primary);
}

.product-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.product-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.add-to-cart {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.add-to-cart.added {
    background: var(--success);
}

/* View All Button */
.view-all-section {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: var(--primary);
    color: white;
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--border);
    background: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Features Section */
.features {
    background: white;
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* Content Page Styles */
.content-page {
    padding: 50px 0;
}

.content-page h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--text);
}

.content-page h3 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: var(--text);
}

.content-page p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.content-page ul, .content-page ol {
    margin: 15px 0 15px 30px;
    color: var(--text-light);
}

.content-page li {
    margin-bottom: 8px;
}

.content-box {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text);
}

.contact-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    max-width: 100%;
    height: 100%;
    background: white;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 2001;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
    padding: 5px;
    line-height: 1;
}

.cart-close:hover {
    color: var(--primary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

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

.cart-item-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
}

.cart-item-remove:hover {
    color: var(--primary);
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.cart-empty i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border);
    background: #fafafa;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.cart-total-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.checkout-btn {
    display: flex;
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.checkout-btn:hover {
    background: var(--primary-dark);
}

/* Footer */
.footer {
    background: var(--text);
    color: white;
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    line-height: 2;
    display: block;
}

.footer-section a:hover {
    color: var(--secondary);
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--secondary);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text);
    color: white;
    padding: 16px 28px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3000;
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast i {
    color: var(--success);
}

/* Checkout Form */
.checkout-form {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Order Summary */
.order-summary {
    background: #fafafa;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border);
}

.order-summary h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.order-items {
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.order-item:last-child {
    border-bottom: none;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid var(--border);
    font-size: 20px;
    font-weight: 700;
}

.order-total span:last-child {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .logo-text {
        font-size: 22px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    .nav-list {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 10px;
    }

    .nav-list li a {
        padding: 14px 16px;
        white-space: nowrap;
        font-size: 14px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .category-filter {
        padding: 0 10px;
    }

    .content-box,
    .checkout-form {
        padding: 25px;
    }

    .section-title h2 {
        font-size: 26px;
    }
}

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

    .product-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .add-to-cart {
        width: 100%;
        justify-content: center;
    }
}

/* Logo Image */
.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: contain;
}

/* Testimonials Section */
.testimonials {
    background: var(--background);
    padding: 60px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #FFB800;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 16px;
    color: var(--text);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1500;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.5);
}

/* About Page Styles */
.about-intro {
    background: white;
    border-radius: 16px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
}

.about-intro h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text);
}

.about-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-values {
    margin-top: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.value-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary);
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text);
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-stats {
    margin-top: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Legal Pages Styles */
.legal-content {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
}

.legal-content h2 {
    font-size: 22px;
    margin: 35px 0 15px;
    color: var(--text);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 20px 25px;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.legal-content strong {
    color: var(--text);
}

/* Header Phones */
.header-phones {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-phones a {
    white-space: nowrap;
}

/* Header Search */
.header-search {
    flex: 1;
    max-width: 400px;
    margin: 0 30px;
    position: relative;
}

.search-form {
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    font-size: 14px;
    outline: none;
    background: transparent;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: #C4956A;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-top: 8px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1001;
}

.search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text);
    transition: background 0.2s ease;
    border-bottom: 1px solid var(--border);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f5f5f5;
}

.search-result-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.search-result-price {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: var(--text-light);
}

/* Footer Payment Section */
.footer-payment {
    text-align: center;
    padding: 25px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-icons img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.payment-icons img:hover {
    opacity: 1;
}

/* Payment Security Badge */
.payment-security {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 30px;
    padding: 12px 16px;
    background: rgba(122, 183, 43, 0.1);
    border-radius: 8px;
}

.payment-security i {
    color: #7AB72B;
}

.payment-method-icons {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.payment-method-icons img {
    height: 20px;
}

/* LiqPay Button */
.liqpay-btn {
    background: #7AB72B;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.liqpay-btn:hover {
    background: #6aa024;
    transform: translateY(-2px);
}

.liqpay-btn img {
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Checkout Grid */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.order-payment-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

/* Responsive for new components */
@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .order-summary {
        order: -1;
    }
}

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

    .about-intro {
        padding: 30px;
    }

    .legal-content {
        padding: 30px;
    }

    .stat-number {
        font-size: 32px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .header-phones {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }

    .payment-icons {
        gap: 15px;
    }

    .header-search {
        display: none;
    }

    .header-main .container {
        flex-wrap: wrap;
        gap: 15px;
    }

    /* Mobile search under header */
    .mobile-search {
        display: block;
        padding: 10px 15px;
        background: #f5f5f5;
    }

    .mobile-search .search-form {
        max-width: 100%;
    }

    /* Payment methods mobile */
    .payment-method {
        padding: 14px 16px;
    }

    .payment-method-content {
        flex-wrap: wrap;
        gap: 8px;
    }

    .payment-method-content span {
        font-size: 14px;
    }
}

/* Mobile Search Bar */
.mobile-search {
    display: none;
}

/* Payment Methods Enhanced Styles */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.payment-method:hover {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.1);
}

.payment-method:has(input:checked) {
    border-color: var(--primary);
    background: rgba(196, 30, 58, 0.03);
    box-shadow: 0 2px 12px rgba(196, 30, 58, 0.15);
}

.payment-method input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
    margin: 0;
}

.payment-method-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.payment-method-content img {
    height: 24px;
    flex-shrink: 0;
}

.payment-method-content i {
    flex-shrink: 0;
}

.payment-method-content span {
    font-weight: 500;
    font-size: 15px;
    color: var(--text);
}
