/* Main Stylesheet for Mawasim Dates Website */

:root {
    --primary-color: #ffffff;
    --secondary-color: #f4b400;
    --text-color: #333333;
    --light-text: #666666;
    --dark-color: #1a1a1a;
    --light-bg: #f9f9f9;
    --border-color: #e0e0e0;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --vip-shadow: 0 10px 30px rgba(244, 180, 0, 0.3);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-order, .btn-whatsapp, .btn-call {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.btn-primary:hover {
    background-color: #e6a300;
    transform: translateY(-3px);
    box-shadow: var(--vip-shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.btn-order {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 10px 25px;
    font-size: 0.85rem;
}

.btn-order:hover {
    background-color: #e6a300;
    transform: translateY(-2px);
    box-shadow: var(--vip-shadow);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-call {
    background-color: var(--dark-color);
    color: white;
}

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

.nav-contact {
    display: flex;
    gap: 10px;
}

.whatsapp-btn, .call-btn {
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.call-btn {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--primary-color);
    margin-top: 70px;
}

.vip-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.vip-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.26);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Product Cards */
.featured-products, .all-products {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--vip-shadow);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}

/* Price Badge */
.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Price Categories */
.price-categories {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-tag {
    display: inline-block;
    background-color: var(--light-bg);
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-color);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.product-origin {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.product-origin i {
    margin-right: 8px;
}

.product-desc {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.text-center {
    text-align: center;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--primary-color);
}

.about-text {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--vip-shadow);
}

.feature i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 10px;
}

.feature p {
    color: var(--light-text);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--primary-color);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--primary-color);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--primary-color);
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

.modal-body {
    padding: 30px;
}

/* Products Page Specific */
.page-hero {
    padding: 150px 0 100px;
    background: linear-gradient(rgba(244, 180, 0, 0.1), rgba(244, 180, 0, 0.05));
    text-align: center;
}

.page-hero h1 {
    color: var(--dark-color);
    margin-bottom: 20px;
}

.page-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--light-text);
}

.category-filters {
    padding: 30px 0;
    background-color: var(--light-bg);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 10px 25px;
    background-color: var(--primary-color);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-color);
}

.products-grid-full {
    display: grid;
    gap: 40px;
}

