/* GEETIKA AUTOMATION - Main Stylesheet */
/* Mobile-First Responsive Design */

:root {
    --primary-color: #0a1929;
    --secondary-color: #1a2332;
    --accent-color: #00d4ff;
    --accent-dark: #0099cc;
    --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    --text-color: #1a1a1a;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-dark: #0a1929;
    --bg-gradient: linear-gradient(135deg, #0a1929 0%, #1a2332 50%, #0f172a 100%);
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.main-header {
    background: rgba(10, 25, 41, 0.95);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.75rem;
    margin: 0;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo a {
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    font-weight: 500;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-icon {
    position: relative;
    color: var(--white);
    text-decoration: none;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-gradient);
    color: var(--white);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

.btn-signin {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-signin:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    display: block;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: var(--bg-dark);
    color: var(--white);
    padding: 8rem 0 6rem;
    text-align: center;
    overflow: hidden;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px) brightness(0.3);
    transform: scale(1.1);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 153, 204, 0.1) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(0, 212, 255, 0.3);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dots .dot.active {
    background: var(--accent-color);
    width: 14px;
    height: 14px;
    border-color: var(--white);
}

.slider-dots .dot:hover {
    background: rgba(0, 212, 255, 0.6);
    transform: scale(1.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}


.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--accent-gradient);
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--accent-gradient);
    color: var(--white);
    border-color: transparent;
}

.btn-secondary {
    background: var(--text-light);
}

.btn-secondary:hover {
    background: #4b5563;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.section-title .accent-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-title {
    font-size: 2rem;
    margin: 2rem 0;
}

/* Feature Blocks Section */
.feature-blocks-section {
    background: var(--bg-dark);
    padding: 5rem 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.feature-blocks-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 300px at 10% 10%, rgba(0, 212, 255, 0.18), transparent 60%),
        radial-gradient(700px 350px at 90% 30%, rgba(0, 153, 204, 0.14), transparent 65%),
        radial-gradient(900px 450px at 50% 100%, rgba(255, 255, 255, 0.06), transparent 60%);
    pointer-events: none;
    opacity: 0.9;
}

.feature-blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
    position: relative;
}

.feature-block-card {
    background: linear-gradient(180deg, rgba(26, 35, 50, 0.98) 0%, rgba(10, 25, 41, 0.98) 100%);
    padding: 2.5rem 2.25rem;
    border-radius: 18px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.18);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.feature-block-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-gradient);
    transform: scaleX(0.25);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-block-card::after {
    content: '';
    position: absolute;
    inset: -60px;
    background: radial-gradient(circle at 20% 15%, rgba(0, 212, 255, 0.18), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-block-card:hover::before {
    transform: scaleX(1);
}

.feature-block-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    border-color: rgba(0, 212, 255, 0.4);
}

.feature-block-card:hover::after {
    opacity: 1;
}

.feature-block-icon {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.20) 0%, rgba(0, 153, 204, 0.12) 100%);
    border: 1px solid rgba(0, 212, 255, 0.25);
    box-shadow: 0 14px 35px rgba(0, 212, 255, 0.12);
    color: var(--accent-color);
}

.feature-block-icon svg {
    width: 34px;
    height: 34px;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.95;
}

.feature-block-number {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.35;
    line-height: 1;
}

.feature-block-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin: 0.25rem 0 0.25rem;
}

.feature-block-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
}

.feature-points {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    display: grid;
    gap: 0.5rem;
}

.feature-points li {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.feature-points li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: 900;
    flex: 0 0 auto;
    margin-top: 0.1rem;
}

/* About Us Section */
.about-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.about-content {
}

.about-image {
    position: relative;
}

.about-image-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.05) 100%);
    border-radius: 16px;
    pointer-events: none;
    z-index: 1;
}

