:root {
    --primary: #ff6b93;
    --primary-light: #ff9eb5;
    --primary-dark: #e55a7f;
    --secondary: #ffb74d;
    --bg: #fff5f7;
    --bg-soft: #fce8ec;
    --text: #5a2d3a;
    --text-light: #a17a85;
    --text-muted: #c4a6b0;
    --white: #ffffff;
    --border: #f8d7e0;
    --shadow: 0 2px 8px rgba(255, 107, 147, 0.1);
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Topbar */
.topbar {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.topbar-list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Header */
.header {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.8rem;
}

.search {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.search input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    outline: none;
    font-size: 0.95rem;
}

.search-btn {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--text-light);
    cursor: pointer;
}

.actions {
    display: flex;
    gap: 0.75rem;
}

.btn {
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 147, 0.2);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-outline {
    background: transparent;
    border-color: var(--border);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.cart-btn {
    position: relative;
}

.cart-count {
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Navigation */
.nav {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 88px;
    z-index: 999;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-link {
    padding: 1rem 1.5rem;
    display: block;
    white-space: nowrap;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    background: var(--bg-soft);
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 2000;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-light);
}

.cart-items {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 700;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
}

.cart-total {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.total-row.final {
    font-weight: 700;
    font-size: 1.1rem;
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
}

.checkout-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    display: none;
}

.cart-overlay.active {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-soft) 100%);
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Features */
.features {
    padding: 3rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: var(--radius);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.products-section,
.birthday-section,
.about-section,
.contact-section {
    padding: 4rem 0;
}

.products-section {
    background: var(--bg-soft);
}

.birthday-section {
    background: var(--white);
}

.about-section {
    background: var(--bg);
}

.contact-section {
    background: var(--bg-soft);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 147, 0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.product-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-current {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.price-old {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.product-rating {
    color: #ffb74d;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-rating span {
    color: var(--text-light);
    margin-left: 0.5rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.product-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    font-size: 0.85rem;
    justify-content: center;
}

/* Tags */
.tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
    z-index: 2;
}

.tag.new { background: #4CAF50; }
.tag.sale { background: #ff4444; }
.tag.popular { background: #ff9800; }
.tag.special { background: #9c27b0; }

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-features {
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-feature h4 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.about-feature p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3,
.contact-form h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-light);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.order-form input,
.order-form select,
.order-form textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    border-color: var(--primary);
}

.order-form textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.5rem 1rem;
    background: var(--bg-soft);
    color: var(--text);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    color: var(--text-light);
}

.copyright {
    font-size: 0.9rem;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.modal p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.close-modal-btn {
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .cart-sidebar {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .search {
        max-width: 100%;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .topbar-list {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Simple Cart Functionality with CSS */
.cart-btn:active ~ .cart-sidebar,
.cart-btn:focus ~ .cart-sidebar {
    right: 0;
}

.cart-btn:active ~ .cart-overlay,
.cart-btn:focus ~ .cart-overlay {
    display: block;
}

.close-cart:active ~ .cart-sidebar,
.close-cart:focus ~ .cart-sidebar {
    right: -400px;
}

.close-cart:active ~ .cart-overlay,
.close-cart:focus ~ .cart-overlay {
    display: none;
}

/* Add to cart animation */
.add-to-cart:active,
.buy-now:active {
    background: var(--primary-dark);
    transform: scale(0.95);
}

/* Order form submission feedback */
.order-form:valid .submit-btn {
    background: var(--primary);
}

.order-form:invalid .submit-btn {
    background: var(--text-muted);
    cursor: not-allowed;
}

/* Navigation active states */
.nav-link:target {
    background: var(--bg-soft);
    color: var(--primary);
    border-bottom-color: var(--primary);
}
/* Thêm các style mới vào cuối file CSS hiện tại */

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary);
}

/* Product Detail */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.product-gallery .main-image img {
    width: 100%;
    border-radius: var(--radius);
}

.product-info-detail {
    padding: 1rem;
}

.product-info-detail .product-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.product-info-detail .product-price {
    margin: 1rem 0;
}

.product-info-detail .price-current {
    font-size: 1.5rem;
}

.product-description {
    margin: 1.5rem 0;
}

.product-features {
    margin-top: 1rem;
}

.product-features ul {
    list-style: none;
    padding-left: 0;
}

.product-features li {
    padding: 0.3rem 0;
}

/* Quantity Selector */
.quantity-selector {
    margin: 1.5rem 0;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 1.2rem;
}

.quantity {
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.action-buttons .btn {
    flex: 1;
    justify-content: center;
}

/* Product Meta */
.product-meta {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
}

/* Related Products */
.related-products {
    margin-top: 4rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-link {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Section Footer */
.section-footer {
    text-align: center;
    margin-top: 2rem;
}

/* Main content layout for products page */
.main-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

/* Filter and Categories Cards */
.filter-card, .categories-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

.filter-card h3, .categories-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.1rem;
}

.filter-group {
    margin-bottom: 1rem;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
}

.filter-group select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.9rem;
    background: var(--white);
}

.filter-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

/* Categories List */
.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 0.5rem;
}

.category-link {
    display: block;
    padding: 0.75rem;
    background: var(--bg-soft);
    border-radius: 4px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: var(--primary);
    color: var(--white);
}

/* Responsive for product detail */
@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .product-info-detail .product-title {
        font-size: 1.4rem;
    }
    
    .quantity-controls {
        gap: 0.5rem;
    }
}
/* Page Header */
.page-header {
    text-align: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-soft) 100%);
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* About Page Styles */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.story-content h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.milestones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.milestone {
    text-align: center;
    padding: 1rem;
    background: var(--bg-soft);
    border-radius: var(--radius);
}

.year {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.values-section {
    margin: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-section {
    margin: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.position {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bio {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.store-locations {
    margin-top: 3rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.location {
    padding: 1rem;
    background: var(--bg-soft);
    border-radius: var(--radius);
}

.contact-form-section {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
}

.faq-section {
    margin-top: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Birthday Page Styles */
.birthday-hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 4rem 0;
}

.birthday-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.birthday-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.birthday-features {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.birthday-categories {
    padding: 4rem 0;
    background: var(--bg-soft);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card h3 {
    padding: 1rem 1rem 0.5rem;
    margin: 0;
}

.category-card p {
    padding: 0 1rem 1rem;
    color: var(--text-light);
    margin: 0;
}

.custom-cake {
    padding: 4rem 0;
    background: var(--white);
}

.custom-cake-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.custom-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.custom-features li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.custom-process {
    margin: 2rem 0;
}

.custom-process ol {
    padding-left: 1.5rem;
}

.custom-process li {
    margin-bottom: 0.5rem;
}

.custom-cake-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-item img {
    width: 100%;
    border-radius: var(--radius);
}

/* Cart Page Styles */
.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

.item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius);
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details h3 {
    margin-bottom: 0.5rem;
}

.item-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.item-price {
    font-weight: 600;
    color: var(--primary);
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.item-total {
    font-weight: 700;
    font-size: 1.1rem;
}

.item-remove {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-light);
}

.cart-empty {
    text-align: center;
    padding: 3rem;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.summary-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: sticky;
    top: 120px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    border-bottom: none;
    border-top: 2px solid var(--border);
    padding-top: 1rem;
    margin-top: 1rem;
}

.promo-code {
    margin: 1.5rem 0;
}

.promo-input {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.promo-input input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.shipping-info {
    margin: 1.5rem 0;
}

.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.shipping-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--bg-soft);
    border-radius: var(--radius);
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin: 1rem 0;
}

.continue-shopping {
    text-align: center;
    margin-top: 1rem;
}

.continue-shopping a {
    color: var(--primary);
    text-decoration: none;
}

.security-badges {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    padding: 0.5rem 1rem;
    background: var(--bg-soft);
    border-radius: 20px;
    font-size: 0.8rem;
}

.recently-viewed {
    margin-top: 4rem;
}

/* Product size */
.product-size {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .about-story,
    .contact-content,
    .birthday-hero-content,
    .custom-cake-content,
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .milestones,
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 0.5rem;
    }
    
    .item-quantity,
    .item-total,
    .item-remove {
        grid-column: 1 / -1;
        justify-self: start;
    }
    
    .birthday-features {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .values-grid,
    .team-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-cake-gallery {
        grid-template-columns: 1fr;
    }
}
/* ===== BLOG PAGE STYLES ===== */
.featured-post {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    margin: 2rem 0;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.post-category {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.featured-post h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.post-excerpt {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.featured-image img {
    width: 100%;
    border-radius: var(--radius);
}

.blog-categories {
    margin: 3rem 0;
}

.categories-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.category-tag {
    padding: 0.75rem 1.5rem;
    background: var(--bg-soft);
    border-radius: 25px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
}

.category-tag.active,
.category-tag:hover {
    background: var(--primary);
    color: var(--white);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.post-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-image .post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    margin: 0;
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.post-content .post-meta {
    margin: 1rem 0;
    justify-content: space-between;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.newsletter {
    background: var(--bg-soft);
    padding: 3rem;
    border-radius: var(--radius);
    text-align: center;
    margin: 3rem 0;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 1.5rem auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

/* ===== RECIPES PAGE STYLES ===== */
.difficulty-filter {
    text-align: center;
    margin: 2rem 0;
}

.difficulty-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.difficulty-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border);
    background: var(--white);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.difficulty-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.recipe-categories {
    margin: 3rem 0;
}

.categories-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    margin-top: 1rem;
}

.category-card {
    flex: 0 0 auto;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 120px;
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.featured-recipe {
    background: var(--bg-soft);
    padding: 3rem;
    border-radius: var(--radius);
    margin: 2rem 0;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.recipe-badge {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.recipe-meta {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.difficulty {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.difficulty.easy { background: #4CAF50; color: white; }
.difficulty.medium { background: #FF9800; color: white; }
.difficulty.hard { background: #F44336; color: white; }

.recipe-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.recipes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.recipe-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.recipe-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-image .difficulty {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.recipe-content {
    padding: 1.5rem;
}

.recipe-desc {
    color: var(--text-light);
    margin: 0.5rem 0 1rem;
    font-size: 0.9rem;
}

.recipe-meta-small {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    font-size: 0.8rem;
    color: var(--text-light);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tip-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* ===== GALLERY PAGE STYLES ===== */
.gallery-filter {
    margin: 2rem 0;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border);
    background: var(--white);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.masonry-grid {
    columns: 3;
    gap: 1.5rem;
    margin: 2rem 0;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.masonry-item:hover .image-overlay {
    transform: translateY(0);
}

.image-category {
    background: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.customer-creations {
    margin: 4rem 0;
}

.creations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.creation-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.creation-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.creation-info {
    padding: 1rem;
}

.creator {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.creation-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.8rem;
}

.share-your-creation {
    text-align: center;
    padding: 2rem;
    background: var(--bg-soft);
    border-radius: var(--radius);
    margin-top: 2rem;
}

.social-tags {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-tag {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* ===== EVENTS PAGE STYLES ===== */
.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.type-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.event-category {
    margin: 4rem 0;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.event-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.package-image {
    height: 250px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-info {
    padding: 2rem;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.package-features li:last-child {
    border-bottom: none;
}

.corporate-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.option-card {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.price-range {
    font-weight: 600;
    color: var(--primary);
    margin-top: 1rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.event-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.event-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-details {
    padding: 1.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.booking-cta {
    text-align: center;
    padding: 3rem;
    background: var(--bg-soft);
    border-radius: var(--radius);
    margin: 3rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ===== WHOLESALE PAGE STYLES ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.client-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.client-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.client-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.client-card li {
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--border);
}

.client-card li:last-child {
    border-bottom: none;
}

.wholesale-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.products-table {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 1rem;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.table-row:last-child {
    border-bottom: none;
}

.highlight {
    color: var(--primary);
    font-weight: 700;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.solution-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.solution-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 1rem;
}

.wholesale-process {
    margin: 4rem 0;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.wholesale-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    margin: 3rem 0;
}

/* ===== FAQ PAGE STYLES ===== */
.faq-search {
    margin: 2rem 0;
}

.search-box {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.search-box input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
}

.faq-categories {
    margin: 3rem 0;
}

.faq-accordion {
    margin: 3rem 0;
}

.faq-section {
    margin-bottom: 3rem;
}

.faq-section h2 {
    color: var(--primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

.accordion {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background: var(--bg-soft);
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
}

.accordion-content {
    padding: 0 1.5rem;
    background: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.active {
    padding: 1.5rem;
    max-height: 1000px;
}

.accordion-content ol,
.accordion-content ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.accordion-content li {
    margin-bottom: 0.5rem;
}

.contact-cta {
    background: var(--bg-soft);
    padding: 3rem;
    border-radius: var(--radius);
    text-align: center;
    margin: 4rem 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
}

.contact-method .method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .masonry-grid {
        columns: 2;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .masonry-grid {
        columns: 1;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .featured-post {
        padding: 2rem 1rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .event-packages {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .categories-grid,
    .types-grid,
    .benefits-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .recipe-stats,
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}
/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid var(--border);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: var(--bg-soft);
    color: var(--primary);
}
/* Wedding Page Styles */
.wedding-intro {
    background: var(--bg-soft);
    padding: 3rem;
    border-radius: var(--radius);
    margin: 2rem 0;
}

.wedding-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Video Recipes */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.video-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
}

.video-info {
    padding: 1.5rem;
}

.video-meta {
    display: flex;
    gap: 1rem;
    margin: 0.5rem 0;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Tips Page */
.tip-card.large {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
}

.tip-card.large .tip-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.tip-card.large h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Events Page */
.events-types {
    margin: 3rem 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.type-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
/* ===== ENHANCED STYLES ===== */

/* Enhanced Navigation with Better Dropdown */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Product Cards */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.product-card:hover::before {
    left: 100%;
}

/* Enhanced Buttons */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
}

/* Enhanced Forms */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 147, 0.2);
}

/* Loading Animation for Images */
.product-image,
.post-image,
.recipe-image {
    position: relative;
    overflow: hidden;
}

.product-image::before,
.post-image::before,
.recipe-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    z-index: 1;
}

.product-image.loaded::before,
.post-image.loaded::before,
.recipe-image.loaded::before {
    display: none;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Enhanced Price Tags */
.price-current {
    position: relative;
    display: inline-block;
}

.price-current::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover .price-current::after {
    transform: scaleX(1);
}

/* Enhanced Filter Interactions */
.filter-btn:active,
.difficulty-btn:active,
.category-tag:active {
    transform: scale(0.95);
}

/* Print Styles */
@media print {
    .topbar,
    .header,
    .nav,
    .footer,
    .btn {
        display: none !important;
    }
    
    .main {
        margin: 0;
        padding: 0;
    }
    
    .product-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary: #000000;
        --text: #000000;
        --border: #000000;
    }
    
    .btn-primary {
        background: #000000;
        color: #ffffff;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg: #1a1a1a;
        --bg-soft: #2d2d2d;
        --text: #ffffff;
        --text-light: #cccccc;
        --text-muted: #999999;
        --white: #2d2d2d;
        --border: #404040;
        --shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
}

/* Enhanced Focus Styles for Accessibility */
.btn:focus,
.nav-link:focus,
.filter-btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Smooth Scrolling for Anchor Links */
html {
    scroll-behavior: smooth;
}

/* Enhanced Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
}

.page-link {
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
    font-weight: 600;
}

.page-link:hover,
.page-link:focus,
.page-link.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Enhanced Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover,
.breadcrumb a:focus {
    color: var(--primary);
}

/* Enhanced Tooltip (CSS-only) */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

[data-tooltip]:hover::before,
[data-tooltip]:focus::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Enhanced Color Variables for Better Consistency */
:root {
    --success: #4CAF50;
    --warning: #FF9800;
    --error: #F44336;
    --info: #2196F3;
}

/* Status Indicators */
.status {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status.available {
    background: var(--success);
    color: white;
}

.status.unavailable {
    background: var(--error);
    color: white;
}

.status.preorder {
    background: var(--warning);
    color: white;
}

/* Enhanced Grid Layouts */
.products-grid,
.posts-grid,
.recipes-container {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
/* Simple Scroll Behavior - Menu disappears on scroll */
.nav {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    /* Regular static positioning */
    position: static;
}

/* Keep header sticky but compact on scroll */
.header {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Compact header on scroll */
.header.compact {
    padding: 0.5rem 0;
}

.header.compact .logo {
    font-size: 1.2rem;
}

.header.compact .search input {
    padding: 0.5rem 1rem 0.5rem 2.5rem;
}

.header.compact .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

/* Add padding to body to account for fixed header */
body {
    padding-top: 80px; /* Adjust based on your header height */
}

/* Adjust topbar position */
.topbar {
    position: relative;
    z-index: 1001;
}
/* ===== ENHANCED IMAGE STYLES ===== */

/* Base image styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Product images */
.product-image,
.recipe-image,
.post-image,
.member-photo,
.category-image,
.gallery-item img,
.masonry-item img,
.video-thumbnail img,
.featured-image img,
.hero-image img,
.about-image img,
.story-image img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    object-position: center;
    background: var(--bg-soft);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

/* Specific heights for different contexts */
.hero-image img {
    height: 400px;
}

.featured-image img {
    height: 300px;
}

.member-photo img {
    height: 200px;
    border-radius: 50%;
}

.category-image img {
    height: 200px;
}

.masonry-item img {
    height: auto; /* Let masonry layout determine height */
    min-height: 200px;
}

/* Image fallback styles */
.image-fallback {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--bg-soft), var(--border));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border-radius: var(--radius);
    font-size: 3rem;
}

.product-image .image-fallback {
    height: 200px;
}

.hero-image .image-fallback {
    height: 400px;
}

/* Loading state for images */
.image-loading {
    background: linear-gradient(90deg, var(--bg-soft) 25%, var(--border) 50%, var(--bg-soft) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Hover effects */
.product-image:hover img,
.recipe-image:hover img,
.post-image:hover img {
    transform: scale(1.05);
}

/* Ensure images don't overflow containers */
.product-card,
.recipe-card,
.post-card,
.masonry-item {
    overflow: hidden;
}