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

:root {
    --primary: #8b0000;
    --secondary: #6b4226;
    --background: #faf9f6;
    --foreground: #1e1e1e;
    --muted: #f5f4f1;
    --muted-2: #fae2e2;
    --border: #e5e3e0;
    --radius: 0.625rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary);
}

@media (max-width: 768px) {
    .logo-text {
        display: none;
    }
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--foreground);
    transition: color 0.3s ease;
}

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

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--foreground);
    transition: color 0.3s ease;
}

.cart-btn:hover {
    color: var(--primary);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-nav {
    border-top: 1px solid var(--border);
}

.mobile-nav-content {
    padding: 0.5rem 0 0.75rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    color: var(--foreground);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
}

.cart-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cart-content {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background: var(--background);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart-drawer:not(.hidden) .cart-content {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    color: var(--foreground);
}

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

.empty-cart {
    text-align: center;
    color: #666;
    margin-top: 2rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius);
}

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

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-btn {
    background: var(--muted);
    border: none;
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--border);
}

.remove-btn {
    background: none;
    border: none;
    color: #dc2626;
    cursor: pointer;
    padding: 0.25rem;
}

.cart-footer {
    padding: 1rem;
    border-top: 1px solid var(--border);
}

.cart-total {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.125rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #7a0000;
}

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

.btn-secondary:hover {
    background: #5a3520;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--foreground);
}

.checkout-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.checkout-btn:hover {
    background: #7a0000;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e5e7eb;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: var(--foreground);
}

/* Featured Categories */
.featured-categories {
    padding: 5rem 0;
    background: var(--background);
}

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

@media (min-width: 640px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
}

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

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

.category-content {
    padding: 1.5rem;
    text-align: center;
}

.category-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.category-content p {
    color: #666;
    margin-bottom: 1rem;
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: var(--muted);
}

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

@media (min-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-item {
    text-align: center;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.trust-item h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.trust-item p {
    color: #666;
    line-height: 1.6;
}

/* Best Sellers */
.best-sellers {
    padding: 5rem 0;
    background: var(--background);
}

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

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

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

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

.product-content {
    padding: 1.5rem;
    text-align: center;
}

.product-content h3 {
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.product-description {
    color: #666;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: var(--muted);
}

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

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--foreground);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.875rem;
}

/* Promo Banner */
.promo-banner {
    padding: 4rem 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.promo-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.promo-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.promo-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.timer-item {
    text-align: center;
}

.timer-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: var(--radius);
    min-width: 4rem;
}

.timer-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

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

/* Responsive Design */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .promo-timer {
        gap: 1rem;
    }

    .timer-number {
        font-size: 1.5rem;
        padding: 0.75rem;
        min-width: 3rem;
    }
}

/* Shop Page Styles */
.shop-header {
    padding: 4rem 0;
    background: var(--muted);
    border-bottom: 5px solid #8b0000;
}

.shop-header-content {
    text-align: center;
}

.shop-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .shop-header h1 {
        font-size: 3rem;
    }
}

.shop-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 32rem;
    margin: 0 auto;
}

.shop-section {
    padding: 4rem 0;
}

.shop-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .shop-layout {
        flex-direction: row;
        gap: 2rem;
    }
}

/* Filters Sidebar */
.filters-sidebar {
    width: 100%;
}

@media (min-width: 1024px) {
    .filters-sidebar {
        width: 16rem;
        flex-shrink: 0;
    }
}

.filters-sticky {
    position: sticky;
    top: 6rem;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.search-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    background: var(--background);
    color: var(--foreground);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(139, 0, 0, 0.1);
}

.category-filters {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--foreground);
}

.category-btn:hover {
    background: var(--muted);
    border-color: var(--primary);
}

.category-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.category-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.category-btn.active .category-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Products Section */
.products-section {
    flex: 1;
}

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

.products-count {
    color: #666;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shop-product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.shop-product-card:hover {
    transform: translateY(-4px);
}

.shop-product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.featured-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.shop-product-content {
    padding: 1.5rem;
}

.shop-product-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.product-weight {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.shop-product-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.shop-product-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}

.no-products {
    text-align: center;
    padding: 3rem 0;
}

.no-products p {
    color: #666;
    font-size: 1.125rem;
}