.about-image:hover .about-image-img {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.accent-text {
    color: var(--accent-color);
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.about-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-stat-icon {
    font-size: 2.5rem;
}

.about-stat-content h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.about-stat-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* About Stats Grid - Enhanced Design */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 1.5rem 0;
}

.about-stat-card {
    background: linear-gradient(180deg, #ffffff 0%, rgba(248, 250, 252, 0.9) 100%);
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(10, 25, 41, 0.08);
}

.about-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-gradient);
    transform: scaleX(0.25);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.about-stat-card::after {
    content: '';
    position: absolute;
    inset: -60px;
    background: radial-gradient(circle at 20% 15%, rgba(0, 212, 255, 0.18), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.about-stat-card:hover::before {
    transform: scaleX(1);
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 55px rgba(0, 212, 255, 0.18);
    border-color: var(--accent-color);
}

.about-stat-card:hover::after {
    opacity: 1;
}

.stat-icon-wrapper {
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.16) 0%, rgba(0, 153, 204, 0.06) 100%);
    border: 1px solid rgba(0, 212, 255, 0.22);
    box-shadow: 0 14px 35px rgba(0, 212, 255, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stats-grid .about-stat-icon {
    font-size: 2.25rem;
    line-height: 1;
    display: inline-block;
    filter: none;
    transition: transform 0.3s ease;
}

.about-stat-card:hover .about-stat-icon {
    transform: scale(1.08);
}

.about-stat-card:hover .stat-icon-wrapper {
    transform: translateY(-2px) rotate(2deg);
    box-shadow: 0 18px 45px rgba(0, 212, 255, 0.18);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.6;
    margin-top: 0.75rem;
    font-style: italic;
}

/* Explore Section */
.explore-section {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.explore-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.explore-content {
    position: relative;
    z-index: 1;
}

.explore-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.explore-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.explore-btn:hover::before {
    left: 100%;
}

.explore-btn svg {
    transition: transform 0.3s ease;
}

.explore-btn:hover svg {
    transform: translateX(5px);
}

/* About Mission and Values */
.about-mission,
.about-values {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--border-color);
    width: 100%;
}

.about-mission h2,
.about-values h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: left;
}

.about-mission p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    text-align: left;
    margin-bottom: 0;
}

.about-values ul {
    list-style: none;
    padding: 0;
}

.about-values ul li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.9;
    color: var(--text-light);
    text-align: left;
    margin-bottom: 0.5rem;
}

.about-values ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Our Services Section */
.services-section {
    background: var(--bg-dark);
    color: var(--white);
    padding: 5rem 0;
}

