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

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #555555;
    background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #222222;
    line-height: 1.2;
}

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

/* Header Styles */
.header {
    background: #FFFFFF;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    position: relative;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #222222;
}

.brand-icon {
    width: 32px;
    height: 32px;
    color: #4CAF50;
}

.brand-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
}

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

.nav-link {
    text-decoration: none;
    color: #555555;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #4CAF50;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: #4CAF50;
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-btn,
.cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    position: relative;
}

.search-btn:hover,
.cart-btn:hover {
    background-color: #F4F4F4;
}

.search-btn svg,
.cart-btn svg {
    width: 24px;
    height: 24px;
    color: #555555;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: #555555;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F4F4F4 0%, #FFFFFF 100%);
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    color: #555555;
    line-height: 1.5;
}

.cta-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.cta-button:hover {
    background: #45A049;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: #FFFFFF;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555555;
    margin-bottom: 64px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.category-card {
    text-align: center;
    padding: 40px 24px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45A049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

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

.category-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.category-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.category-card p {
    color: #555555;
    font-size: 16px;
}

/* Featured Products */
.featured {
    padding: 80px 0;
    background: #F4F4F4;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.product-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    min-height: 220px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #FF7043;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222222;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 16px;
}

.product-description {
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 0;
}

.add-to-cart-btn {
    width: 100%;
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #45A049;
    transform: translateY(-2px);
}

.product-info .add-to-cart-btn {
    margin-top: auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #FFFFFF;
}

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

.feature-card {
    text-align: center;
    padding: 40px 24px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF7043, #FF5722);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 16px;
    color: #555555;
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #F4F4F4;
}

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

.testimonial-card {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stars {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.customer-info strong {
    display: block;
    font-size: 18px;
    color: #222222;
    margin-bottom: 4px;
}

.customer-info span {
    font-size: 14px;
    color: #555555;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #4CAF50, #45A049);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 16px;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    background: #FF7043;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #FF5722;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #222222;
    color: #FFFFFF;
    padding: 60px 0 24px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand span {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.footer-section h3 {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

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

.footer-section ul li a:hover {
    color: #4CAF50;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #444444;
    color: #CCCCCC;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #FFFFFF;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid #F4F4F4;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 20px;
}

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #555555;
    padding: 4px;
}

.cart-items {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    padding: 40px 0;
}

.empty-cart p {
    margin-bottom: 20px;
    color: #555555;
}

.shop-link {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #F4F4F4;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.cart-item-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222222;
}

.cart-item-price {
    font-size: 18px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 8px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-btn {
    background: #F4F4F4;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.quantity-btn:hover {
    background: #E0E0E0;
}

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

.cart-footer {
    padding: 24px;
    border-top: 1px solid #F4F4F4;
}

.cart-total {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.checkout-btn {
    width: 100%;
    background: #4CAF50;
    color: white;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: #45A049;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Shop Page Styles */
.shop-header {
    background: #F4F4F4;
    padding: 60px 0;
    text-align: center;
}

.shop-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.shop-header p {
    font-size: 18px;
    color: #555555;
}

.shop-content {
    padding: 60px 0;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
}

.filters-sidebar {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.filter-section {
    margin-bottom: 32px;
}

.filter-section h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #222222;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #555555;
}

.filter-option input {
    margin: 0;
}

.sort-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #F4F4F4;
    border-radius: 8px;
    font-size: 14px;
    color: #555555;
    background: #FFFFFF;
    cursor: pointer;
}

.products-main {
    min-height: 600px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.products-count {
    font-size: 16px;
    color: #555555;
}

.filter-toggle {
    display: none;
    background: #F4F4F4;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    gap: 8px;
    align-items: center;
}

.filter-toggle svg {
    width: 16px;
    height: 16px;
}

/* Product Details Page */
.breadcrumb {
    background: #F4F4F4;
    padding: 20px 0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: #4CAF50;
    text-decoration: none;
}

.breadcrumb-nav span {
    color: #555555;
}

.product-details {
    padding: 60px 0;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.main-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 500px;
    min-height: 320px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-images {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: #4CAF50;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-detail {
    padding-top: 20px;
}

.product-title-detail {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.product-price-detail {
    font-size: 28px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 24px;
}

.product-description-detail {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.product-features {
    margin-bottom: 32px;
}

.product-features h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

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

.product-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.quantity-selector label {
    font-weight: 600;
}

.quantity-input {
    width: 80px;
    padding: 12px;
    border: 2px solid #F4F4F4;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
}

.product-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.add-to-cart-main {
    flex: 2;
    background: #4CAF50;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-main:hover {
    background: #45A049;
    transform: translateY(-2px);
}

.wishlist-btn {
    flex: 1;
    background: #FFFFFF;
    color: #555555;
    border: 2px solid #F4F4F4;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wishlist-btn:hover {
    border-color: #4CAF50;
    color: #4CAF50;
}

.wishlist-btn svg {
    width: 20px;
    height: 20px;
}

/* About Page */
.about-hero {
    background: #F4F4F4;
    padding: 80px 0;
}

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

.about-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
}

.about-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #555555;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.values {
    padding: 80px 0;
    background: #FFFFFF;
}

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

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: #F4F4F4;
    border-radius: 20px;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45A049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 16px;
    color: #555555;
    line-height: 1.5;
}

.story {
    padding: 80px 0;
    background: #F4F4F4;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.story-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

/* Contact Page */
.contact-hero {
    background: #F4F4F4;
    padding: 60px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 18px;
    color: #555555;
}

.contact-content {
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-form {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
    font-size: 28px;
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #F4F4F4;
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

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

.submit-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #45A049;
    transform: translateY(-2px);
}

.contact-info {
    padding: 40px;
    background: #F4F4F4;
    border-radius: 20px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 32px;
}

.contact-methods {
    margin-bottom: 40px;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #45A049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-method h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-method p {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 4px;
}

.contact-method span {
    font-size: 14px;
    color: #555555;
}

.faq-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item strong {
    display: block;
    margin-bottom: 8px;
    color: #222222;
}

.faq-item p {
    font-size: 14px;
    line-height: 1.5;
}

/* Related Products */
.related-products {
    padding: 80px 0;
    background: #F4F4F4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 24px;
    }
    
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .filters-sidebar {
        position: static;
        order: 2;
    }
    
    .products-main {
        order: 1;
    }
    
    .filter-toggle {
        display: flex;
    }
    
    .about-content,
    .story-content,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .product-gallery {
        position: static;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 12px 16px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #FFFFFF;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .categories,
    .featured,
    .features,
    .testimonials,
    .newsletter {
        padding: 60px 0;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .category-card {
        padding: 24px 16px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 32px;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .filters-sidebar {
        display: none;
    }
    
    .filters-sidebar.mobile-open {
        display: block;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        z-index: 1000;
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid,
    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.bounce-in {
    animation: bounceIn 0.6s ease forwards;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    border: 3px solid #F4F4F4;
    border-top: 3px solid #4CAF50;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success States */
.success-message {
    background: #4CAF50;
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    margin: 16px 0;
    text-align: center;
    font-weight: 600;
}

.error-message {
    background: #f44336;
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    margin: 16px 0;
    text-align: center;
    font-weight: 600;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.flex {
    display: flex;
}

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

.grid {
    display: grid;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cart-sidebar,
    .cart-overlay {
        display: none;
    }
}
