/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


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




body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

.faq-section {
    min-height: 35rem;
    background-image: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/image-OXKw1gFtMLrbLDVdsEpT0RlvQ6w4Jw.png');
    background-size: cover;
    background-position: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.faq-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 350px;
    width: 100%;
}

.faq-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-card {
        padding: 2rem;
        margin: 1rem;
    }

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

    .faq-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 1rem;
    }

    .faq-card {
        padding: 1.5rem;
    }

    .faq-title {
        font-size: 1.75rem;
    }
}

/* Header Styles */
.header {
    background: linear-gradient(to right, #f8fafc, #f1f5f9);
    border-bottom: 1px solid #e2e8f0;
}

.top-header {
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 0;
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-badge {
    background: #3DCDFF;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.social-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #3DCDFF;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.cart-count {
    background: #3DCDFF;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
}

#header-cart-btn .icon {
    color: #3DCDFF !important;

}

.cart-toggle-btn {
    border: none !important;
    background: none !important;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #6b7280;
}

.menu-btn:hover {
    color: #3DCDFF;
}

/* Main Navigation */
.main-nav {
    padding: 16px 0;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3DCDFF;
}

.nav-item-with-badge {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hot-badge {
    background: #3DCDFF;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    text-transform: uppercase;
}

.help-line {
    display: flex;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
}

/* Discount Banner */
.discount-banner {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 0;
}

.discount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    text-align: center;
}

.discount-item h5 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.discount-item p {
    font-size: 12px;
    color: #3DCDFF;
}

/* Breadcrumb */
.breadcrumb-section {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #3DCDFF;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3DCDFF;
    text-decoration: none;
    font-size: 14px;
}

.back-home:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: 64px 0;
}

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

.section-header h1 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #1f2937;
}

.section-header p {
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

/* Contact Info */
.contact-card {
    background: #f8fafc;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #3DCDFF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.contact-details p {
    color: #6b7280;
    line-height: 1.6;
}

/* Contact Form */
.form-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 24px;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.form-header p {
    color: #6b7280;
}

.contact-form {
    display: flex;
    flex-direction: column;

}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group label {
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3DCDFF;
}

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

.submit-btn {
    background: #3DCDFF;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #3DCDFF;
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 64px 0;
    background: #f8fafc;
}

.map-section .section-header h2 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1f2937;
}



.map-placeholder {
    height: 400px;
    background: #e5e7eb;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-align: center;
}

.map-placeholder i {
    font-size: 48px;
    margin-bottom: 16px;
}

.map-placeholder p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.map-placeholder small {
    font-size: 14px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 64px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 32px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
}

.copyright {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3DCDFF;
}

.footer-section h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #4b5563;
    border-radius: 8px 0 0 8px;
    background: #374151;
    color: white;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form button {
    background: #3DCDFF;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #3DCDFF;
}

.footer-bottom {
    border-top: 1px solid #4b5563;
    padding-top: 32px;
    text-align: center;
}

.footer-bottom .social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-bottom .social-links a {
    color: #9ca3af;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-bottom .social-links a:hover {
    color: #3DCDFF;
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.1);
}

.side-menu.active {
    right: 0;
}

.side-menu-content {
    padding: 24px;
    height: 100%;
    overflow-y: auto;
}

.side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.side-menu-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
}

.close-btn:hover {
    color: #3DCDFF;
}

.nav-category {
    margin-bottom: 24px;
}

.nav-category h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.nav-category ul {
    list-style: none;
    padding-left: 16px;
}

.nav-category ul li {
    margin-bottom: 8px;
}

.nav-category ul a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-category ul a:hover {
    color: #3DCDFF;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .top-header-content {
        flex-direction: column;
        gap: 16px;
    }

    .header-left {
        flex-direction: column;
        gap: 12px;
    }

    .social-links {
        display: none;
    }

    .navigation {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        display: none;
    }

    .discount-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-form input,
    .newsletter-form button {
        border-radius: 8px;
    }

    .section-header h1 {
        font-size: 28px;
    }

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

    .contact-icon {
        margin: 0 auto;
    }

    .contact-details {
        width: 100%;
        text-align: center;
    }

    iframe {
        width: 100%;

        border: none;
    }
}

@media (max-width: 480px) {

    .contact-card,
    .form-card {
        padding: 20px;
    }

    .section-header h1 {
        font-size: 24px;
    }

    .map-placeholder {
        height: 300px;
    }

    .map-placeholder i {
        font-size: 36px;
    }

    .contact-details {
        width: 100%;
        text-align: center;
    }

    iframe {
        width: 100%;

        border: none;
    }
}

.faq-container {
    max-width: 80%;
    margin: 91px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #3DCDFF;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-item input {
    display: none;
}

.faq-item label {
    display: block;
    font-weight: bold;
    padding: 15px;
    cursor: pointer;
    position: relative;
    color: #444;
}

.faq-item label::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-item input:checked+label::after {
    content: "-";
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
    background: #fafafa;
}

.faq-item input:checked~.faq-content {
    max-height: 200px;
    padding: 15px;
}