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

:root {
    /* Color Palette from Design Proposal */
    --primary-orange: rgb(254, 153, 0);
    --primary-orange-hover: rgb(255, 140, 0);
    --navy-blue: #1e3a8a;
    --gold: #d97706;
    --eggshell: #fafaf9;
    --beige: #f5f5f4;
    --light-grey: #f8fafc;
    --dark-grey: #374151;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --black: #000000;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 4rem 0;
    --border-radius: 12px;
    --border-radius-small: 8px;
    
    /* Shadows */
    --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 25px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--eggshell);
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-orange-hover);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius-small);
    font-family: var(--font-body);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-orange-hover);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
}

.btn-secondary {
    background-color: var(--eggshell);
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: var(--transition-medium);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

/* Header */
.header {
    background-color: var(--eggshell);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-orange);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--eggshell);
    box-shadow: var(--shadow-medium);
    border-radius: var(--border-radius-small);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    list-style: none;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background-color: var(--beige);
    color: var(--primary-orange);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--eggshell) 0%, var(--beige) 100%);
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
}

/* Sections */
section {
    padding: var(--section-padding);
}

section:nth-child(even) {
    background-color: var(--beige);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background-color: var(--eggshell);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

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

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-content {
    padding: 1.5rem;
}

.product-features {
    margin: 1rem 0;
    padding: 1rem;
    background-color: var(--beige);
    border-radius: var(--border-radius-small);
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background-color: var(--eggshell);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
}

.review-stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1rem;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    background-color: var(--eggshell);
    margin-bottom: 1rem;
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.faq-item h3 {
    background-color: var(--beige);
    padding: 1rem;
    margin: 0;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-item h3:hover {
    background-color: var(--beige);
}

.faq-item div[itemprop="acceptedAnswer"] {
    padding: 1rem;
}

/* Footer */
.footer {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: var(--border-radius-small);
    z-index: 1001;
}

.skip-link:focus {
    top: 6px;
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--beige);
    padding: 1rem 0;
    border-bottom: 1px solid var(--beige);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: var(--text-light);
}

.breadcrumb-list a {
    color: var(--text-light);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    color: var(--primary-orange);
}

/* Product Hero Section */
.product-hero {
    padding: 3rem 0;
    background-color: var(--eggshell);
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.product-main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 500px;
}

.thumbnail-images {
    display: flex;
    gap: 0.5rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-small);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    object-fit: contain;
    background-color: var(--white);
}

.thumbnail.active,
.thumbnail:hover {
    border-color: var(--primary-orange);
}

/* Product Info */
.product-info h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
}

.rating-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Product Options */
.product-options {
    margin-bottom: 2rem;
}

.option-group {
    margin-bottom: 1.5rem;
}

.option-group h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.option-buttons {
    display: flex;
    gap: 0.5rem;
}

.option-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--light-grey);
    background: var(--eggshell);
    border-radius: var(--border-radius-small);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.option-btn.active,
.option-btn:hover {
    border-color: var(--primary-orange);
    background-color: var(--primary-orange);
    color: var(--white);
}

.color-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.color-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-light);
}

.color-btn.active,
.color-btn:hover {
    border-color: var(--primary-orange);
    transform: scale(1.1);
}