/* Mobile Responsive */
@media (max-width: 1023px) {
    .filters-sidebar {
        order: 2;
    }

    .products-section {
        order: 1;
    }

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

    .category-filters {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

@media (max-width: 640px) {
    .shop-header h1 {
        font-size: 2rem;
    }

    .category-filters {
        grid-template-columns: 1fr;
    }

    .products-grid {
        gap: 1rem;
    }
}

/* About Page Styles */
.about-header {
    padding: 4rem 0;
    background: var(--muted);
}

.about-header-content {
    text-align: center;
}

.about-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .about-header h1 {
        font-size: 3rem;
    }
}

.about-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 48rem;
    margin: 0 auto;
}

.our-story {
    padding: 4rem 0;
}

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

@media (min-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.story-content h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .story-content h2 {
        font-size: 2.5rem;
    }
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #666;
}

.story-image {
    position: relative;
}

.rounded-image {
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

.our-values {
    padding: 4rem 0;
    background: var(--muted);
}

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

.values-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .values-header h2 {
        font-size: 2.5rem;
    }
}

.values-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 32rem;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #666;
    line-height: 1.5;
}

.our-team {
    padding: 4rem 0;
}

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

.team-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .team-header h2 {
        font-size: 2.5rem;
    }
}

.team-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 32rem;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.team-image {
    position: relative;
    width: 8rem;
    height: 8rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-description {
    color: #666;
    line-height: 1.5;
}

.location-section {
    padding: 4rem 0;
    background: var(--muted);
}

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

@media (min-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.location-content h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .location-content h2 {
        font-size: 2.5rem;
    }
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.location-item svg {
    color: var(--primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.location-title {
    font-weight: 600;
    color: var(--foreground);
}

.location-address {
    color: #666;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #666;
}

.map-placeholder {
    background: var(--muted);
    border-radius: var(--radius);
    height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border);
}

.map-placeholder p {
    color: #666;
}

/* Contact Page Styles */
.contact-header {
    padding: 4rem 0;
    background: var(--muted);
}

.contact-header-content {
    text-align: center;
}

.contact-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .contact-header h1 {
        font-size: 3rem;
    }
}

.contact-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 32rem;
    margin: 0 auto;
}

.contact-info-section {
    padding: 4rem 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-info-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.contact-form-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-header svg {
    color: var(--primary);
}

.form-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    background: var(--background);
    color: var(--foreground);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(139, 0, 0, 0.1);
}

.form-submit {
    width: 100%;
    margin-top: 0.5rem;
}

.contact-additional-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.info-header svg {
    color: var(--primary);
}

.info-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #666;
}

.faq-section {
    padding: 4rem 0;
    background: var(--muted);
}

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

.faq-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .faq-header h2 {
        font-size: 2.5rem;
    }
}

.faq-header p {
    font-size: 1.125rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.faq-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.faq-card h3 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.faq-card p {
    color: #666;
    line-height: 1.5;
}

/* Mobile Responsive for About and Contact */
@media (max-width: 640px) {
    .about-header h1,
    .contact-header h1 {
        font-size: 2rem;
    }

    .story-content h2,
    .values-header h2,
    .team-header h2,
    .location-content h2,
    .faq-header h2 {
        font-size: 1.75rem;
    }

    .values-grid,
    .team-grid {
        gap: 1.5rem;
    }

    .contact-info-grid {
        gap: 1rem;
    }
}

.our-clients {
    padding: 3rem 0;
    text-align: center;
}
.our-clients h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}
.our-clients p {
    color: #555;
    margin-bottom: 2rem;
}
.client-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}
.client-logos img {
    max-height: 60px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.client-logos img:hover {
    opacity: 1;
}

.product-details-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 40px 0;
}

.product-image-large img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-info {
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-category span {
    font-weight: 500;
    color: #3b82f6;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 15px 0;
}

.product-description {
    color: #555;
    line-height: 1.6;
}



.btn-disabled {
    background-color: #9ca3af;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
}

.related-products {
    background: #f9fafb;
    padding: 50px 0;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 30px;
}

.related-products .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.btn-outline-red {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #8b0000;
    color: #8b0000;
    border-radius: 9999px; /* full rounded */
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.btn-outline-red:hover {
    background-color: #8b0000;
    color: #fff;
}

.shop-header.enhanced {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("/assets/images/shop-header-bg.webp") center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    position: relative;
    border-bottom: 5px solid #8b0000;
}

.shop-header.enhanced .shop-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.shop-header.enhanced h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #fff;
}

.shop-header.enhanced p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #fff;
}

