/* Reset and Base Styles */
:root {
    /* Font size variables */
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-md: 18px;
    --font-size-lg: 20px;
    --font-size-xl: 24px;
    --font-size-2xl: 32px;
    --font-size-3xl: 40px;
    --font-size-4xl: 48px;
    --font-size-5xl: 56px;
    
    /* Spacing variables */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    --spacing-4xl: 80px;
    
    /* Colors */
    --color-primary: #6366f1;
    --color-primary-dark: #5b5bd6;
    --color-primary-light: #e0e7ff;
    --color-text-dark: #1a1a1a;
    --color-text-medium: #666;
    --color-text-light: #999;
    --color-background: #fff;
    --color-background-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px; /* Base font size */
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--color-text-dark);
    background-color: var(--color-background);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    font-size: var(--font-size-base);
    line-height: 1.5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg) var(--spacing-lg);
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    text-transform: lowercase;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--color-primary), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-2xl);
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
    position: relative;
    padding: var(--spacing-sm) 0;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), #8b5cf6);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.icon-btn {
    background: none;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    color: var(--color-text-dark);
}

.icon-btn:hover {
    background: linear-gradient(135deg, var(--color-primary-light), #e0e7ff);
    color: var(--color-primary);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--color-text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: var(--spacing-4xl) 0 var(--spacing-3xl);
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 50%, #fef3c7 100%);
    position: relative;
    overflow: hidden;
}

.hero-text {
    text-align: left;

}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: var(--font-size-sm);
    color: #8b5cf6;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-text-dark) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: var(--font-size-md);
    color: var(--color-text-medium);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: var(--color-background);
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: 50px;
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.special-offer {
    font-size: var(--font-size-sm);
    color: #f59e0b;
    font-weight: 600;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 20px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(99, 102, 241, 0.1));
    pointer-events: none;
}

.hero-pagination {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-2xl);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(99, 102, 241, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    transform: scale(1.2);
}

/* Section Styles */
.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-text-dark) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: var(--font-size-md);
    color: var(--color-text-medium);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.5;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--spacing-3xl);
}

.section-title-group {
    flex: 1;
}

.section-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-pill {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 2px solid #e9ecef;
    background: var(--color-background);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: var(--font-size-sm);
    color: var(--color-text-medium);
}

