/* Updated CSS - Assets/styles/style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #2a2a2a;
    --accent-color: #4ecdc4;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

span.primary {
    color: var(--primary-color);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5em 2em;
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5em;
    margin-left: 2em;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1em;
    position: relative;
    padding: 0.5em 0;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5em;
}

.carticon {
    position: relative;
    cursor: pointer;
    font-size: 1.5em;
    color: var(--dark-color);
    transition: var(--transition);
}

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

.carticon::after {
    content: attr(data-count);
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7em;
    padding: 0.2em 0.6em;
    border-radius: 50%;
    font-weight: bold;
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    background-color: white;
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 1.5em;
    display: none;
    z-index: 100;
}

.carticon:hover .cart-dropdown {
    display: block;
}

.cart-dropdown h3 {
    margin-bottom: 1em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid var(--light-gray);
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1em;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8em 0;
    border-bottom: 1px solid var(--light-gray);
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-details {
    flex-grow: 1;
    margin-left: 1em;
}

.cart-item-details h4 {
    font-size: 1em;
    margin-bottom: 0.3em;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.cart-item-controls button {
    background-color: var(--light-gray);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-controls button:hover {
    background-color: var(--primary-color);
    color: white;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1em;
    border-top: 2px solid var(--light-gray);
}

.cart-total p {
    font-weight: bold;
    font-size: 1.2em;
}

.checkout-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.7em 1.5em;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.checkout-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    background-color: white;
    box-shadow: var(--shadow);
    z-index: 2000;
    transition: var(--transition);
    padding: 2em;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2em;
    padding-bottom: 1em;
    border-bottom: 2px solid var(--light-gray);
}

.close-menu {
    font-size: 2em;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 1.5em;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-size: 1.2em;
    font-weight: 600;
}

/* Hero Section */
.introduction {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4em 2em;
    background: linear-gradient(to right, white 60%, #fff8f5 40%);
}

.intro-content {
    flex: 1;
    padding-right: 3em;
}

.intro-content h1 {
    font-size: 3.5em;
    margin-bottom: 0.5em;
    line-height: 1.2;
}

.intro-content h1 span {
    color: var(--primary-color);
}

.intro-content p {
    margin-bottom: 1.5em;
    color: var(--gray-color);
    font-size: 1.1em;
}

.cta-button {
    padding: 1em 2.5em;
    border: none;
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    font-size: 1.1em;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.introduction img {
    flex: 1;
    max-width: 50%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Partnership Brands */
.partnership {
    padding: 2em;
    background-color: var(--light-color);
    text-align: center;
}

.partnership-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3em;
    margin-top: 1em;
}

.partnership-content h2 {
    font-size: 1.8em;
    color: var(--gray-color);
    display: flex;
    align-items: center;
    gap: 0.5em;
    transition: var(--transition);
}

.partnership-content h2:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.partnership-content h2 i {
    font-size: 1.5em;
}

/* Featured Products */
.featured-products {
    padding: 4em 2em;
    text-align: center;
}

.featured-products h2 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.section-subtitle {
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto 3em;
    font-size: 1.1em;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2em;
    margin-bottom: 3em;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 1.5em;
    text-align: left;
}

.product-info h3 {
    margin-bottom: 0.5em;
    font-size: 1.3em;
}

.product-price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 1em;
}

.product-rating {
    color: #ffc107;
    margin-bottom: 1em;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.8em;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
}

.add-to-cart-btn:hover {
    background-color: var(--primary-color);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.3em 0.8em;
    border-radius: 3px;
    font-size: 0.8em;
    font-weight: bold;
}

.view-all-btn {
    padding: 1em 3em;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1em;
}

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

/* Descriptive Sections */
.descriptive {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4em 2em;
    gap: 4em;
}

.descriptive-reverse {
    flex-direction: row-reverse;
}

.descriptive-content {
    flex: 1;
}

.descriptive-content h2 {
    font-size: 2.8em;
    margin-bottom: 0.8em;
    line-height: 1.2;
}

.descriptive-content p {
    margin-bottom: 1.5em;
    color: var(--gray-color);
    font-size: 1.1em;
}

.descriptive img {
    flex: 1;
    max-width: 45%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.feature-list {
    margin: 2em 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-bottom: 1em;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.2em;
}

.stats {
    display: flex;
    gap: 2em;
    margin: 2em 0;
}

.stat h3 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 0.2em;
}

.stat p {
    font-size: 1em;
    color: var(--gray-color);
}

.delivery-info {
    display: flex;
    gap: 2em;
    margin: 2em 0;
}

.delivery-option {
    text-align: center;
    flex: 1;
    padding: 1.5em;
    background-color: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
}

.delivery-option:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.delivery-option i {
    font-size: 2em;
    margin-bottom: 0.5em;
}

/* Testimonials */
.testimonials {
    padding: 4em 2em;
    text-align: center;
    background-color: var(--light-color);
}

.testimonial-slider {
    max-width: 800px;
    margin: 3em auto 0;
    position: relative;
}

.slider-container {
    overflow: hidden;
    border-radius: 10px;
}

.testimonial-slide {
    background-color: white;
    padding: 2.5em;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: left;
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content {
    font-size: 1.1em;
    font-style: italic;
    margin-bottom: 1.5em;
    color: var(--gray-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1em;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.3em;
}

.author-info p {
    color: var(--gray-color);
    font-size: 0.9em;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    margin-top: 2em;
}

.slider-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2em;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.8em;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* Newsletter */
.newsletter {
    padding: 4em 2em;
    text-align: center;
    background: linear-gradient(to right, var(--primary-color), #ff8c5a);
    color: white;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.newsletter p {
    margin-bottom: 2em;
    font-size: 1.1em;
}

#newsletter-form {
    display: flex;
    gap: 1em;
    max-width: 500px;
    margin: 0 auto;
}

#newsletter-form input {
    flex: 1;
    padding: 1em;
    border: none;
    border-radius: 5px;
    font-size: 1em;
}

#newsletter-form button {
    padding: 1em 2em;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

#newsletter-form button:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

.privacy-note {
    margin-top: 1em;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3em 2em 1em;
}

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

.footer-section h4 {
    font-size: 1.3em;
    margin-bottom: 1.5em;
    color: var(--light-color);
}

.footer-section p {
    margin-bottom: 1em;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8em;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1em;
    margin-top: 1.5em;
}

.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%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    font-size: 0.9em;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    display: none;
}

.modal.active {
    display: flex !important;
}

.modal-content {
    background-color: white;
    padding: 2.5em;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    margin: auto;
}

.product-modal-content {
    max-width: 600px;
    padding: 1.3em;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8em;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
}

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

.modal h2 {
    margin-bottom: 1.5em;
    text-align: center;
}

.product-modal-content {
    max-width: 950px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-modal-body {
    display: flex;
    gap: 1.3em;
}

.product-modal-image-wrapper {
    flex: 1;
    position: relative;
}

.product-modal-image-container {
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    padding: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    overflow: hidden;
}

.product-modal-img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.product-modal-image-container:hover .product-modal-img {
    transform: scale(1.05);
}

.wishlist-btn {
    position: absolute;
    top: 1.5em;
    right: 1.5em;
    width: 45px;
    height: 45px;
    background-color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3em;
    color: #999;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.wishlist-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.wishlist-btn.active {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
}

.product-modal-details {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.product-modal-header {
    margin-bottom: 1.2em;
}

.product-category {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.6em;
    display: inline-block;
    background-color: rgba(255, 107, 53, 0.1);
    padding: 0.4em 0.8em;
    border-radius: 20px;
    width: fit-content;
}

.product-modal-details h2 {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
    margin-bottom: 0.8em;
}

.product-rating-section {
    display: flex;
    align-items: center;
    gap: 1.2em;
    margin-bottom: 1.5em;
    padding-bottom: 1.5em;
    border-bottom: 2px solid var(--light-gray);
    flex-wrap: wrap;
}

.product-rating-section .product-rating {
    display: flex;
    align-items: center;
    gap: 0.4em;
}

.product-rating i {
    color: #ffc107;
    font-size: 1.1em;
}

.rating-value {
    font-weight: 700;
    color: var(--dark-color);
    margin-left: 0.3em;
}

.review-count {
    color: var(--gray-color);
    font-size: 0.95em;
}

.rating-divider {
    color: var(--light-gray);
}

.product-status {
    background-color: #d4edda;
    color: #155724;
    padding: 0.3em 0.8em;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
}

.product-price-section {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-bottom: 1.5em;
}

.product-modal-price {
    font-size: 2em;
    color: var(--primary-color);
    font-weight: 800;
}

.price-badge {
    background-color: #ffeaa7;
    color: #d63031;
    padding: 0.4em 0.9em;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: 600;
}

.product-modal-description {
    font-size: 1em;
    margin-bottom: 1.5em;
    color: var(--gray-color);
    line-height: 1.8;
}

.product-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
    margin-bottom: 1.8em;
    padding: 1.2em;
    background-color: var(--light-color);
    border-radius: 10px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8em;
    color: var(--secondary-color);
    font-size: 0.95em;
    font-weight: 500;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2em;
    flex-shrink: 0;
}

.product-specs {
    background-color: var(--light-color);
    padding: 1.5em;
    border-radius: 10px;
    margin-bottom: 2em;
    border-left: 4px solid var(--primary-color);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9em 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.spec-label {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95em;
}

.spec-value {
    color: var(--gray-color);
    font-size: 0.95em;
}

.spec-value.in-stock {
    color: #28a745;
    font-weight: 700;
}

.quantity-section {
    margin-bottom: 2em;
}

.quantity-section label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.8em;
    color: var(--secondary-color);
    font-size: 0.95em;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1.2em;
    background-color: var(--light-color);
    padding: 0.9em 1.3em;
    border-radius: 10px;
    width: fit-content;
    border: 2px solid transparent;
    transition: var(--transition);
}

.quantity-selector:hover {
    border-color: var(--primary-color);
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    background-color: white;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--secondary-color);
    font-weight: 600;
}

.quantity-selector button:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

.quantity-selector button:active {
    transform: scale(0.95);
}

.quantity-selector span {
    font-size: 1.2em;
    font-weight: 700;
    min-width: 35px;
    text-align: center;
    color: var(--secondary-color);
}

.modal-actions {
    display: flex;
    gap: 1.2em;
    margin-bottom: 1.5em;
}

.modal-add-to-cart,
.modal-buy-now {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6em;
    padding: 1.2em;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-add-to-cart {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.modal-add-to-cart:hover {
    background-color: #ff5722;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.modal-add-to-cart:active {
    transform: translateY(-1px);
}

.modal-buy-now {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    color: white;
}

.modal-buy-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 42, 42, 0.3);
}

.modal-buy-now:active {
    transform: translateY(-1px);
}

.product-trust-badges {
    display: flex;
    gap: 2em;
    padding-top: 1.2em;
    border-top: 1px solid var(--light-gray);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.6em;
    color: var(--gray-color);
    font-size: 0.9em;
    flex: 1;
}

.trust-badge i {
    color: var(--primary-color);
    font-size: 1.3em;
}

.product-modal-badge {
    position: absolute;
    top: 1.5em;
    left: 1.5em;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff5722 100%);
    color: white;
    padding: 0.6em 1.2em;
    border-radius: 30px;
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Enhanced Product Modal Styles */
.product-modal-header {
    margin-bottom: 1.5em;
}

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

.product-modal-details h2 {
    font-size: 2em;
    margin-bottom: 1em;
    color: var(--dark-color);
}

.product-rating-section {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-bottom: 1.5em;
    padding-bottom: 1.5em;
    border-bottom: 2px solid var(--light-gray);
}

.product-rating-section .product-rating {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.product-rating-section .product-rating i {
    color: #ffc107;
    font-size: 1.1em;
}

.rating-value {
    font-weight: bold;
    margin-left: 0.3em;
}

.review-count {
    color: var(--gray-color);
    font-size: 0.9em;
}

.product-specs {
    background-color: var(--light-color);
    padding: 1.5em;
    border-radius: 8px;
    margin-bottom: 2em;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8em 0;
    border-bottom: 1px solid var(--light-gray);
}

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

.spec-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.spec-value {
    color: var(--gray-color);
}

.spec-value.in-stock {
    color: #28a745;
    font-weight: 600;
}

.quantity-section {
    margin-bottom: 2em;
}

.quantity-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.8em;
    color: var(--secondary-color);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1.2em;
    background-color: var(--light-color);
    padding: 0.8em 1.2em;
    border-radius: 8px;
    width: fit-content;
}

.quantity-selector button {
    width: 45px;
    height: 45px;
    background-color: white;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-size: 1.2em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--secondary-color);
}

.quantity-selector button:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

.quantity-selector span {
    font-size: 1.3em;
    font-weight: bold;
    min-width: 40px;
    text-align: center;
    color: var(--secondary-color);
}

.modal-actions {
    display: flex;
    gap: 1.2em;
    flex-wrap: wrap;
}

.modal-add-to-cart,
.modal-buy-now {
    flex: 1;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 1.1em;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.modal-add-to-cart {
    background-color: var(--primary-color);
    color: white;
}

.modal-add-to-cart:hover {
    background-color: #ff5722;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.product-modal-badge {
    position: absolute;
    top: 1em;
    right: 1em;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5em 1em;
    border-radius: 50px;
    font-size: 0.85em;
    font-weight: bold;
}

/* Cart Modal Styles */
.cart-modal-content {
    max-width: 800px;
    width: 95vw;
}

.cart-modal-body {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2em;
    min-height: 300px;
}

.cart-modal-items {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 0.5em;
}

.cart-modal-items::-webkit-scrollbar {
    width: 8px;
}

.cart-modal-items::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

.cart-modal-items::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.cart-modal-items::-webkit-scrollbar-thumb:hover {
    background: #ff5722;
}

.cart-modal-item {
    display: grid;
    grid-template-columns: 80px 1fr 120px 80px 40px;
    gap: 1.2em;
    align-items: center;
    padding: 1.2em;
    background-color: var(--light-color);
    border-radius: 8px;
    transition: var(--transition);
}

.cart-modal-item:hover {
    background-color: #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h4 {
    font-size: 1em;
    margin-bottom: 0.5em;
    color: var(--secondary-color);
}

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

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.6em;
    background-color: white;
    padding: 0.4em 0.8em;
    border-radius: 6px;
    border: 1px solid var(--light-gray);
}

.qty-btn-minus,
.qty-btn-plus {
    width: 28px;
    height: 28px;
    border: none;
    background-color: transparent;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 0.9em;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn-minus:hover,
.qty-btn-plus:hover {
    color: var(--secondary-color);
    background-color: var(--light-gray);
    border-radius: 4px;
}

.cart-item-quantity span {
    min-width: 25px;
    text-align: center;
    font-weight: 600;
}

.cart-item-total {
    text-align: center;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1em;
}

.cart-item-remove {
    width: 35px;
    height: 35px;
    border: none;
    background-color: #fff3cd;
    color: #ff6b35;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
}

.cart-item-remove:hover {
    background-color: #ff6b35;
    color: white;
}

.empty-cart-message {
    text-align: center;
    color: var(--gray-color);
    padding: 3em 1em;
    font-size: 1.1em;
}

.cart-modal-summary {
    background-color: var(--light-color);
    padding: 2em;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid var(--light-gray);
    color: var(--gray-color);
}

.summary-row.total {
    border-bottom: none;
    padding-bottom: 1.5em;
    margin-bottom: 1.5em;
    font-weight: 600;
    font-size: 1.2em;
    color: var(--secondary-color);
}

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

.cart-modal-checkout-btn,
.cart-modal-continue-btn {
    width: 100%;
    padding: 1em;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 0.8em;
}

.cart-modal-checkout-btn {
    background-color: var(--primary-color);
    color: white;
}

.cart-modal-checkout-btn:hover {
    background-color: #ff5722;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cart-modal-continue-btn {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cart-modal-continue-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    padding: 1em 1.5em;
    border-radius: 5px;
    box-shadow: var(--shadow);
    z-index: 4000;
    display: none;
    animation: toastSlideIn 0.3s ease;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast.show {
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-content h1 {
        font-size: 2.8em;
    }
    
    .descriptive-content h2 {
        font-size: 2.3em;
    }
    
    .featured-products h2 {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .introduction {
        flex-direction: column;
        text-align: center;
        padding: 2em 1em;
    }
    
    .intro-content {
        padding-right: 0;
        margin-bottom: 2em;
    }
    
    .intro-content h1 {
        font-size: 2.3em;
    }
    
    .introduction img {
        max-width: 100%;
    }
    
    .descriptive {
        flex-direction: column;
        padding: 2em 1em;
        text-align: center;
    }
    
    .descriptive-reverse {
        flex-direction: column;
    }
    
    .descriptive img {
        max-width: 100%;
        order: -1;
    }
    
    .descriptive-content h2 {
        font-size: 2em;
    }
    
    .stats, .delivery-info {
        flex-direction: column;
        gap: 1em;
    }
    
    .partnership-content {
        gap: 1.5em;
    }
    
    .partnership-content h2 {
        font-size: 1.5em;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .cart-dropdown {
        width: 300px;
        right: -50px;
    }
    
    .product-modal-image-container {
        min-height: 280px;
        max-height: 320px;
    }
    
    .product-modal-body {
        flex-direction: column;
        gap: 2em;
    }
    
    .product-modal-image-container {
        min-height: 300px;
    }
    
    .product-modal-details h2 {
        font-size: 1.8em;
    }
    
    .modal-actions {
        gap: 0.8em;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    #newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .intro-content h1 {
        font-size: 1.8em;
    }
    
    .featured-products h2, .testimonials h2 {
        font-size: 2em;
    }
    
    .cta-button, .view-all-btn {
        padding: 0.8em 1.5em;
        font-size: 1em;
    }
    
    .product-card {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cart-dropdown {
        width: 280px;
        right: -80px;
    }
    
    /* Modal responsive styles */
    .product-modal-image-container {
        min-height: 220px;
        max-height: 250px;
        padding: 1em;
    }
    
    .modal-content {
        padding: 1.5em;
    }
    
    .product-modal-body {
        flex-direction: column;
        gap: 1.5em;
    }
    
    .product-modal-image-container {
        min-height: 250px;
        padding: 1.5em;
    }
    
    .product-modal-details h2 {
        font-size: 1.4em;
    }
    
    .product-modal-price {
        font-size: 1.7em;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 0.8em;
    }
    
    .modal-add-to-cart,
    .modal-buy-now {
        padding: 1em;
        font-size: 0.95em;
    }
    
    .product-highlights {
        gap: 0.6em;
        padding: 1em;
        margin-bottom: 1.2em;
    }
    
    .product-trust-badges {
        gap: 1em;
        flex-direction: column;
    }
    
    .trust-badge {
        flex: none;
    }
    
    .product-modal-body {
        flex-direction: column;
        gap: 1.5em;
    }
    
    .product-modal-details h2 {
        font-size: 1.5em;
    }
    
    .cart-modal-body {
        grid-template-columns: 1fr;
    }
    
    .cart-modal-summary {
        position: static;
        margin-top: 1.5em;
    }
    
    .cart-modal-item {
        grid-template-columns: 60px 1fr;
        gap: 0.8em;
        padding: 0.8em;
        position: relative;
    }
    
    .cart-item-quantity {
        grid-column: 1 / -1;
        justify-content: space-around;
        margin-top: 0.8em;
    }
    
    .cart-item-total {
        display: none;
    }
    
    .cart-item-remove {
        position: absolute;
        top: 0.5em;
        right: 0.5em;
        width: 28px;
        height: 28px;
        font-size: 0.8em;
    }
    
    .modal-actions {
        gap: 0.8em;
    }
    
    .modal-add-to-cart,
    .modal-buy-now {
        min-width: auto;
        font-size: 0.9em;
        padding: 0.9em;
    }
    
    .quantity-selector {
        gap: 0.8em;
        padding: 0.6em 1em;
    }
    
    .quantity-selector button {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }
}

@media (max-width: 600px) {
    .product-modal-body {
        flex-direction: column;
    }
    
    .cart-modal-body {
        grid-template-columns: 1fr;
    }
    
    .cart-modal-summary {
        position: static;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-add-to-cart,
    .modal-buy-now {
        min-width: unset;
    }
}

/* Phone Number Modal Styles */
.phone-modal-content {
    max-width: 380px;
    width: 88%;
    text-align: center;
}

.phone-modal-subtitle {
    margin: 0.5em 0 1.2em;
    color: var(--gray-color);
    font-size: 0.95em;
}

#phoneForm .form-group {
    margin-bottom: 1em;
    text-align: left;
}

#phoneForm .form-group label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 600;
    font-size: 0.9em;
}

#phoneForm .form-group input {
    width: 100%;
    padding: 0.7em;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1em;
    box-sizing: border-box;
}

#phoneForm .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.phone-submit-btn {
    width: 100%;
    padding: 0.85em;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1em;
}

.phone-submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Delivery Modal Styles */
.delivery-modal-content {
    max-width: 420px;
    width: 88%;
    
}

#deliveryForm .form-group {
    margin-bottom: 1em;
}

#deliveryForm .form-group label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 600;
    font-size: 0.5em;
}

#deliveryForm .form-group input {
    width: 100%;
    padding: 0.65em;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-size: 0.95em;
    box-sizing: border-box;
}

#deliveryForm .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

#deliveryForm .form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.delivery-submit-btn {
    width: 100%;
    padding: 0.85em;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1em;
    margin-top: 0.5em;
}

.delivery-submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}