/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: #0B6C83;
    color: white;
    border-color: #0B6C83;
}

.btn-primary:hover {
    background-color: #009EAD;
    border-color: #009EAD;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #0B6C83;
    border-color: #0B6C83;
}

.btn-outline:hover {
    background-color: #0B6C83;
    color: white;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar {
    background-color: #f8f9fa;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 20px;
    color: #666;
}

.top-info i {
    margin-right: 5px;
    color: #0B6C83;
}

.language-selector select {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: white;
    font-size: 13px;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.logo {
    height: 40px;
    margin-right: 10px;
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: #0B6C83;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
    margin: 0 10px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-link:hover,
.nav-link.active {
    color: #0B6C83;
    background-color: #f8f9fa;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 200px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #0B6C83;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.wishlist,
.cart {
    margin-left: 15px;
    color: #333;
    font-size: 18px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.wishlist:hover,
.cart:hover {
    color: #0B6C83;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 120px;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11,108,131,0.8) 0%, rgba(0,158,173,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons .btn {
    margin: 0 10px;
}

.hero-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.hero-prev,
.hero-next {
    position: absolute;
    background-color: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

.hero-prev:hover,
.hero-next:hover {
    background-color: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: white;
    transform: scale(1.2);
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #0B6C83;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.product-categories {
    display: grid;
    gap: 60px;
}

.category-item {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.category-item > p {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.category-item > .btn {
    display: block;
    width: 200px;
    margin: 0 auto 40px;
}

.subcategories h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0B6C83;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.product-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h5 {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.read-more {
    display: block;
    padding: 10px 20px;
    background-color: #0B6C83;
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.read-more:hover {
    background-color: #009EAD;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0B6C83;
    margin-bottom: 15px;
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B6C83;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.key-strengths {
    margin-bottom: 60px;
}

.key-strengths h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.strength-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.strength-item:hover {
    transform: translateY(-5px);
    background-color: #0B6C83;
    color: white;
}

.strength-item i {
    font-size: 3rem;
    color: #0B6C83;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.strength-item:hover i {
    color: white;
}

.strength-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.strength-item:hover h4 {
    color: white;
}

.strength-item p {
    color: #666;
    transition: color 0.3s ease;
}

.strength-item:hover p {
    color: rgba(255,255,255,0.9);
}

.global-scope {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #0B6C83 0%, #009EAD 100%);
    border-radius: 10px;
    color: white;
}

.global-scope h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.global-scope p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* News Section */
.news {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-footer {
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0B6C83;
    box-shadow: 0 0 0 3px rgba(11,108,131,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.contact-methods {
    display: grid;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateX(5px);
}

.contact-method i {
    font-size: 2rem;
    color: #0B6C83;
    margin-right: 20px;
    width: 40px;
    text-align: center;
}

.contact-method h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-method p {
    color: #666;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #009EAD;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #009EAD;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #009EAD;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #34495e;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #0B6C83;
    transform: translateY(-2px);
}

.contact-details p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.contact-details i {
    color: #009EAD;
    margin-right: 10px;
    margin-top: 2px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #009EAD;
}

/* Fixed Contact Buttons */
.fixed-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.phone-btn {
    background-color: #0B6C83;
}

.whatsapp-btn {
    background-color: #25D366;
}

.email-btn {
    background-color: #dc3545;
}

.top-btn {
    background-color: #6c757d;
    border: none;
    cursor: pointer;
}

.contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.about-content .about-text h2 {
    color: #0B6C83;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content .about-text h3 {
    color: #009EAD;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-content .about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 40px 0;
    border-top: 2px solid #e9ecef;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #0B6C83;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.strength-item {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.strength-item i {
    font-size: 3rem;
    color: #0B6C83;
    margin-bottom: 20px;
}

.strength-item:nth-child(even) i {
    color: #009EAD;
}

.strength-item h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.strength-item p {
    color: #666;
    line-height: 1.6;
}

/* About Page Mobile Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content .about-text h2 {
        font-size: 2rem;
    }
    
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .strength-item {
        padding: 30px 20px;
    }
    
    .strength-item i {
        font-size: 2.5rem;
    }
    
    .about-hero h1 {
        font-size: 2rem !important;
    }
    
    .about-hero p {
        font-size: 1.1rem !important;
    }
}

/* Contact Page Styles */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0B6C83, #009EAD);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0B6C83, #009EAD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.contact-card > p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-details a {
    color: #0B6C83;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #009EAD;
}

.contact-details span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Form Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0B6C83;
    box-shadow: 0 0 0 3px rgba(11, 108, 131, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.checkbox-label:hover {
    background-color: #f1f3f4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.consent-checkbox {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #5a6268;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 600;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.sidebar-card h3 {
    color: #0B6C83;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.sidebar-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
}

.sidebar-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.sidebar-card li i {
    color: #009EAD;
    font-size: 0.9rem;
}

.language-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.language-tag {
    background: linear-gradient(135deg, #0B6C83, #009EAD);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #0B6C83;
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.resource-link i {
    font-size: 1.2rem;
    color: #009EAD;
}

/* Office Locations */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.office-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.office-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.office-header h3 {
    color: #0B6C83;
    font-size: 1.3rem;
}

.office-badge {
    background: linear-gradient(135deg, #0B6C83, #009EAD);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.office-details {
    margin-bottom: 20px;
}

.office-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
    line-height: 1.6;
}

.office-details i {
    color: #009EAD;
    width: 16px;
    font-size: 0.9rem;
}

.office-services {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.office-services span {
    color: #666;
    font-size: 0.9rem;
    padding-left: 10px;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.faq-question {
    color: #0B6C83;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question i {
    color: #009EAD;
    font-size: 1rem;
}

.faq-answer {
    color: #666;
    line-height: 1.7;
}

/* Contact Page Mobile Responsive */
@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .office-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-hero h1 {
        font-size: 2rem !important;
    }
    
    .contact-hero p {
        font-size: 1.1rem !important;
    }
}

/* Shop Page Styles */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.search-filter {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
}

.view-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.view-btn {
    transition: all 0.3s ease;
}

.view-btn:hover {
    opacity: 0.8;
}

/* Shop Layout */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 40px;
}

/* Sidebar Styles */
.shop-sidebar {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 140px;
}

.sidebar-widget {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.sidebar-widget:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.sidebar-widget h3 {
    color: #0B6C83;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category-list a:hover {
    background-color: #0B6C83;
    color: white;
}

.category-list span {
    background-color: #e9ecef;
    color: #666;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
}

.category-list a:hover span {
    background-color: rgba(255,255,255,0.2);
    color: white;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.filter-checkbox:hover {
    background-color: #e9ecef;
}

.filter-checkbox input[type="checkbox"] {
    margin: 0;
    width: auto;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.products-grid.list-view {
    grid-template-columns: 1fr;
}

.products-grid.list-view .product-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px;
}

.products-grid.list-view .product-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
}

.products-grid.list-view .product-info {
    flex: 1;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.new { background: #28a745; color: white; }
.badge.bestseller { background: #ffc107; color: #212529; }
.badge.premium { background: #6f42c1; color: white; }
.badge.bluetooth { background: #007bff; color: white; }
.badge.voice { background: #17a2b8; color: white; }
.badge.smart { background: #0B6C83; color: white; }
.badge.affordable { background: #fd7e14; color: white; }
.badge.fast { background: #dc3545; color: white; }
.badge.quiet { background: #6c757d; color: white; }
.badge.portable { background: #20c997; color: white; }
.badge.compact { background: #e83e8c; color: white; }
.badge.therapeutic { background: #009EAD; color: white; }

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.action-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.action-btn:hover {
    background: #0B6C83;
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-category {
    color: #009EAD;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-count {
    color: #666;
    font-size: 0.85rem;
}

.product-features {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.current-price {
    color: #0B6C83;
    font-size: 1.4rem;
    font-weight: 700;
}

.original-price {
    color: #999;
    font-size: 1.1rem;
    text-decoration: line-through;
}

.product-buttons {
    display: flex;
    gap: 10px;
}

.product-buttons .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 108, 131, 0.3);
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e9ecef;
}

.pagination {
    display: flex;
    gap: 10px;
}

.page-link {
    padding: 10px 15px;
    color: #0B6C83;
    text-decoration: none;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: #0B6C83;
    color: white;
    border-color: #0B6C83;
}

.page-link.active {
    background-color: #0B6C83;
    color: white;
    border-color: #0B6C83;
}

.page-link.disabled {
    color: #999;
    cursor: not-allowed;
}

.page-link.disabled:hover {
    background-color: transparent;
    color: #999;
    border-color: #e9ecef;
}

.results-info {
    color: #666;
    font-size: 0.9rem;
}

/* Featured Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0B6C83, #009EAD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-count {
    background: linear-gradient(135deg, #0B6C83, #009EAD);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Shop Mobile Responsive */
@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .shop-sidebar {
        position: static;
        margin-bottom: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .search-filter {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-filter input,
    .search-filter select {
        width: 100%;
    }
    
    .view-controls {
        justify-content: space-between;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .products-grid.list-view .product-card {
        flex-direction: column;
        text-align: center;
    }
    
    .products-grid.list-view .product-image {
        width: 100%;
        height: 220px;
    }
    
    .product-buttons {
        flex-direction: column;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .pagination-wrapper {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .pagination {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .shop-hero h1 {
        font-size: 2rem !important;
    }
    
    .shop-hero p {
        font-size: 1.1rem !important;
    }
}

/* Notification Styles */
.notification {
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Product Detail Page Styles */
.breadcrumb {
    color: #666;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #0B6C83;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 10px;
    color: #999;
}

/* Product Layout */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Product Images */
.product-images {
    position: sticky;
    top: 140px;
}

.main-image {
    position: relative;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f9fa;
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.image-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.image-zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-zoom:hover {
    background: white;
    transform: scale(1.1);
}

.thumbnail-images {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-images img:hover,
.thumbnail-images img.active {
    border-color: #0B6C83;
    transform: scale(1.05);
}

/* Product Information */
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.product-category {
    color: #009EAD;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.product-sku {
    color: #666;
    font-size: 0.9rem;
}

.product-title {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.rating-value {
    font-weight: 600;
    color: #333;
}

.review-count {
    color: #666;
}

.write-review {
    color: #0B6C83;
    text-decoration: none;
    font-weight: 600;
}

.write-review:hover {
    text-decoration: underline;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B6C83;
}

.original-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
}

.savings {
    background: #dc3545;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.availability {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: #28a745;
    font-weight: 600;
}

.availability i {
    color: #28a745;
}

.shipping-info {
    color: #666;
    font-weight: normal;
}

.product-description {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.product-description p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.key-features {
    margin-bottom: 30px;
}

.key-features h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.key-features ul {
    list-style: none;
    padding: 0;
}

.key-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #666;
}

.key-features i {
    color: #28a745;
    font-size: 0.9rem;
}

/* Product Actions */
.product-actions {
    border-top: 1px solid #e9ecef;
    padding-top: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.quantity-selector label {
    font-weight: 600;
    color: #333;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-controls button {
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #666;
    transition: all 0.3s ease;
}

.quantity-controls button:hover {
    background: #0B6C83;
    color: white;
}

.quantity-controls input {
    border: none;
    width: 60px;
    height: 40px;
    text-align: center;
    font-weight: 600;
    color: #333;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.action-buttons .btn {
    flex: 1;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
}

.secondary-actions {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.action-link {
    background: none;
    border: none;
    color: #0B6C83;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.action-link:hover {
    color: #009EAD;
}

.action-link i {
    margin-right: 8px;
}

.trust-signals {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
}

.trust-item i {
    color: #28a745;
    font-size: 1.1rem;
}

/* Product Tabs */
.tabs-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    overflow: hidden;
}

.tab-nav {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.tab-btn {
    flex: 1;
    padding: 20px 25px;
    background: none;
    border: none;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    background: #e9ecef;
    color: #333;
}

.tab-btn.active {
    background: white;
    color: #0B6C83;
    border-bottom-color: #0B6C83;
}

.tab-content {
    padding: 40px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Tab Content Styles */
.description-content h3,
.specifications-content h3,
.included-content h3,
.reviews-content h3,
.support-content h3 {
    color: #333;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.feature-item i {
    color: #28a745;
}

.specs-table {
    display: grid;
    gap: 1px;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.spec-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: white;
}

.spec-label {
    padding: 20px;
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.spec-value {
    padding: 20px;
    color: #666;
}

.included-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.included-item i {
    color: #0B6C83;
    font-size: 1.2rem;
}

/* Reviews Styles */
.reviews-summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.rating-overview {
    display: flex;
    gap: 40px;
    align-items: center;
}

.average-rating {
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0B6C83;
}

.total-reviews {
    color: #666;
    margin-top: 10px;
    display: block;
}

.rating-breakdown {
    min-width: 200px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.rating-bar span:first-child {
    min-width: 50px;
}

.rating-bar span:last-child {
    min-width: 35px;
    text-align: right;
}

.bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: #ffc107;
    transition: width 0.3s ease;
}

.review-item {
    padding: 25px;
    border-bottom: 1px solid #e9ecef;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: 600;
    color: #333;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
    margin-left: 15px;
}

.review-content h5 {
    color: #333;
    margin-bottom: 10px;
}

.review-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.helpful-btn {
    background: none;
    border: 1px solid #e9ecef;
    padding: 8px 15px;
    border-radius: 20px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.helpful-btn:hover {
    background: #0B6C83;
    color: white;
    border-color: #0B6C83;
}

/* Support Styles */
.support-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.support-section h4 {
    color: #0B6C83;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-section ul {
    list-style: none;
    padding: 0;
}

.support-section li {
    margin-bottom: 12px;
}

.support-section a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0B6C83;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.support-section a:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.faq-item h5 {
    color: #333;
    margin-bottom: 10px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.support-option:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.support-option i {
    font-size: 1.5rem;
    color: #0B6C83;
}

.support-option h5 {
    color: #333;
    margin-bottom: 5px;
}

.support-option p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Related Products */
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.related-grid .product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.related-grid .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.related-grid .product-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.related-grid .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-grid .product-info {
    padding: 25px;
}

.related-grid .product-info h4 {
    color: #333;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

/* Image Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox .close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.lightbox .close:hover {
    opacity: 0.7;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    transform: translateY(-50%);
}

.nav-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.4);
}

/* Product Detail Mobile Responsive */
@media (max-width: 1024px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-images {
        position: static;
    }
    
    .tabs-container {
        margin-top: 40px;
    }
    
    .tab-nav {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: none;
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 1.8rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .product-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .product-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .secondary-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .rating-overview {
        flex-direction: column;
        gap: 25px;
    }
    
    .support-sections {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .related-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .tab-content {
        padding: 25px 20px;
    }
    
    .lightbox-nav {
        padding: 0 20px;
    }
    
    .nav-btn {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
}