.nav-pill.active,
.nav-pill:hover {
    background: linear-gradient(135deg, var(--color-primary), #8b5cf6);
    color: var(--color-background);
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.view-all {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
}

/* Categories Section */
.categories {
    padding: 100px 0;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.filter-item:hover {
    background: linear-gradient(135deg, #f0f9ff, #e0e7ff);
}

.filter-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.filter-item.active .filter-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    transform: scale(1.1);
}

.filter-label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
}

.filter-item.active .filter-label {
    color: #6366f1;
    font-weight: 600;
}

.filter-label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transition: width 0.3s ease;
}

.filter-item.active .filter-label::after {
    width: 100%;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.category-card {
    transition: all 0.4s ease;
}

.category-card.hidden {
    display: none;
}

.category-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.car-stereos-card:hover {
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.amplifiers-card:hover {
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.set-top-boxes-card:hover {
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.2);
}

.mini-mp3-card:hover {
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.2);
}

.category-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.sold-out-message {
    color: #fff;
    text-align: center;
}

.sold-out-message h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.sold-out-message p {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
}

.category-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
}

.category-info {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.category-badge {
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

.new-badge {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.trending-badge {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.popular-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.sold-out-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.category-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.category-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
    position: relative;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}










/* Enhanced strikethrough effect */
.original-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #999;
    transform: translateY(-50%);
}

.category-info {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 80px;
}

.category-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
    margin: 0;
    flex: 1;
}

/* Product Popup Styles */
.product-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.product-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.product-popup {
    background: #fff;
    border-radius: 24px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
    padding-right: 6px; /* Add padding for scrollbar */
}

.product-popup-overlay.active .product-popup {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.popup-close:hover {
    background: #fff;
    transform: scale(1.1);
}

.popup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

/* Product Images Section */
.popup-images {
    position: relative;
}

.main-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f0f9ff, #e0e7ff);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-height: 100%;
    border-radius: 20px;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.nav-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.prev-arrow {
    left: 15px;
}

.next-arrow {
    right: 15px;
}

.image-indicator {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.thumbnail-container {
    overflow-x: auto;
    padding: 5px 0;
}

.thumbnail-list {
    display: flex;
    gap: 12px;
    min-width: min-content;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail.active {
    border-color: #6366f1;
    transform: scale(1.05);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail:hover {
    transform: scale(1.05);
    border-color: #8b5cf6;
}

/* Product Details Section */
.popup-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    width: fit-content;
}

.popup-details h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 2px;
}

.stars span {
    display: inline-block;
    position: relative;
}

/* Custom styling for different star types */
.stars .full-star {
    color: #fbbf24;
}

.stars .empty-star {
    color: #fbbf24;
    opacity: 0.3;
}

.stars .half-star {
    color: #fbbf24;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.stars .half-star:after {
    content: '☆';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    color: #fbbf24;
    opacity: 0.3;
}

.rating-text {
    color: #666;
    font-size: 14px;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.price-section .current-price {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-section .original-price {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
}

.discount-percentage {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.product-description h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.product-description ul {
    list-style: none;
    padding: 0;
}

.product-description li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 24px;
    line-height: 1.5;
}

.product-description li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 600;
}

.product-specifications h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f0f9ff, #e0e7ff);
    border-radius: 12px;
    font-size: 14px;
}

.spec-label {
    font-weight: 600;
    color: #1a1a1a;
}

.spec-value {
    color: #666;
}

.popup-actions {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.btn-buy-now {
    flex: 1;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border: none;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: #fff;
    color: #6366f1;
    border: 2px solid #6366f1;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: #6366f1;
    color: #fff;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 18px;
}

.warranty-info {
    display: flex;
    gap: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff, #e0e7ff);
    border-radius: 16px;
    margin-top: 8px;
}

.warranty-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    flex: 1;
}

.warranty-icon {
    font-size: 24px;
}

.warranty-item span:last-child {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

/* Warranty Section */
.warranty {
    padding: 50px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
}

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.warranty-card {
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.warranty-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.warranty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-background);
}

.warranty-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-md);
}

.warranty-card p {
    color: var(--color-text-medium);
    line-height: 1.6;
}

.warranty-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.warranty-details {
    background: var(--color-background);
    padding: var(--spacing-xl);
    border-radius: var(--spacing-lg);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1);
}

.warranty-details h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-lg);
}

.warranty-details ul {
    list-style: none;
    padding: 0;
}

.warranty-details li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid #f1f5f9;
    color: var(--color-text-medium);
    position: relative;
    padding-left: var(--spacing-lg);
}

.warranty-details li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 600;
}

.warranty-details li:last-child {
    border-bottom: none;
}

.warranty-contact {
    background: var(--color-background);
    padding: var(--spacing-xl);
    border-radius: var(--spacing-lg);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1);
}

.warranty-contact h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-md);
}

.warranty-contact p {
    color: var(--color-text-medium);
    margin-bottom: var(--spacing-lg);
}

.warranty-contact-info {
    margin-bottom: var(--spacing-xl);
}

.warranty-contact-info p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-medium);
}

.warranty-contact-info strong {
    color: var(--color-text-dark);
}

/* Banner Section */
.banner {
    position: relative;
    color: var(--color-background);
    padding: var(--spacing-4xl) 0;
    margin: var(--spacing-4xl) 0;
    overflow: hidden;
    background-image: url('Images/banner-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(5px);
    background: rgba(102, 126, 234, 0.2);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.banner-text h2 {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
    text-align: left;
}

.banner-text p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    line-height: 1.6;
    text-align: left;
}


.banner-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* FAQs Section */
.faqs {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-background);
    border-radius: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
}

.faq-question {
    padding: var(--spacing-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f0f9ff, #e0e7ff);
}

.faq-question h3 {
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 0;
}

.faq-toggle {
    font-size: var(--font-size-lg);
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--spacing-lg);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    max-height: 200px;
}

.faq-answer p {
    color: var(--color-text-medium);
    line-height: 1.6;
    margin: 0;
}