.product-card-full {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background-color: var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card-full:hover {
    transform: translateY(-5px);
    box-shadow: var(--vip-shadow);
}

.product-image-full {
    position: relative;
    overflow: hidden;
}

.product-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-info-full {
    padding: 30px;
}

.product-info-full h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.product-origin {
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.product-origin i {
    margin-right: 8px;
}

.product-description {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Price Table */
.price-table {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.price-table h4 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.price-table h4 i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.price-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table .price {
    font-weight: 700;
    color: var(--dark-color);
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.spec {
    display: flex;
    align-items: center;
    background-color: var(--light-bg);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
}

.spec i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-order-full {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-order-full:hover {
    background-color: #e6a300;
    transform: translateY(-3px);
    box-shadow: var(--vip-shadow);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.products-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(rgba(244, 180, 0, 0.1), rgba(244, 180, 0, 0.05));
}

.products-cta h2 {
    margin-bottom: 20px;
}

.products-cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

/* Contact Page Specific */
.contact-hero {
    background: linear-gradient(rgba(244, 180, 0, 0.2), rgba(244, 180, 0, 0.1));
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 0;
}

@media (min-width: 992px) {
    .contact-container {
        grid-template-columns: 2fr 1fr;
    }
}

.contact-cards-title {
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 2rem;
}

.contact-cards-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-info {
    display: grid;
    gap: 20px;
}

@media (min-width: 768px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background-color: var(--primary-color);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.vip-card {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, var(--secondary-color), #ffd166) border-box;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--vip-shadow);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--light-text);
    margin-bottom: 20px;
}

.btn-whatsapp-card, .btn-call-card, .btn-email-card {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: var(--transition);
}

.btn-whatsapp-card {
    background-color: #25D366;
    color: white;
}

.btn-call-card {
    background-color: var(--dark-color);
    color: white;
}

.btn-email-card {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.contact-detail {
    font-weight: 600;
    color: var(--dark-color) !important;
}

.delivery-cities {
    list-style: none;
    text-align: left;
    margin-top: 15px;
}

.delivery-cities li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.delivery-cities i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Order Form */
.order-form-container {
    background-color: var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
}

.form-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(45deg, var(--secondary-color), #ffd166);
    color: var(--dark-color);
}

.form-header h2 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-header h2 i {
    margin-right: 10px;
}

.advanced-order-form {
    padding: 30px;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.form-section h3 i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.form-group label i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.1);
}

.order-summary-preview {
    padding: 20px;
    background-color: var(--light-bg);
}

#orderSummary {
    padding: 15px;
    background-color: var(--primary-color);
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-submit {
    text-align: center;
}

.btn-submit-order {
    background: linear-gradient(45deg, var(--secondary-color), #ffd166);
    color: var(--dark-color);
    padding: 15px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 15px;
}

.btn-submit-order:hover {
    transform: translateY(-3px);
    box-shadow: var(--vip-shadow);
}

.form-note {
    font-size: 0.9rem;
    color: var(--light-text);
    max-width: 500px;
    margin: 0 auto;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.reason-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--primary-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--vip-shadow);
}

.reason-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.reason-card h3 {
    margin-bottom: 10px;
}

.reason-card p {
    color: var(--light-text);
}

/* Success Modal */
.success-modal {
    text-align: center;
    padding: 50px 30px;
    max-width: 500px;
}

.success-icon {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 20px;
}

.success-modal h2 {
    margin-bottom: 15px;
}

.success-modal p {
    margin-bottom: 30px;
    color: var(--light-text);
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-card-full {
        grid-template-columns: 1fr;
    }
    
    .product-image-full {
        height: 250px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px;
        border-radius: 5px;
    }
    
    .nav-menu a:hover {
        background-color: rgba(244, 180, 0, 0.1);
    }
    
    .nav-contact {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .whatsapp-btn, .call-btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Why Choose Us Styles */
.why-choose-list {
    background: linear-gradient(135deg, #f8f5f0 0%, #f0e6d6 100%);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    border-right: 5px solid #8B4513;
    border-left: 5px solid #DAA520;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
}

.why-choose-title {
    color: #8B4513;
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px double #DAA520;
    font-weight: 700;
}

.bullet-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bullet-line {
    margin: 0;
    padding: 15px 15px 15px 45px;
    color: #444;
    line-height: 1.7;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #DAA520;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.bullet-line:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
    border-left-color: #8B4513;
}

.bullet-line:before {
    content: "✓";
    position: absolute;
    left: 15px;
    top: 15px;
    color: #DAA520;
    font-weight: bold;
    font-size: 18px;
    background: #fff8e1;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #DAA520;
}

.bullet-line strong {
    color: #8B4513;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 5px;
    font-size: 17px;
}

/* Supply Chain Info */
.supply-chain-info {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    border-radius: 15px;
    padding: 35px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

.info-title {
    color: white;
    font-size: 26px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.info-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #FFD700;
}

.supply-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.supply-item {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.supply-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: #FFD700;
}

.supply-item i {
    font-size: 40px;
    color: #FFD700;
    margin-bottom: 15px;
    display: block;
}

.supply-item h4 {
    color: #FFD700;
    margin-bottom: 12px;
    font-size: 20px;
}

.supply-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

/* Features Grid Update */
.features-grid .feature h3 {
    color: #8B4513;
}

.features-grid .feature p {
    color: #666;
}

/* Keywords Highlight */
.keyword {
    color: #8B4513;
    font-weight: 600;
    background: #fff8e1;
    padding: 2px 6px;
    border-radius: 4px;
    border-bottom: 2px solid #DAA520;
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-list {
        padding: 20px 15px;
    }
    
    .bullet-line {
        padding: 12px 12px 12px 40px;
        font-size: 15px;
    }
    
    .supply-chain-info {
        padding: 25px 15px;
    }
    
    .supply-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-choose-title {
        font-size: 22px;
    }
    
    .info-title {
        font-size: 22px;
    }
}


/* Quick View Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 50px auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    cursor: pointer;
    color: #333;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #DAA520;
    transform: rotate(90deg);
    background: #fff8e1;
}

.modal-body {
    padding: 0;
}

/* Quick View Modal Layout */
.quick-view-modal {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .quick-view-modal {
        flex-direction: row;
    }
}

.quick-view-image {
    flex: 1;
    padding: 30px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quick-view-info {
    flex: 1;
    padding: 30px;
}

.quick-view-info h3 {
    color: #8B4513;
    margin-bottom: 15px;
    font-size: 24px;
}

.modal-origin {
    color: #666;
    margin-bottom: 15px;
    font-size: 16px;
}

.modal-origin i {
    color: #DAA520;
    margin-right: 8px;
}

.modal-description {
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border-left: 4px solid #DAA520;
}

.modal-prices {
    margin: 20px 0;
}

.modal-prices h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.price-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-tag {
    background: #f5f5f5;
    padding: 10px 15px;
    border-radius: 6px;
    border-left: 3px solid #DAA520;
}

.btn-order-modal {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    color: white;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-order-modal:hover {
    background: linear-gradient(135deg, #B8860B 0%, #996515 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.3);
}

/* Responsive */
@media (max-width: 767px) {
    .modal-content {
        margin: 20px auto;
        width: 95%;
        max-height: 90vh;
    }
    
    .quick-view-image {
        padding: 20px;
    }
    
    .quick-view-info {
        padding: 20px;
    }
    
    .modal-image {
        max-height: 200px;
    }
}