.add-to-cart-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.add-to-cart-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.qty-btn {
    background: #f9f9f9;
    border: none;
    padding: 0.5rem 0.75rem;
    font-size: 1.2rem;
    cursor: pointer;
    color: #333;
    transition: background 0.2s ease;
}

.qty-btn:hover {
    background: #eee;
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.btn-add-to-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #8b0000;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add-to-cart:hover {
    background-color: #a10000;
    transform: translateY(-1px);
}

.btn-add-to-cart svg {
    stroke-width: 2;
}

/* Layout container */
.product-details-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    margin: 40px 0;
}

/* Image section */
.product-image-large img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    object-fit: cover;
}

/* Product info */
.product-info {
    flex: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-details-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .product-info {
        width: 100%;
        text-align: left;
    }

    .product-image-large img {
        max-width: 100%;
    }

    .add-to-cart-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-add-to-cart {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Cart Section ===== */
.cart-section {
    padding: 40px 20px 80px;
    background: #f9f9f9;
}

.cart-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow-x: auto;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cart-table th,
.cart-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: middle;
}

.cart-table th {
    background: #f3f3f3;
    font-weight: 600;
    color: #555;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.cart-name {
    font-weight: 500;
    color: #333;
}

/* Quantity Controls */
.quantity-form {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
}

.quantity-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
}

.quantity-group input {
    width: 50px;
    text-align: center;
    border: none;
    outline: none;
    padding: 5px;
}

.quantity-group button {
    background: #eee;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
}

.update-btn {
    font-size: 0.85rem;
    color: #8b0000;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}

.remove-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Summary Box */
.cart-summary {
    display: flex;
    justify-content: flex-end;
}

.summary-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    width: 300px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.summary-box h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}


/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .cart-table th:nth-child(2),
    .cart-table th:nth-child(4),
    .cart-table td:nth-child(2),
    .cart-table td:nth-child(4) {
        display: none;
    }

    .summary-box {
        width: 100%;
    }

    .shop-header-content h1 {
        font-size: 1.6rem;
    }

    .shop-header-content p {
        font-size: 1rem;
    }
}

/* ===== Checkout Section ===== */
.checkout-section {
    padding: 40px 20px 80px;
    background: #f9f9f9;
}

.checkout-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.checkout-form,
.order-summary {
    background: #fff;
    border-radius: 12px;
    padding: 25px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 320px;
}

.checkout-form {
    flex: 0.6;
}

.checkout-form h3,
.order-summary h3 {
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    font-size: 1rem;
}



/* ===== Summary ===== */
.summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.summary-item strong {
    color: #333;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}



@media (max-width: 768px) {
    .checkout-wrapper {
        flex-direction: column;
    }

    .shop-header-content h1 {
        font-size: 1.6rem;
    }
}

/* ===== Section ===== */
        .thank-you-section {
            padding: 70px 20px 100px;
            background: #fafafa;
        }

        .thank-you-card {
            background: #fff;
            border-radius: 16px;
            padding: 40px 30px;
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
            box-shadow: 0 6px 18px rgba(0,0,0,0.05);
        }

        .thank-you-card h2 {
            font-size: 1.6rem;
            color: #333;
            margin-bottom: 8px;
        }

        .thank-you-card p {
            color: #666;
            margin-bottom: 35px;
        }

        /* ===== Order Summary ===== */
        .order-summary {
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            padding: 25px 0;
            text-align: left;
            margin-bottom: 35px;
        }

        .order-summary h3 {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .summary-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px dashed #e6e6e6;
        }

        .summary-total {
            display: flex;
            justify-content: space-between;
            font-weight: 600;
            font-size: 1.15rem;
            margin-top: 10px;
        }

        /* ===== Buttons ===== */
        .thank-you-actions {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }


        

        @media (max-width: 768px) {
            .thankyou-hero-content h1 {
                font-size: 2rem;
            }
            .thankyou-hero-content p {
                font-size: 1rem;
            }
        }
