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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header Styles */
.top-bar {
    background-color: #2c3e50;
    color: white;
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-brand {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.logo i {
    font-size: 32px;
    color: #2c3e50;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.tagline {
    font-size: 11px;
    color: #666;
    font-weight: 500;
    letter-spacing: 1px;
    margin-left: 42px;
}

.nav-center {
    flex: 1;
    max-width: 500px;
}

.search-bar {
    display: flex;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

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

.search-btn {
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: #34495e;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart {
    position: relative;
    background-color: #3498db;
    color: white;
    padding: 12px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cart:hover {
    background-color: #2980b9;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.badge {
    background-color: #f39c12;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 14px;
    color: #bdc3c7;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-price {
    display: flex;
    align-items: center;
    gap: 30px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #f39c12;
}

.price sup {
    font-size: 24px;
    vertical-align: top;
}

.cta-btn {
    background-color: #f39c12;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-btn:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.hero-image {
    text-align: center;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: #f39c12;
}
/* Categories Section */
.categories-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.category-card {
    background-color: white;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-icon i {
    font-size: 36px;
    color: white;
}

.category-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.category-card p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-link {
    color: #3498db;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.category-card:hover .category-link {
    gap: 12px;
}

.category-link i {
    font-size: 12px;
}

.hero-badge {
    background-color: #f39c12;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Responsive Design for Categories */
@media (max-width: 1200px) {
    .categories-grid {
        gap: 20px;
    }
    
    .category-card {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: 60px 0;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .category-card {
        padding: 25px 15px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon i {
        font-size: 28px;
    }
    
    .category-card h3 {
        font-size: 18px;
    }
    
    .category-card p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .categories-section {
        padding: 40px 0;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-card {
        padding: 20px 12px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .category-icon i {
        font-size: 24px;
    }
    
    .category-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .category-card p {
        font-size: 12px;
        margin-bottom: 15px;
    }
}


/* Recommended Products Section */
.recommended {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

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

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.product-image {
    width: 100%;
    height: 250px;
    flex-shrink: 0;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shipping-info {
    font-size: 12px;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.product-details {
    flex: 1;
}

.product-actions {
    margin-top: auto;
}

.regular-price {
    font-size: 14px;
    color: #7f8c8d;
    text-decoration: line-through;
}

.sale-price {
    font-size: 18px;
    color: #27ae60;
    font-weight: 700;
}

.tts-price {
    font-size: 18px;
    color: #2c3e50;
    font-weight: 700;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.rating i {
    color: #f39c12;
    font-size: 14px;
}

.review-count {
    font-size: 12px;
    color: #7f8c8d;
    margin-left: 5px;
}

/* Promotions Section */
.promotions {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.promo-card {
    height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
    background-size: cover;
    background-position: center;
    position: relative;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    border-radius: 8px;
}

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-card:hover {
    transform: scale(1.02);
}

.new-arrivals {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.sale-items {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.promo-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.promo-subtitle {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

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

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

.feature i {
    font-size: 48px;
    color: #3498db;
    margin-bottom: 20px;
}

.feature h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ecf0f1;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #34495e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #3498db;
}

.newsletter p {
    margin-bottom: 15px;
    color: #bdc3c7;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    outline: none;
}

.newsletter-form button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #2980b9;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Add to Cart Button */
.add-to-cart-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    width: 100%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

.modal-large {
    max-width: 1000px;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e9ecef;
    background-color: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.modal-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #e74c3c;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    background-color: #f8f9fa;
    border-radius: 0 0 8px 8px;
}

/* Cart Styles */
.cart-items {
    min-height: 200px;
}

.empty-cart {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    padding: 40px 0;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

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

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

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

.cart-item-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #3498db;
    font-weight: 600;
}

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

.quantity-btn {
    background-color: #e9ecef;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.quantity-btn:hover {
    background-color: #dee2e6;
}

.quantity-display {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
}

.remove-item {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.3s;
}

.remove-item:hover {
    background-color: #c0392b;
}

.cart-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
}

.total-final {
    font-size: 18px;
    color: #2c3e50;
    border-top: 1px solid #e9ecef;
    padding-top: 10px;
    margin-top: 10px;
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

/* Product Grid in Modals */
.modal .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.modal .product-card {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .nav-center {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-price {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .price {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .promo-title {
        font-size: 36px;
    }
}
/* Modal Responsive Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        padding: 15px 20px;
        flex-direction: column;
    }
    
    .modal .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cart-item-controls {
        align-self: stretch;
        justify-content: space-between;
    }
}
/* Page Content Styles */
.page-content {
    padding: 80px 0;
    background-color: white;
    min-height: 60vh;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-main {
    max-width: none;
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.content-sidebar {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.sidebar-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}

.sidebar-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.sidebar-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #3498db;
}

/* About Page Styles */
.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}

.mission-list i {
    color: #27ae60;
    font-size: 14px;
}

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

.feature-item {
    text-align: center;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 36px;
    color: #3498db;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

.fact-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.cert-list {
    list-style: none;
    padding: 0;
}

.cert-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.cert-list i {
    color: #f39c12;
    font-size: 12px;
}

/* Contact Page Styles */
.contact-form-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.contact-form {
    max-width: 600px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.contact-info {
    font-size: 14px;
    line-height: 1.6;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-cta {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 50px 0;
    margin-top: 60px;
    border-radius: 8px;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Careers Page Styles */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.benefit-item i {
    font-size: 32px;
    color: #3498db;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

.job-listings {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.job-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.job-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.job-location {
    color: #7f8c8d;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-details {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.job-details p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.job-description {
    margin-bottom: 20px;
}

.job-description p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.job-apply-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.job-apply-btn:hover {
    background-color: #2980b9;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-number {
    background-color: #3498db;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 13px;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.4;
}

.testimonial {
    background-color: white;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 15px;
    border-left: 3px solid #3498db;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
    font-size: 14px;
}

.testimonial cite {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 600;
}

/* Press Page Styles */
.press-release {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #3498db;
}

.press-date {
    color: #7f8c8d;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.press-release h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.press-release p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.read-more:hover {
    color: #2980b9;
}

.news-mentions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.news-source {
    color: #3498db;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.news-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.news-item p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.news-date {
    color: #7f8c8d;
    font-size: 12px;
    font-weight: 600;
}

.media-resources {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.resource-link {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    transition: color 0.3s;
}

.resource-link:hover {
    color: #2980b9;
}

.fact-list,
.awards-list,
.executive-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.award-item,
.executive-item {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .job-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .job-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .content-sidebar {
        position: static;
    }
}

@media (max-width: 480px) {
    .page-content {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .contact-form-section {
        padding: 25px;
    }
    
    .job-card {
        padding: 20px;
    }
    
    .press-release {
        padding: 20px;
    }
}
/* Category Page Styles */
.category-content {
    padding: 80px 0;
    background-color: white;
    min-height: 60vh;
}

.category-header {
    margin-bottom: 40px;
}

.breadcrumb {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    margin: 0 8px;
    font-size: 12px;
}

.category-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.category-subtitle {
    font-size: 16px;
    color: #7f8c8d;
    max-width: 800px;
    line-height: 1.6;
}

.category-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.filter-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-select,
.sort-select {
    padding: 8px 12px;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    background-color: white;
    font-size: 14px;
    color: #2c3e50;
    cursor: pointer;
    transition: border-color 0.3s;
}

.filter-select:focus,
.sort-select:focus {
    outline: none;
    border-color: #3498db;
}

.sort-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-section label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #f39c12;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-badge.sale {
    background-color: #e74c3c;
}

.product-badge.new {
    background-color: #27ae60;
}

.product-brand {
    font-size: 12px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.page-btn {
    background-color: white;
    border: 1px solid #e9ecef;
    color: #2c3e50;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.page-btn:hover {
    background-color: #f8f9fa;
    border-color: #3498db;
}

.page-btn.active {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

/* Category Page Responsive Design */
@media (max-width: 768px) {
    .category-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-section {
        justify-content: center;
    }
    
    .sort-section {
        justify-content: center;
    }
    
    .category-header h1 {
        font-size: 32px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-options {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .category-content {
        padding: 40px 0;
    }
    
    .category-header h1 {
        font-size: 28px;
    }
    
    .category-filters {
        padding: 15px;
    }
    
    .filter-options {
        flex-direction: column;
        width: 100%;
    }
    
    .filter-select,
    .sort-select {
        width: 100%;
    }
}
/* Help Center & Customer Service Page Styles */
.help-search {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.help-search h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.search-box {
    display: flex;
    gap: 10px;
    max-width: 500px;
}

.help-search-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    font-size: 14px;
}

.help-search-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.help-search-btn:hover {
    background-color: #2980b9;
}

.help-categories {
    margin-bottom: 50px;
}

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

.help-category {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.help-category:hover {
    transform: translateY(-3px);
}

.help-icon {
    font-size: 36px;
    color: #3498db;
    margin-bottom: 15px;
}

.help-category h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.help-category p {
    color: #7f8c8d;
    margin-bottom: 15px;
    font-size: 14px;
}

.help-links {
    list-style: none;
    padding: 0;
}

.help-links li {
    margin-bottom: 8px;
}

.help-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.help-links a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.faq-section {
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 16px;
}

.faq-question i {
    color: #7f8c8d;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.contact-option i {
    font-size: 20px;
    color: #3498db;
    margin-top: 2px;
}

.contact-option strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-option p {
    margin: 0;
    color: #555;
    font-size: 14px;
}

.contact-option small {
    color: #7f8c8d;
    font-size: 12px;
}

.quick-links,
.popular-articles {
    list-style: none;
    padding: 0;
}

.quick-links li,
.popular-articles li {
    margin-bottom: 10px;
}

.quick-links a,
.popular-articles a {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.quick-links a:hover,
.popular-articles a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Shipping Info Page Styles */
.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.shipping-option {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.shipping-icon {
    font-size: 32px;
    color: #3498db;
    margin-top: 5px;
}

.shipping-details h3 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 18px;
}

.shipping-time {
    color: #27ae60;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.shipping-rate {
    color: #e74c3c;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.shipping-description {
    color: #555;
    margin: 0;
    font-size: 14px;
}

.shipping-zones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.zone-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.zone-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zone-card ul {
    list-style: none;
    padding: 0;
}

.zone-card li {
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
    padding-left: 15px;
    position: relative;
}

.zone-card li::before {
    content: '•';
    color: #3498db;
    position: absolute;
    left: 0;
}

.processing-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.processing-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.processing-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.processing-item p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.special-shipping {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.special-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.special-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.special-item p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.quick-ref {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ref-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.ref-item strong {
    color: #2c3e50;
    font-size: 14px;
}

.ref-item span {
    color: #3498db;
    font-weight: 600;
    font-size: 14px;
}

.distribution-centers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.center-item {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.center-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.center-item p {
    margin: 0;
    color: #555;
    font-size: 14px;
}

.center-item small {
    color: #7f8c8d;
    font-size: 12px;
}

.shipping-partners {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.partner-item i {
    color: #3498db;
    font-size: 16px;
    width: 20px;
}

.partner-item span {
    color: #2c3e50;
    font-size: 14px;
}

.help-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: white;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s;
}

.help-link:hover {
    background-color: #f8f9fa;
    border-color: #3498db;
}

.help-link i {
    color: #3498db;
    font-size: 14px;
}

/* Returns Page Styles */
.policy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.highlight-icon {
    font-size: 24px;
    color: #3498db;
    margin-top: 5px;
}

.highlight-content h3 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 16px;
}

.highlight-content p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.return-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background-color: #3498db;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h3 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 18px;
}

.step-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.conditions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.condition-card {
    padding: 25px;
    border-radius: 8px;
    border: 2px solid;
}

.condition-card.returnable {
    background-color: #f8fff8;
    border-color: #27ae60;
}

.condition-card.non-returnable {
    background-color: #fff8f8;
    border-color: #e74c3c;
}

.condition-card h3 {
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.condition-card.returnable h3 {
    color: #27ae60;
}

.condition-card.non-returnable h3 {
    color: #e74c3c;
}

.condition-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.condition-card li {
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
    padding-left: 15px;
    position: relative;
}

.condition-card.returnable li::before {
    content: '✓';
    color: #27ae60;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.condition-card.non-returnable li::before {
    content: '✗';
    color: #e74c3c;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.exchange-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.exchange-option {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.exchange-option h3 {
    margin: 0 0 10px 0;
    color: #2c3e50;
}

.exchange-option p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.refund-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.refund-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.refund-item h4 {
    margin: 0 0 10px 0;
    color: #2c3e50;
}

.refund-item p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.quick-return {
    background-color: white;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.quick-return p {
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
}

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

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

.contact-method i {
    font-size: 18px;
    color: #3498db;
    margin-top: 2px;
}

.return-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.checklist-item i {
    color: #27ae60;
    font-size: 16px;
}

.warranty-info {
    background-color: white;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.warranty-info p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.warranty-info p:last-child {
    margin-bottom: 0;
}

.related-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.related-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: white;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s;
    font-size: 14px;
}

.related-link:hover {
    background-color: #f8f9fa;
    border-color: #3498db;
}

.related-link i {
    color: #3498db;
}

/* Track Order Page Styles */
.tracking-form-section {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.tracking-form {
    max-width: 500px;
}

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

.tracking-form label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
}

.tracking-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.tracking-form input:focus {
    outline: none;
    border-color: #3498db;
}

.tracking-results {
    margin-bottom: 40px;
}

.order-summary {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.order-detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-detail strong {
    color: #2c3e50;
    font-size: 14px;
}

.order-detail span {
    color: #555;
    font-size: 14px;
}

.tracking-progress {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.progress-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #e9ecef;
}

.progress-step.completed {
    background-color: #f8fff8;
    border-left-color: #27ae60;
}

.progress-step.active {
    background-color: #f8f9ff;
    border-left-color: #3498db;
}

.progress-step.pending {
    background-color: #f8f9fa;
    border-left-color: #bdc3c7;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.progress-step.completed .step-icon {
    background-color: #27ae60;
    color: white;
}

.progress-step.active .step-icon {
    background-color: #3498db;
    color: white;
}

.progress-step.pending .step-icon {
    background-color: #bdc3c7;
    color: white;
}

.step-content h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 16px;
}

.step-content p {
    margin: 0 0 5px 0;
    color: #555;
    font-size: 14px;
}

.step-content small {
    color: #7f8c8d;
    font-size: 12px;
}

.order-items {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.order-items h3 {
    margin: 0 0 20px 0;
    color: #2c3e50;
}

.item-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: white;
    border-radius: 6px;
}

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

.item-details h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 14px;
}

.item-details p {
    margin: 0;
    color: #7f8c8d;
    font-size: 12px;
}

.item-price {
    color: #3498db !important;
    font-weight: 600 !important;
}

.tracking-help {
    margin-bottom: 40px;
}

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

.help-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.help-item h4 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.help-item p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.status-guide {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.status-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.status-item i {
    font-size: 20px;
    margin-top: 2px;
}

.status-confirmed { color: #27ae60; }
.status-processing { color: #f39c12; }
.status-shipped { color: #3498db; }
.status-transit { color: #9b59b6; }
.status-delivered { color: #27ae60; }

.status-item strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 3px;
    font-size: 14px;
}

.status-item p {
    margin: 0;
    color: #7f8c8d;
    font-size: 12px;
}

.delivery-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.info-item strong {
    display: block;
    color: #2c3e50;
    font-size: 14px;
    margin-bottom: 3px;
}

.info-item p {
    margin: 0;
    color: #555;
    font-size: 13px;
}

.help-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Responsive Design for Customer Service Pages */
@media (max-width: 768px) {
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .shipping-zones,
    .conditions-grid {
        grid-template-columns: 1fr;
    }
    
    .order-info {
        grid-template-columns: 1fr;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .help-category,
    .shipping-option,
    .highlight-item {
        padding: 20px;
    }
    
    .tracking-form-section,
    .order-summary,
    .order-items {
        padding: 20px;
    }
    
    .order-item {
        flex-direction: column;
        text-align: center;
    }
}
/* Payment Modal Styles */
.payment-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.form-section h3 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    flex: 1 1 100%;
}

.payment-form label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
}

.payment-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.payment-form input:focus {
    outline: none;
    border-color: #3498db;
}

.payment-form input:invalid {
    border-color: #e74c3c;
}

.payment-summary {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.summary-line:last-child {
    margin-bottom: 0;
}

.total-line {
    border-top: 1px solid #e9ecef;
    padding-top: 10px;
    margin-top: 10px;
    font-size: 16px;
    color: #2c3e50;
}

/* Payment Form Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .payment-form {
        max-width: none;
    }
}