.services-section .section-title {
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose-section {
    background: var(--white);
    padding: 5rem 0;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.why-choose-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.why-choose-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.why-choose-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.why-choose-feature:hover {
    background: var(--accent-gradient);
    color: var(--white);
}

.why-choose-feature-icon {
    font-size: 2rem;
}

.why-choose-feature span {
    font-weight: 600;
    color: var(--primary-color);
}

.why-choose-feature:hover span {
    color: var(--white);
}

.why-choose-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-choose-image-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: block;
}

.why-choose-image:hover .why-choose-image-img {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Best Products Section */
.best-products-section {
    background: var(--bg-dark);
    color: var(--white);
    padding: 5rem 0;
}

.best-products-section .section-title {
    color: var(--white);
}

.best-products-section .product-card {
    background: var(--white);
    color: var(--text-color);
}

.best-products-section .product-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.best-products-section .product-price {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--accent-color);
}

.best-products-section .product-type {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Legacy styles for backward compatibility */
.best-products-section .product-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.best-products-section .product-specs {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    text-decoration: none;
}

/* Statistics Section */
.statistics-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.stat-icon {
    font-size: 3.5rem;
    line-height: 1;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    filter: grayscale(0);
    transform: scale(1.1) rotate(5deg);
}

.stat-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-content p {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stat-trend {
    font-size: 0.875rem;
    color: var(--success-color);
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
    background: var(--white);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    filter: grayscale(0);
    transform: scale(1.15) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Featured Products Section */
.featured-products-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.category-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.category-card a {
    text-decoration: none;
    color: var(--text-color);
    display: block;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.category-card h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.category-link {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease;
}

.category-card:hover .category-link {
    transform: translateX(5px);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
    transform: translateY(-8px);
    border-color: var(--accent-color);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.product-info h3 {
    text-decoration: none;
}

.product-card a {
    text-decoration: none;
}

.product-card a:hover {
    text-decoration: none;
}

.product-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.product-card:hover .product-name {
    color: var(--accent-color);
}

.product-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-color);
    margin: 0;
    line-height: 1.2;
}

.product-type {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 0.25rem;
}

.product-actions {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-actions .btn {
    width: 100%;
    text-align: center;
}

/* Legacy styles for backward compatibility */
.product-specs {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.add-to-cart-form {
    padding: 0 1rem 1rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination-btn:hover:not(.disabled) {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--bg-light);
}

.pagination-btn svg {
    width: 16px;
    height: 16px;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination-number:hover:not(.active) {
    background: var(--bg-light);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.pagination-number.active {
    background: var(--accent-gradient);
    color: var(--white);
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
    cursor: default;
}

.pagination-ellipsis {
    padding: 0 0.5rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Shop Page */
.shop-layout {
    margin: 2rem 0;
}

/* Filters at Top */
.filters-top {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 153, 204, 0.02) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(0, 212, 255, 0.1);
    margin-bottom: 2rem;
}

.filters-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.filters-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-color);
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.price-range {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-range input {
    flex: 1;
}

.price-range span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.filters-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 0.5rem;
}

.filters-actions .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

/* Legacy sidebar styles for backward compatibility */
.filters-sidebar {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    height: fit-content;
}

.filters-sidebar h3 {
    margin-bottom: 1rem;
}

.price-range {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-range input {
    flex: 1;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.sort-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-form select {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

/* Product Detail Page */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.main-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.product-info h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.product-category {
    color: var(--text-light);
    margin-bottom: 1rem;
    text-decoration: none;
}

.product-price-large {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-decoration: none;
}

.product-specifications {
    margin: 2rem 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.specs-table td:first-child {
    font-weight: 500;
    width: 40%;
}

.quantity-selector {
    margin: 1.5rem 0;
}

.quantity-selector label {
    display: block;
    margin-bottom: 0.5rem;
}

.quantity-selector input {
    width: 100px;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.out-of-stock {
    color: var(--error-color);
    font-weight: 500;
    padding: 1rem;
    background: #ffe6e6;
    border-radius: 4px;
}

/* Cart Page */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    margin: 2rem 0;
}

/* Cart Items Header */
.cart-items-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.cart-items-header h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin: 0;
}

.cart-count-badge {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Cart Products Grid - Card Layout */
.cart-products-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cart-product-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cart-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gradient);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.cart-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.cart-product-card:hover::before {
    transform: scaleY(1);
}

/* Product Image */
.cart-product-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-light);
    height: 180px;
}

.cart-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart-product-image-wrapper:hover .cart-product-image {
    transform: scale(1.05);
}

.cart-product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-gradient);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

/* Product Details */
.cart-product-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-product-name {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.cart-product-name:hover {
    color: var(--accent-color);
}

.cart-product-name h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.cart-product-price-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.cart-product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Quantity Section */
.cart-product-quantity-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 0.25rem;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.quantity-controls:focus-within {
    border-color: var(--accent-color);
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    border-radius: 6px;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.qty-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.1);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-input {
    width: 60px;
    padding: 0.5rem;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Subtotal */
.cart-product-subtotal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.subtotal-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.subtotal-amount {
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Remove Button */
.cart-product-actions {
    display: flex;
    align-items: flex-start;
    padding-top: 0.5rem;
}

.btn-remove {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(239, 68, 68, 0.2);
}

.btn-remove:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.btn-remove:active {
    transform: translateY(0);
}

.btn-remove svg {
    width: 18px;
    height: 18px;
}

/* Legacy table styles (for backward compatibility) */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.cart-table th,
.cart-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cart-table th {
    background: var(--bg-light);
    font-weight: 500;
}

.product-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-cell img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.quantity-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-summary {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    height: fit-content;
}

.cart-summary h3 {
    margin-bottom: 1rem;
}

.cart-summary-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cart-summary-actions .btn {
    flex: 1;
    text-align: center;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-row:last-of-type {
    border-bottom: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

/* Checkout & Payment */
.checkout-layout,
.payment-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.payment-failed {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin: 2rem 0;
}

.payment-failed .alert {
    margin-bottom: 2rem;
}

.payment-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.payment-actions .btn {
    min-width: 150px;
}

.payment-option {
    margin-bottom: 1rem;
}

.payment-label {
    display: block;
    cursor: pointer;
}

.payment-label input[type="radio"] {
    display: none;
}

.payment-card {
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.payment-label input[type="radio"]:checked + .payment-card {
    border-color: var(--primary-color);
    background: rgba(51, 153, 204, 0.05);
    box-shadow: 0 4px 12px rgba(51, 153, 204, 0.15);
}

.payment-card h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
}

.payment-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.checkout-form,
.payment-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.order-summary {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    height: fit-content;
}

.summary-items {
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.payment-option {
    margin-bottom: 1rem;
}

.payment-label {
    display: block;
    cursor: pointer;
}

.payment-label input[type="radio"] {
    display: none;
}

.payment-card {
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.payment-label input[type="radio"]:checked + .payment-card {
    border-color: var(--primary-color);
    background: rgba(51, 153, 204, 0.05);
    box-shadow: 0 4px 12px rgba(51, 153, 204, 0.15);
}

.payment-card h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
}

.payment-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.payment-failed {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.payment-error-icon {
    margin-bottom: 1.5rem;
    color: #dc3545;
}

.payment-error-icon svg {
    margin: 0 auto;
}

.payment-failed .alert {
    margin-bottom: 2rem;
    text-align: left;
}

.payment-failed .alert h3 {
    margin: 0 0 0.5rem 0;
    color: #dc3545;
}

.payment-failed .alert p {
    margin: 0.5rem 0;
}

.payment-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.payment-actions .btn {
    min-width: 150px;
}

/* Confirmation Page */
.confirmation-content {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1rem;
}

.order-details-box,
.order-items-box,
.customer-info-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-row:last-child {
    border-bottom: none;
}

.order-items-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.order-items-table th,
.order-items-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.installation-notice {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.confirmation-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Community Page */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.post-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-content h2 {
    margin-bottom: 0.5rem;
}

.post-content a {
    color: var(--text-color);
    text-decoration: none;
}

.post-date {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.post-detail {
    max-width: 800px;
    margin: 2rem auto;
}

.post-detail h1 {
    margin-bottom: 0.5rem;
}

.post-detail .post-image {
    margin: 2rem 0;
    border-radius: 8px;
}

.comments-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.comment-form {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.comment-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-decoration: none;
}

/* Contact Page */
.contact-page {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    min-height: 80vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-page .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-success {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 12px;
}

.success-icon-large {
    width: 60px;
    height: 60px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.success-content h3 {
    margin: 0 0 0.5rem 0;
    color: #155724;
    font-size: 1.5rem;
}

.success-content p {
    margin: 0;
    color: #155724;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    margin: 2rem 0;
}

.contact-form-section {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.form-header h2 {
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
    font-size: 1.75rem;
    font-weight: 700;
}

.form-header p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form {
    margin-top: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.label-icon {
    font-size: 1.1rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(51, 153, 204, 0.1);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.char-count {
    display: block;
    text-align: right;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.btn-icon {
    font-size: 1.2rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.info-header h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.75rem;
    font-weight: 700;
}

.info-header p {
    margin: 0;
    opacity: 0.95;
    font-size: 0.95rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(51, 153, 204, 0.3);
}

.info-content {
    flex: 1;
}

.info-content h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.info-content p {
    margin: 0.5rem 0;
    color: var(--text-color);
    line-height: 1.6;
}

.info-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.info-content small {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}


/* Footer */
.main-footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-section h4 {
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    opacity: 1;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert ul {
    margin: 0.5rem 0 0 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section {
        padding: 4rem 0 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-slider-controls {
        bottom: 20px;
        gap: 0.5rem;
    }

    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .slider-dots {
        gap: 0.5rem;
    }

    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }

    .slider-dots .dot.active {
        width: 12px;
        height: 12px;
    }

    .feature-blocks-section {
        padding: 3.5rem 0;
    }

    .feature-blocks-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-block-card {
        padding: 2rem 1.5rem;
    }

    .feature-block-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .feature-block-icon svg {
        width: 30px;
        height: 30px;
    }

    .feature-block-number {
        font-size: 2.1rem;
        top: 1rem;
        right: 1rem;
    }

    .about-content,
    .why-choose-content {
        grid-template-columns: 1fr;
    }

    .about-image-img {
        height: 300px;
    }

    .why-choose-image-img {
        height: 350px;
        object-position: center center;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.25rem;
        margin: 2rem 0;
        padding: 1.5rem 0;
    }
    
    .about-stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-stat-icon {
        font-size: 3rem;
    }
    
    .explore-section {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }
    
    .explore-content h3 {
        font-size: 1.5rem;
    }
    
    .explore-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .explore-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .about-mission,
    .about-values {
        margin-top: 2.5rem;
        padding-top: 2rem;
    }
    
    .about-mission h2,
    .about-values h2 {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }
    
    .about-mission p {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .about-values ul li {
        padding: 0.875rem 0;
        padding-left: 1.75rem;
        font-size: 0.95rem;
    }
    
    .about-cta {
        flex-direction: column;
        margin-top: 2rem;
    }
    
    .about-cta .btn {
        width: 100%;
    }

    .why-choose-features {
        grid-template-columns: 1fr;
    }

    .hero-background {
        filter: blur(4px) brightness(0.2);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    .stat-content h3 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .filters-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .filters-top {
        padding: 1.5rem;
    }
    
    .filters-actions {
        flex-direction: column;
    }
    
    .filters-actions .btn {
        width: 100%;
    }
    
    .price-range {
        flex-direction: column;
        align-items: stretch;
    }
    
    .price-range span {
        text-align: center;
    }

    .product-detail {
        grid-template-columns: 1fr;
    }
    
    .pagination {
        gap: 0.5rem;
        padding-top: 1.5rem;
    }
    
    .pagination-btn {
        padding: 0.625rem 1rem;
        font-size: 0.9rem;
    }
    
    .pagination-number {
        min-width: 36px;
        height: 36px;
        padding: 0 0.5rem;
        font-size: 0.9rem;
    }

    .cart-layout,
    .checkout-layout,
    .payment-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-page {
        padding: 2rem 0;
    }
    
    .contact-page .page-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-success {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .success-icon-large {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .info-header {
        padding: 1.5rem;
    }
    
    .info-header h2 {
        font-size: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.25rem;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.25rem;
    }
    

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-section {
        padding: 3rem 0 2rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .statistics-section {
        padding: 3rem 0;
    }

    .features-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-summary-actions {
        flex-direction: column;
    }
    
    .cart-summary-actions .btn {
        width: 100%;
    }
    
    .cart-products-grid {
        gap: 1.25rem;
    }
    
    .cart-product-card {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.25rem;
    }
    
    .cart-product-image-wrapper {
        height: 250px;
        width: 100%;
    }
    
    .cart-product-details {
        gap: 0.875rem;
    }
    
    .cart-product-quantity-section {
        flex-wrap: wrap;
    }
    
    .cart-product-actions {
        justify-content: flex-end;
        padding-top: 0;
    }
    
    .btn-remove {
        width: 100%;
        justify-content: center;
    }
    
    .cart-items-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    /* Legacy table styles */
    .cart-table {
        font-size: 0.875rem;
    }

    .product-cell {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .about-mission,
    .about-values {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .about-mission h2,
    .about-values h2 {
        font-size: 1.25rem;
    }
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 500px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s ease;
    animation: slideInRight 0.3s ease forwards;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.notification-icon {
    font-size: 1.5rem;
    font-weight: bold;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Order Tracking Page */
.track-order-page {
    padding: 2rem 0;
    min-height: 60vh;
}

.track-order-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.track-order-page .page-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 700;
}

.track-order-form-section {
    max-width: 600px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.track-order-form-box {
    background: #f8fafc;
    background: var(--bg-light, #f8fafc);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    border: 1px solid var(--border-color, #e5e7eb);
}

.track-order-form-box h2 {
    margin: 0 0 0.5rem 0;
    color: #1a1a1a;
    color: var(--text-color, #1a1a1a);
    font-size: 1.5rem;
    font-weight: 600;
}

.track-order-form-box p {
    color: #6b7280;
    color: var(--text-light, #6b7280);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.track-order-form {
    margin-top: 1.5rem;
}

.track-order-form .form-group {
    margin-bottom: 1.5rem;
}

.track-order-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a1a1a;
    color: var(--text-color, #1a1a1a);
}

.track-order-form .form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e5e7eb;
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.track-order-form .form-group input:focus {
    outline: none;
    border-color: #3399cc;
    border-color: var(--primary-color, #3399cc);
    box-shadow: 0 0 0 3px rgba(51, 153, 204, 0.1);
}

.order-tracking-results {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.order-status-section {
    background: #f8fafc;
    background: var(--bg-light, #f8fafc);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    border: 1px solid var(--border-color, #e5e7eb);
}

.order-status-section h2 {
    margin: 0 0 2rem 0;
    color: #1a1a1a;
    color: var(--text-color, #1a1a1a);
    font-size: 1.75rem;
    font-weight: 700;
    border-bottom: 2px solid #3399cc;
    border-bottom: 2px solid var(--primary-color, #3399cc);
    padding-bottom: 0.75rem;
}

.order-status-timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-item.completed .timeline-icon {
    background: #4caf50;
    color: white;
}

.timeline-item.active .timeline-icon {
    background: #3399cc;
    background: var(--primary-color, #3399cc);
    color: white;
    box-shadow: 0 0 0 4px rgba(51, 153, 204, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(51, 153, 204, 0.2);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(51, 153, 204, 0.1);
    }
}

.timeline-item.cancelled .timeline-icon {
    background: #f44336;
    color: white;
}

.status-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
    min-width: 0;
}

.timeline-content h4 {
    margin: 0 0 0.25rem 0;
    color: #1a1a1a;
    color: var(--text-color, #1a1a1a);
    font-size: 1.1rem;
    font-weight: 600;
}

.timeline-content p {
    margin: 0;
    color: #6b7280;
    color: var(--text-light, #6b7280);
    font-size: 0.9rem;
    line-height: 1.5;
}

.current-status-badge {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: #3399cc;
    background: var(--primary-color, #3399cc);
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-connector {
    width: 2px;
    height: 40px;
    background: #e0e0e0;
    margin-left: 24px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.timeline-connector.completed {
    background: #4caf50;
}

.order-details-section {
    margin-bottom: 2rem;
}

.order-details-section h2 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    color: var(--text-color, #1a1a1a);
    font-size: 1.75rem;
    font-weight: 700;
    border-bottom: 2px solid #3399cc;
    border-bottom: 2px solid var(--primary-color, #3399cc);
    padding-bottom: 0.75rem;
}

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.order-info-card {
    background: #f8fafc;
    background: var(--bg-light, #f8fafc);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    border: 1px solid var(--border-color, #e5e7eb);
}

.order-info-card h3 {
    margin: 0 0 1rem 0;
    color: #1a1a1a;
    color: var(--text-color, #1a1a1a);
    border-bottom: 2px solid #3399cc;
    border-bottom: 2px solid var(--primary-color, #3399cc);
    padding-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: #6b7280;
    color: var(--text-light, #6b7280);
    font-weight: 500;
    flex-shrink: 0;
}

.info-value {
    color: #1a1a1a;
    color: var(--text-color, #1a1a1a);
    text-align: right;
    word-break: break-word;
}

.status-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.status-pending {
    background: #ff9800;
    color: white;
}

.status-badge.status-confirmed {
    background: #2196f3;
    color: white;
}

.status-badge.status-dispatched {
    background: #9c27b0;
    color: white;
}

.status-badge.status-installed {
    background: #4caf50;
    color: white;
}

.status-badge.status-cancelled {
    background: #f44336;
    color: white;
}

.address-info {
    color: var(--text-dark);
    line-height: 1.8;
}

.address-info p {
    margin: 0.5rem 0;
}

.installation-notice {
    margin-top: 1rem;
    padding: 1rem;
    background: #e3f2fd;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.installation-notice strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.order-items-section {
    background: #f8fafc;
    background: var(--bg-light, #f8fafc);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    border: 1px solid var(--border-color, #e5e7eb);
}

.order-items-section h2 {
    margin: 0 0 1.5rem 0;
    color: #1a1a1a;
    color: var(--text-color, #1a1a1a);
    font-size: 1.75rem;
    font-weight: 700;
    border-bottom: 2px solid #3399cc;
    border-bottom: 2px solid var(--primary-color, #3399cc);
    padding-bottom: 0.75rem;
}

.order-items-table-wrapper {
    overflow-x: auto;
}

.order-items-table {
    width: 100%;
    border-collapse: collapse;
}

.order-items-table th {
    background: #3399cc;
    background: var(--primary-color, #3399cc);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.order-items-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    border-bottom: 1px solid var(--border-color, #e5e7eb);
    color: #1a1a1a;
    color: var(--text-color, #1a1a1a);
    font-size: 0.95rem;
}

.order-items-table tfoot {
    font-weight: 600;
}

.order-items-table tfoot td {
    border-top: 2px solid #3399cc;
    border-top: 2px solid var(--primary-color, #3399cc);
    border-bottom: none;
    font-size: 1rem;
}

.order-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.order-actions .btn {
    min-width: 150px;
}

/* Responsive Design for Track Order Page */
@media (max-width: 768px) {
    .track-order-page {
        padding: 1.5rem 0;
    }
    
    .track-order-page .page-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .track-order-form-section {
        margin: 1.5rem auto;
        padding: 0 0.5rem;
    }
    
    .track-order-form-box {
        padding: 1.5rem;
        border-radius: 8px;
    }
    
    .track-order-form-box h2 {
        font-size: 1.25rem;
    }
    
    .order-tracking-results {
        margin: 1.5rem auto;
        padding: 0 0.5rem;
    }
    
    .order-status-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 8px;
    }
    
    .order-status-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .order-status-timeline {
        padding-left: 0.5rem;
    }
    
    .timeline-item {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .timeline-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .status-icon {
        font-size: 1.25rem;
    }
    
    .timeline-content {
        padding-top: 0.25rem;
    }
    
    .timeline-content h4 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
    
    .timeline-connector {
        margin-left: 22px;
        height: 30px;
    }
    
    .order-details-section {
        margin-bottom: 1.5rem;
    }
    
    .order-details-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .order-info-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .order-info-card {
        padding: 1.25rem;
    }
    
    .order-info-card h3 {
        font-size: 1.1rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        padding: 0.5rem 0;
    }
    
    .info-label {
        font-size: 0.9rem;
    }
    
    .info-value {
        text-align: left;
        font-size: 0.95rem;
        word-break: break-word;
    }
    
    .order-items-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 8px;
    }
    
    .order-items-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .order-items-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .order-items-table {
        min-width: 500px;
        font-size: 0.9rem;
    }
    
    .order-items-table th,
    .order-items-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .order-items-table th {
        font-size: 0.8rem;
    }
    
    .order-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .order-actions .btn {
        width: 100%;
        min-width: auto;
        padding: 0.875rem 1rem;
    }
}

@media (max-width: 480px) {
    .track-order-page .page-title {
        font-size: 1.5rem;
    }
    
    .track-order-form-box {
        padding: 1.25rem;
    }
    
    .order-status-section,
    .order-items-section,
    .order-info-card {
        padding: 1.25rem;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .status-icon {
        font-size: 1.1rem;
    }
    
    .timeline-connector {
        margin-left: 20px;
        height: 25px;
    }
    
    .order-items-table {
        min-width: 400px;
        font-size: 0.85rem;
    }
    
    .order-items-table th,
    .order-items-table td {
        padding: 0.5rem 0.25rem;
        font-size: 0.8rem;
    }
}

/* Legal Pages (Terms & Conditions, Refund Policy) */
.legal-page {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    min-height: 100vh;
}

.legal-page .container {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page .page-title {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    display: inline-block;
    width: auto;
    margin-left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.legal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.legal-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.legal-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(51, 153, 204, 0.2);
}

.legal-section h2::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
}

.legal-section h3 {
    color: var(--text-dark);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-section h3::before {
    content: '▸';
    color: var(--primary-color);
    font-size: 1.2rem;
}

.legal-section p {
    color: var(--text-dark);
    line-height: 1.9;
    margin: 1rem 0;
    font-size: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1.25rem 0;
    padding-left: 2.5rem;
    color: var(--text-dark);
    line-height: 2;
}

.legal-section ul {
    list-style: none;
    padding-left: 1.5rem;
}

.legal-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin: 0.75rem 0;
}

.legal-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.legal-section ol li {
    margin: 0.75rem 0;
    padding-left: 0.5rem;
}

.legal-section li {
    color: var(--text-dark);
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.legal-section a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.legal-section strong {
    color: var(--text-dark);
    font-weight: 700;
    background: linear-gradient(135deg, rgba(51, 153, 204, 0.1) 0%, rgba(51, 153, 204, 0.05) 100%);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.legal-section blockquote,
.legal-section .highlight-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-section .company-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border: 1px solid var(--border-color);
}

.legal-section .company-info p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-section .company-info strong {
    min-width: 120px;
    background: none;
    padding: 0;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 2rem 0;
    }
    
    .legal-page .page-title {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .legal-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.4rem;
    }
    
    .legal-section h3 {
        font-size: 1.15rem;
    }
    
    .legal-section ul {
        padding-left: 1rem;
    }
    
    .legal-section ul li {
        padding-left: 1.25rem;
    }
    
    .legal-section ol {
        padding-left: 1.5rem;
    }
    
    .last-updated {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

.notification-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.3s;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-close:hover {
    opacity: 1;
}

/* Notification Types */
.notification-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-left: 4px solid #1e7e34;
}

.notification-success .notification-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.notification-error {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border-left: 4px solid #bd2130;
}

.notification-error .notification-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.notification-info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    border-left: 4px solid #117a8b;
}

.notification-info .notification-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.notification-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #212529;
    border-left: 4px solid #d39e00;
}

.notification-warning .notification-icon {
    background: rgba(0, 0, 0, 0.1);
    color: #212529;
}

/* Order Success Popup - Special Styling */
.order-success-popup {
    position: relative;
    top: auto;
    right: auto;
    margin: 0 auto 2rem auto;
    max-width: 600px;
    animation: slideDown 0.5s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.notification-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.notification-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.notification-message {
    font-size: 0.9rem;
    opacity: 0.95;
}

/* Responsive Notifications */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: 100%;
    }
    
    .order-success-popup {
        margin: 0 1rem 2rem 1rem;
    }
}