/* Product Features */
.product-features {
    background-color: var(--beige);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.product-features h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-features ul {
    list-style: none;
}

.product-features li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Product Details */
.product-details {
    padding: 3rem 0;
    background-color: var(--beige);
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.details-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.details-content h3 {
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.details-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.safety-tip {
    background-color: var(--eggshell);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-orange);
    margin-top: 2rem;
}

.safety-tip h4 {
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

/* Details Sidebar */
.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.specifications,
.usage-guide {
    background-color: var(--eggshell);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.specifications h3,
.usage-guide h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.specifications ul,
.usage-guide ul {
    list-style: none;
}

.specifications li,
.usage-guide li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    color: var(--text-light);
}

.specifications li::before,
.usage-guide li::before {
    content: '•';
    color: var(--primary-orange);
    position: absolute;
    left: 0;
}

/* Reviews Summary */
.reviews-summary {
    text-align: center;
    margin-bottom: 2rem;
}

.overall-rating {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.total-reviews {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Related Products */
.related-products {
    padding: 3rem 0;
    background-color: var(--eggshell);
}

/* Instructions Section */
.instructions-section {
    padding: 3rem 0;
    background-color: var(--eggshell);
}

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

.instruction-step {
    background-color: var(--beige);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.instruction-step h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.instruction-step ol {
    padding-left: 1.5rem;
}

.instruction-step li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.important-notes {
    background-color: var(--eggshell);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-orange);
    margin-top: 2rem;
    box-shadow: var(--shadow-light);
}

.important-notes h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.important-notes ul {
    list-style: none;
}

.important-notes li {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Manual Section */
.manual-section {
    padding: 3rem 0;
    background-color: var(--beige);
}

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

.manual-download {
    margin: 2rem 0;
}

.manual-info {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.manual-contents {
    text-align: left;
    background-color: var(--eggshell);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-top: 2rem;
}

.manual-contents h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.manual-contents ul {
    list-style: none;
}

.manual-contents li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    color: var(--text-light);
}

.manual-contents li::before {
    content: '•';
    color: var(--primary-orange);
    position: absolute;
    left: 0;
}

/* Troubleshooting Section */
.troubleshooting-section {
    padding: 3rem 0;
    background-color: var(--eggshell);
}

.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.trouble-item {
    background-color: var(--beige);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.trouble-item h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.trouble-solution h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.trouble-solution ul {
    list-style: none;
}

.trouble-solution li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    color: var(--text-light);
}

.trouble-solution li::before {
    content: '•';
    color: var(--primary-orange);
    position: absolute;
    left: 0;
}

.maintenance-tips {
    background-color: var(--eggshell);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-orange);
    margin-top: 2rem;
    box-shadow: var(--shadow-light);
}

.maintenance-tips h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.maintenance-tips ul {
    list-style: none;
}

.maintenance-tips li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    color: var(--text-light);
}

.maintenance-tips li::before {
    content: '•';
    color: var(--primary-orange);
    position: absolute;
    left: 0;
}

/* Package Contents */
.package-contents {
    background-color: var(--eggshell);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-orange);
    margin-top: 2rem;
}

.package-contents h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.package-contents ul {
    list-style: none;
}

.package-contents li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    color: var(--text-light);
}

.package-contents li::before {
    content: '•';
    color: var(--primary-orange);
    position: absolute;
    left: 0;
}

/* Training Guide */
.training-guide {
    background-color: var(--eggshell);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-orange);
    margin-top: 2rem;
    box-shadow: var(--shadow-light);
}

.training-guide h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.training-guide ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.training-guide li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.training-guide p {
    color: var(--text-light);
    font-style: italic;
}

/* Training Applications */
.training-applications {
    background-color: var(--beige);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.training-applications h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.training-applications ul {
    list-style: none;
}

.training-applications li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    color: var(--text-light);
}

.training-applications li::before {
    content: '•';
    color: var(--primary-orange);
    position: absolute;
    left: 0;
}

/* Care Instructions */
.care-instructions {
    background-color: var(--beige);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.care-instructions h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.care-instructions ul {
    list-style: none;
}

.care-instructions li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    color: var(--text-light);
}

.care-instructions li::before {
    content: '•';
    color: var(--primary-orange);
    position: absolute;
    left: 0;
}

/* About Us Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-hover));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Our Story Section */
.our-story {
    padding: 4rem 0;
    background-color: var(--eggshell);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.story-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-light);
}

.story-content blockquote {
    background-color: var(--beige);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-orange);
    font-style: italic;
    margin: 2rem 0;
    color: var(--text-dark);
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

/* Our Mission Section */
.our-mission {
    padding: 4rem 0;
    background-color: var(--beige);
}

.our-mission h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.mission-card {
    background-color: var(--eggshell);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mission-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Our Values Section */
.our-values {
    padding: 4rem 0;
    background-color: var(--eggshell);
}

.our-values h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.values-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-item {
    background-color: var(--beige);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-orange);
}

.value-item h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Product Categories Section */
.product-categories {
    padding: 4rem 0;
    background-color: var(--beige);
}

.product-categories h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: var(--eggshell);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-fast);
}

.category-card:hover .category-img {
    transform: scale(1.05);
}

.category-content {
    padding: 1.5rem;
}

.category-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.category-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 4rem 0;
    background-color: var(--eggshell);
}

.why-choose h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.reason-item {
    text-align: center;
    padding: 2rem;
}