/* About Section */
.about {
    padding: var(--spacing-4xl) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.about-text{
    text-align: left;
}

.about-description {
    font-size: var(--font-size-md);
    color: var(--color-text-medium);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #f0f9ff, #e0e7ff);
    border-radius: var(--spacing-md);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-item h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.stat-item p {
    color: var(--color-text-medium);
    font-weight: 500;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--spacing-lg);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

/* Contact Section */
.contact {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    max-width: 100%;
    overflow-x: hidden;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1);
    max-width: 100%;
}

.contact-item {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--color-background);
    border-radius: var(--spacing-md);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-background);
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-sm);
}

.contact-item p {
    color: var(--color-text-medium);
    line-height: 1.5;
}

/* Enhanced Homepage Warranty Section - Larger Icons and Font */
.warranty-icon {
    font-size: 48px; /* increased from default size */
    width: 80px; /* increased width */
    height: 80px; /* increased height */
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 20px; /* slightly larger border radius */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
}

/* Increase font size for warranty card titles */
.warranty-card h3 {
    font-size: 24px; /* increased from default */
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Increase font size for warranty card descriptions */
.warranty-card p {
    font-size: 18px; /* increased from default */
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Adjust card spacing and padding */
.warranty-card {
    padding: 32px 24px; /* increased padding */
    text-align: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.warranty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(99, 102, 241, 0.15);
}

/* Increase gap between warranty cards */
.warranty-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px; /* increased gap */
    margin-bottom: 48px;
}

.warranty-cta {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1);
}

.warranty-contact {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.warranty-contact p {
    color: #666;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        /* Adjust font sizes for medium screens */
        --font-size-4xl: 40px;
        --font-size-3xl: 36px;
        --font-size-2xl: 28px;
        --font-size-xl: 22px;
    }
    
    .hero-content {
        gap: var(--spacing-3xl);
    }
    
    .banner-content {
        gap: var(--spacing-3xl);
    }
    
    .about-content {
        gap: var(--spacing-3xl);
    }
    
    .contact-content {
        gap: var(--spacing-3xl);
    }
    
    .warranty-info {
        gap: var(--spacing-xl);
    }
    
    .popup-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .popup-actions {
        flex-direction: column;
    }
    
    .warranty-info {
        gap: 16px;
    }
    
    .product-popup {
        max-height: 85vh;
        width: 90%;
    }
}