.reason-item h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.reason-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-hover));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Gift Features */
.gift-features {
    background-color: var(--beige);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.gift-features h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.gift-features ul {
    list-style: none;
}

.gift-features li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    color: var(--text-light);
}

.gift-features li::before {
    content: '•';
    color: var(--primary-orange);
    position: absolute;
    left: 0;
}

/* Filtration Benefits */
.filtration-benefits {
    background-color: var(--beige);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.filtration-benefits h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.filtration-benefits ul {
    list-style: none;
}

.filtration-benefits li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    color: var(--text-light);
}

.filtration-benefits li::before {
    content: '•';
    color: var(--primary-orange);
    position: absolute;
    left: 0;
}

/* Contact Us Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-hover));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--eggshell);
}

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

.contact-card {
    background-color: var(--beige);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.response-time {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background-color: var(--beige);
}

.form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.form-content h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.form-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    background-color: var(--eggshell);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--light-grey);
    border-radius: var(--border-radius-small);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-light);
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-preview,
.business-hours {
    background-color: var(--eggshell);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.faq-preview h3,
.business-hours h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.business-hours ul {
    list-style: none;
    margin-bottom: 1rem;
}

.business-hours li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.note {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

/* Office Location Section */
.office-location {
    padding: 4rem 0;
    background-color: var(--eggshell);
}

.office-location h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.office-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.office-details h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.office-details address {
    margin-bottom: 2rem;
}

.office-details address p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.office-contact p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.office-map {
    background-color: var(--beige);
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 300px;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: var(--text-light);
    text-align: center;
}

.map-placeholder p:first-child {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Social Media Section */
.social-media {
    padding: 4rem 0;
    background-color: var(--beige);
    text-align: center;
}

.social-media h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.social-media > .container > p {
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.social-card {
    background-color: var(--eggshell);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.social-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.social-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.social-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Privacy Policy & Terms of Service Page Styles */
.privacy-content {
    padding: 3rem 0;
    background-color: var(--eggshell);
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-header h1 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    color: var(--primary-orange);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

.policy-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-info {
    background-color: var(--beige);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--primary-orange);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Enhanced Homepage Styles */

/* Enhanced Hero Section */
.hero-trust-indicators {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta-group .btn {
    min-width: 150px;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
}

/* Hero Logo */
.hero-logo {
    text-align: center;
}

.hero-logo-img {
    max-width: 250px;
    height: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    /* Ensure consistent sizing */
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.hero-secondary-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    animation: fadeInUp 1s ease-out 0.4s both;
    /* Ensure same visual size as hero-main-image */
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
}

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



.trust-item .stars {
    color: var(--primary-orange);
    font-size: 1rem;
}



/* Product Hero Sections */
.product-hero-section {
    padding: 4rem 0;
    background-color: var(--eggshell);
}

.product-hero-section.alt-bg {
    background-color: var(--beige);
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-images {
    position: relative;
}

.product-main-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    aspect-ratio: 4/3;
    background-color: var(--white);
}

/* Prevent layout shifts */
.product-main-img[width][height] {
    aspect-ratio: attr(width) / attr(height);
}

.thumbnail-images {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: var(--border-radius-small);
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-orange);
}

.product-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-rating .stars {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.rating-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-options {
    margin: 2rem 0;
}

.option-group {
    margin-bottom: 1.5rem;
}

.option-group h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.option-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.option-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--beige);
    background: var(--eggshell);
    border-radius: var(--border-radius-small);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.option-btn:hover,
.option-btn.active {
    border-color: var(--primary-orange);
    background: var(--primary-orange);
    color: white;
}

.color-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.color-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.color-btn:hover,
.color-btn.active {
    border-color: var(--primary-orange);
}

.product-features {
    margin: 2rem 0;
}

.product-features h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background-color: var(--beige);
}

.trust-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-dark);
}

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

.trust-card {
    background: var(--eggshell);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.trust-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Enhanced Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background-color: var(--eggshell);
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--eggshell);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-orange);
}

.review-stars {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.review-author {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design for New Elements */
@media (max-width: 992px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-trust-indicators {
        justify-content: center;
    }
    
    .product-info h2 {
        font-size: 1.8rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-product-showcase {
        max-width: 100%;
        height: 300px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        flex: none;
    }
    
    .trust-section h2,
    .reviews-section h2 {
        font-size: 2rem;
    }
    
    .hero-trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
}