@media (max-width: 768px) {
    :root {
        /* Adjust font sizes for tablet screens */
        --font-size-5xl: 40px;
        --font-size-4xl: 32px;
        --font-size-3xl: 28px;
        --font-size-2xl: 24px;
        --font-size-xl: 20px;
        --font-size-lg: 18px;
        
        /* Adjust spacing for tablet screens */
        --spacing-4xl: 60px;
        --spacing-3xl: 48px;
        --spacing-2xl: 36px;
    }
    
    .category-filters {
        gap: var(--spacing-md);
    }
    
    .filter-item {
        padding: var(--spacing-sm);
    }
    
    .product-popup {
        max-height: 80vh;
        width: 95%;
        margin: 0 auto;
    }
    
    .popup-content {
        padding: 20px;
        gap: 20px;
    }
    
    .popup-close {
        top: 10px;
        right: 10px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .filter-icon {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-lg);
    }
    
    .filter-label {
        font-size: var(--font-size-xs);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 80px 20px 20px;
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 12px 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .section-header {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .warranty-info {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .warranty-details,
    .warranty-contact {
        padding: var(--spacing-lg);
    }
    
    .popup-content {
        padding: 20px;
    }
    
    .popup-details h2 {
        font-size: 24px;
    }
    
    .price-section .current-price {
        font-size: 28px;
    }
    
    .price-section .original-price {
        font-size: 18px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .warranty-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .warranty-item {
        flex-direction: row;
        text-align: left;
    }
    
    .warranty-summary {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .warranty-card {
        padding: 16px;
    }
    
    .warranty-icon {
        font-size: 32px;
        width: 56px;
        height: 56px;
        margin-bottom: 12px;
        border-radius: 14px;
    }
    
    .warranty-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .warranty-card p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .warranty-card {
        padding: 20px 16px;
        border-radius: 16px;
    }
    
    .warranty-summary {
        gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    
    .warranty-cta {
        padding: 30px 20px;
    }
    
    .warranty-contact {
        flex-direction: column;
        gap: 12px;
    }
    
    .warranty-contact p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    :root {
        /* Adjust font sizes for mobile screens */
        --font-size-5xl: 32px;
        --font-size-4xl: 28px;
        --font-size-3xl: 24px;
        --font-size-2xl: 20px;
        --font-size-xl: 18px;
        --font-size-lg: 16px;
        --font-size-md: 15px;
        
        /* Adjust spacing for mobile screens */
        --spacing-4xl: 48px;
        --spacing-3xl: 36px;
        --spacing-2xl: 28px;
        --spacing-xl: 24px;
        --spacing-lg: 16px;
    }
    
    .category-filters {
        gap: var(--spacing-sm);
    }
    
    .filter-item {
        padding: var(--spacing-xs);
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero {
        padding: var(--spacing-3xl) 0 var(--spacing-xl);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .nav-icons {
        gap: var(--spacing-sm);
    }
    
    .icon-btn {
        padding: var(--spacing-sm);
    }
    
    .warranty-card {
        padding: 16px 12px;
        border-radius: 14px;
    }
    
    .warranty-icon {
        font-size: 28px;
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
        border-radius: 12px;
    }
    
    .warranty-card h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .warranty-card p {
        font-size: 13px;
        line-height: 1.3;
    }
    
    .warranty-summary {
        gap: 16px;
        grid-template-columns: 1fr;
    }
    
    .warranty-cta {
        padding: 24px 16px;
    }
    
    .btn-primary {
        font-size: 14px;
        padding: 12px 24px;
    }
    
    .warranty-contact p {
        font-size: 12px;
    }
    
    .product-popup {
        margin: 10px;
        max-height: 95vh;
    }
    
    .popup-content {
        padding: 15px;
        gap: 20px;
    }
    
    .popup-details h2 {
        font-size: 20px;
    }
    
    .price-section .current-price {
        font-size: 24px;
    }
    
    .thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }

    
    .product-popup {
        margin: 10px;
        max-height: 95vh;
    }
    
    .popup-content {
        padding: 15px;
        gap: 20px;
    }
    
    .popup-details h2 {
        font-size: 20px;
    }
    
    .price-section .current-price {
        font-size: 24px;
    }
    
    .thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    :root {
        /* Adjust font sizes for very small screens */
        --font-size-5xl: 28px;
        --font-size-4xl: 24px;
        --font-size-3xl: 20px;
        --font-size-2xl: 18px;
        --font-size-xl: 16px;
        --font-size-lg: 15px;
        --font-size-md: 14px;
        --font-size-sm: 13px;
        --font-size-xs: 12px;
        
        /* Adjust spacing for very small screens */
        --spacing-4xl: 40px;
        --spacing-3xl: 32px;
        --spacing-2xl: 24px;
        --spacing-xl: 20px;
        --spacing-lg: 14px;
        --spacing-md: 12px;
    }
    
    .warranty-card {
        padding: 12px 8px;
    }
    
    .warranty-icon {
        font-size: 24px;
        width: 44px;
        height: 44px;
    }
    
    .warranty-card h3 {
        font-size: 15px;
    }
    
    .warranty-card p {
        font-size: 12px;
    }
}

/* Warranty Hero Banner */
.warranty-hero {
    position: relative;
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./Images/3.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.warranty-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.8), rgba(139, 92, 246, 0.8));
    opacity: 0.7;
    z-index: 1;
}

.warranty-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.warranty-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.warranty-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Warranty Policy Page Styling */
.warranty-policy-page {
    padding: 3% 5%;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.policy-section {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.policy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.policy-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.policy-content p {
    line-height: 1.8;
    color: var(--color-text-medium);
    margin-bottom: 1.5rem;
}

.highlight-box {
    background-color: #f0f7ff;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #6366f1;
}

.covered-list li, .not-covered-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

/* Categories section container improvements */
.categories {
    padding: 100px 0;
}

/* Warranty Policy - Shipping Table */
.shipping-table {
    width: 100%;
    margin: 1.5rem 0;
    overflow-x: auto;
    display: block;
    max-width: 100%;
}

.shipping-table table {
    width: 100%;
    border-collapse: collapse;
}

.shipping-table th, .shipping-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.shipping-table th {
    background-color: #f8fafc;
    font-weight: 600;
}

.shipping-table tr:hover td {
    background-color: #f0f7ff;
}

/* Warranty Claim Steps */
.claim-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Ensure category images maintain aspect ratio */
.category-image {
    position: relative;
    overflow: hidden;
    height: 200px; /* Fixed height for consistency */
    width: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Category info consistent sizing */
.category-info {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px; /* Ensure consistent card heights */
}

.category-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
    margin: 0;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .categories {
        padding: 60px 0;
    }
    
    .category-image {
        height: 180px; /* Slightly smaller on mobile */
    }
    
    .category-info {
        padding: 16px;
        min-height: 70px;
    }
    
    .category-info h3 {
        font-size: 14px;
    }
    
    /* Responsive Warranty Policy Page */
    .warranty-hero {
        height: 200px;
    }
    
    .warranty-hero h1 {
        font-size: 2rem;
    }
    
    .warranty-hero p {
        font-size: 1rem;
    }
    
    .policy-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .policy-icon {
        font-size: 2rem;
    }
    
    .policy-title {
        font-size: 2rem;
    }
    
    .policy-subtitle {
        font-size: 1rem;
    }
    
    .highlight-box {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .shipping-table {
        font-size: 0.9rem;
    }
    
    .shipping-table th, .shipping-table td {
        padding: 0.75rem;
    }
    
    .step {
        gap: 0.75rem;
    }
    
    .step-number {
        width: 2rem;
        height: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content,
.categories-grid {
    animation: fadeInUp 0.8s ease;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
button:focus,
a:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--spacing-xs);
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-background-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 10px;
    border: 2px solid var(--color-background-light);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5b5bd6, #7c3aed);
}

/* Policy Header Styling */
.policy-header {
    text-align: center;
    margin-bottom: 3.5rem;
    padding: 2.5rem 1.5rem 2.5rem;
    border-bottom: 1px solid #f1f5f9;
    background-color: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.05);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.policy-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-text-dark) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-medium);
    margin-bottom: 1.5rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-medium);
}

.breadcrumb a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* WhatsApp floating button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    animation: pulse 1.5s infinite;
    transition: all 0.3s ease;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float-btn {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

/* Selection styles */
::selection {
    background: rgba(99, 102, 241, 0.2);
    color: #1a1a1a;
}

/* Enhanced hover effects */
.category-card {
    cursor: pointer;
}

/* Warranty Footer Styles */
.warranty-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.warranty-footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.warranty-footer-brand {
    flex: 1 1 300px;
}

.warranty-footer-logo {
    font-size: 1.8rem;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.warranty-footer-tagline {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.warranty-footer-contact {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.warranty-footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.warranty-footer-contact .contact-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.warranty-footer-contact i {
    font-size: 1.2rem;
    color: #6366f1;
}

.warranty-footer-links {
    flex: 1 1 300px;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.warranty-footer-column h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.warranty-footer-column h4:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.warranty-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warranty-footer-column li {
    margin-bottom: 0.75rem;
}

.warranty-footer-column a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.warranty-footer-column a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.warranty-footer-column a:before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.warranty-footer-column a:hover:before {
    opacity: 1;
    left: -15px;
}

.warranty-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #999999;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .policy-header h1{
        font-size: 25px;
        text-align: left;
        
    }

    .policy-header p{
        font-size: 12.5px;
        text-align: left;
        
    }

    .contact-item p{
        font-size: 12.5px;
    }

    .warranty-footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .warranty-footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .warranty-footer-column h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .warranty-footer-column a:hover {
        transform: translateX(0);
    }
}

/* Enhanced button styles */
button {
    font-family: inherit;
}

/* Improved spacing and typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

p {
    line-height: 1.6;
}

/* Enhanced visual hierarchy */
.section-header {
    margin-bottom: 64px;
}

.section-title-group {
    max-width: 600px;
}

/* Better mobile experience */
@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .section-nav {
        flex-direction: column;
        gap: 12px;
    }

}

/* Enhanced lifestyle section */
.lifestyle-item {
    transition: all 0.3s ease;
}

.lifestyle-item.hidden {
    display: none;
}

/* Ensure smooth animations */
.category-card,
.lifestyle-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Categories Section - Fixed Grid Layout */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on large screens */
    gap: 32px;
}

/* Responsive breakpoints for different screen sizes */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on medium-large screens */
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on small screens */
        gap: 20px;
    }
    
    .category-card {
        max-width: none; /* Allow cards to use full width on mobile */
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 columns on very small screens */
        gap: 16px;
    }
}