:root {
    --primary-color: #1DBFAF;
    --primary-dark: #158F82;
    --primary-light: #7FE5DB;
    --secondary-color: #2C5F5D;
    --accent-color: #FFD700;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --success: #28A745;
    --error: #DC3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

/* Company name in hero - match logo font */
.hero h1 {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: 6rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

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

.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar .logo {
    order: 1;
    flex: 0 0 auto;
}

.navbar .nav-menu {
    order: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar .hamburger {
    order: 3;
}

.navbar .cart-icon {
    order: 4;
    margin-left: auto;
}

.logo img {
    height: 80px;
    width: auto;
    border: none;
    outline: none;
    box-shadow: none;
    filter: none;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

.cart-icon {
    position: relative;
    font-size: 1.2rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

.hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    padding: 120px 20px;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: 6rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

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

.btn-sold-out {
    background: #e74c3c;
    color: var(--white);
    cursor: not-allowed;
    opacity: 1;
}

.btn-sold-out:hover {
    background: #e74c3c;
    transform: none;
    box-shadow: none;
}

.features {
    padding: 80px 20px;
    background: var(--white);
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--bg-light);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(29, 191, 175, 0.2);
}

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

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.categories {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

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

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 400px;
    text-decoration: none;
    display: block;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 2rem;
    transform: translateY(0);
    transition: transform 0.3s;
}

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

.category-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.farmers-market {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.farmers-market h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.market-image-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.market-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.market-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.market-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-preview {
    padding: 40px 20px;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text .btn {
    display: inline-block;
    margin-top: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .about-image img {
        max-width: 200px;
    }
}

.social-feed {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.social-feed h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.social-icons-home {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.social-icons-home .social-icon-link {
    font-size: 3rem;
    color: var(--primary-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons-home .social-icon-link:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: var(--white);
}

.social-btn.facebook {
    background: #1877F2;
    color: var(--white);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-light);
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-light);
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    position: relative;
    animation: slideIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s;
}

.close:hover {
    color: var(--text-dark);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.shop-section {
    padding: 80px 20px;
    min-height: 60vh;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(29, 191, 175, 0.3);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

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

.sold-out-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(231, 76, 60, 0.95);
    color: white;
    padding: 20px 40px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    z-index: 10;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 80px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    white-space: nowrap;
}

.product-detail-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.product-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-modal {
    max-width: 900px;
}

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

.product-detail-image {
    width: 100%;
    border-radius: 10px;
}

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

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

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

.option-group select,
.option-group input {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    font-size: 1rem;
}

.add-to-cart-btn {
    width: 100%;
    margin-top: 1rem;
}

.loading {
    text-align: center;
    padding: 3rem;
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.cart-item-info h4 {
    margin-bottom: 0.5rem;
}

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

.remove-item {
    background: var(--error);
    color: var(--white);
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.cart-total {
    margin: 2rem 0;
    text-align: right;
}

.about-story {
    padding: 80px 20px;
    background: var(--white);
}

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

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.values {
    padding: 80px 20px;
    background: var(--bg-light);
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

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

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.education {
    padding: 80px 20px;
    background: var(--white);
}

.education h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.education-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
}

.education-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.education-card ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.education-card li {
    margin-bottom: 0.5rem;
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    text-align: center;
    color: var(--white);
}

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

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-section {
    padding: 80px 20px;
}

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

.contact-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.messenger-btn {
    margin-top: 1rem;
}

.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

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

.contact-form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-note {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

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

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-status.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-status.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

.map-section {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.map-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.market-cta {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Mobile navbar layout: logo left, hamburger center, cart right */
    .navbar .logo {
        order: 1;
        flex: 0 0 auto;
    }
    
    .navbar .hamburger {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .navbar .cart-icon {
        order: 3;
        margin-left: auto;
    }
    
    .navbar .nav-menu {
        order: 4;
        transform: none;
    }
    
    .logo {
        order: 1;
    }
    
    .logo img {
        height: 60px;
    }
    
    .cart-icon {
        order: 2;
        margin-left: auto;
        font-size: 1.5rem;
    }
    
    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0 !important;
    }
    
    .hamburger {
        display: flex;
        order: 3;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .about-content,
    .story-content,
    .contact-grid,
    .product-detail {
        grid-template-columns: 1fr;
    }
    
    /* Center all content on mobile index page */
    .hero-content,
    .about-text,
    .about-image,
    .social-feed,
    .features {
        text-align: center;
    }
    
    .about-image {
        justify-content: center;
    }
    
    /* Center all text on mobile about page */
    .story-section,
    .story-content,
    .story-text,
    .page-header {
        text-align: center;
    }

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

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .education-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

.cart-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    z-index: 3000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cart-notification.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.cart-notification-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(29, 191, 175, 0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    max-width: 400px;
    position: relative;
}

.cart-notification-icon {
    font-size: 2.5rem;
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.cart-notification-text {
    flex: 1;
}

.cart-notification-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.cart-notification-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.cart-notification-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.cart-notification-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cart-notification-view-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 0 0 15px 15px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: -0.5rem;
}

.cart-notification-view-btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cart-notification {
        top: 20%;
        transform: translate(-50%, -20%) scale(0.7);
    }
    
    .cart-notification.show {
        transform: translate(-50%, -20%) scale(1);
    }
    
    .cart-notification-content {
        min-width: auto;
        max-width: 85vw;
        padding: 1rem;
        gap: 0.75rem;
        flex-direction: column;
        text-align: center;
    }
    
    .cart-notification-icon {
        font-size: 2rem;
    }
    
    .cart-notification-text strong {
        font-size: 1rem;
    }
    
    .cart-notification-text p {
        font-size: 0.85rem;
    }
    
    .cart-notification-close {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }
    
    .cart-notification-view-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
}

/* Custom Dialog Styles */
.custom-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-dialog-overlay.show {
    opacity: 1;
}

.custom-dialog {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.custom-dialog-overlay.show .custom-dialog {
    transform: scale(1);
}

.custom-dialog-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 1.5rem;
}

.custom-dialog-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.custom-dialog-body {
    padding: 2rem 1.5rem;
}

.custom-dialog-body p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.custom-dialog-footer {
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.custom-dialog-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

.custom-dialog-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.custom-dialog-btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid #ddd;
}

.custom-dialog-btn-secondary:hover {
    background: var(--bg-light);
    border-color: #ccc;
}

.custom-dialog-btn-danger {
    background: #dc3545;
    color: var(--white);
}

.custom-dialog-btn-danger:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Photo Gallery Section */
.photo-gallery {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f4f0 0%, #fff 100%);
}

.photo-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    display: none;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-caption {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5));
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
}

/* Vacay Mode Banner */
.vacay-mode-banner {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E72 100%);
    color: var(--white);
    padding: 1.25rem 2rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.35);
    animation: slideDown 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.vacay-mode-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

.vacay-mode-banner p {
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
    text-align: center;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@media (max-width: 768px) {
    .vacay-mode-banner {
        font-size: 0.9rem;
        padding: 1rem 1.25rem;
    }
    
    .vacay-mode-banner p {
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .vacay-mode-banner {
        font-size: 0.85rem;
        padding: 0.9rem 1rem;
    }
    
    .vacay-mode-banner p {
        line-height: 1.4;
    }
}

/* Product Badges */
.product-image-container {
    position: relative;
}

.badge {
    position: absolute;
    top: 10px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.badge-soldout {
    right: 10px;
    background: #DC3545;
    color: white;
}

.badge-sale {
    left: 10px;
    background: #FFC107;
    color: #2C3E50;
}

/* Sale Pricing */
.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.original-price {
    text-decoration: line-through;
    color: #6C757D;
    font-size: 0.9rem;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.sale-badge {
    background: #FFC107;
    color: #2C3E50;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 0.5rem;
}

/* Sold Out Badge */
.sold-out-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
}

/* Sold Out Product Card */
.product-card {
    position: relative;
}

.product-card.sold-out {
    opacity: 0.7;
}

.product-card.sold-out img {
    filter: grayscale(50%);
}

.product-card.sold-out .btn-sold-out {
    opacity: 1;
}

/* Product Modal Pricing */
.product-modal-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.product-modal-price .original-price {
    font-size: 1.2rem;
}

.product-modal-price .current-price {
    font-size: 2rem;
}

/* Form Elements */
.option-group {
    margin-bottom: 1rem;
}

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

.form-select,
.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E9ECEF;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.btn-large {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Shipping Policy Page */
.policy-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
}

.policy-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.policy-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.policy-content {
    padding: 4rem 0;
}

.policy-content .container {
    text-align: center;
}

.policy-section {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.policy-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-section p {
    color: var(--text-light);
    line-height: 1.8;
}

.policy-section ul {
    text-align: left;
    display: inline-block;
    margin: 0 auto;
    padding-left: 1.5rem;
}

.policy-section.highlight {
    background: linear-gradient(135deg, rgba(29, 191, 175, 0.1), rgba(44, 95, 93, 0.1));
    border: 2px solid var(--primary-color);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.policy-section.highlight h2 {
    color: var(--secondary-color);
}

.policy-section.highlight p {
    color: var(--text-dark);
    font-weight: 500;
}

.policy-section.highlight .btn {
    margin-top: 1rem;
}

.shipping-table {
    overflow-x: auto;
    margin-top: 1.5rem;
}

.shipping-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.shipping-table th,
.shipping-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #E9ECEF;
}

.shipping-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.shipping-table tbody tr:hover {
    background: var(--bg-light);
}

.shipping-table td strong {
    color: var(--success);
    font-size: 1.1rem;
}

.policy-section .note {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.policy-section a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Centered Contact Info */
.contact-info-centered {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-info-centered h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-info-centered .contact-item {
    margin-bottom: 2.5rem;
    text-align: center;
}

.contact-info-centered .contact-item:last-child {
    margin-bottom: 0;
}

.contact-info-centered .contact-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

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

.contact-info-centered .messenger-btn,
.contact-info-centered .email-btn {
    display: inline-block;
    margin-top: 0.5rem;
}

.contact-info-centered .social-icons-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.contact-info-centered .social-icon-link {
    font-size: 3rem;
    color: var(--primary-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-info-centered .social-icon-link:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.contact-info-centered .social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-info-centered .social-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s;
    min-width: 250px;
}

.contact-info-centered .social-link:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Social Media Icons */
.footer-section a i,
.social-link i {
    margin-right: 0.5rem;
    font-size: 1.1em;
}

.footer-section a .fa-instagram {
    color: #E4405F;
}

.footer-section a .fa-facebook {
    color: #1877F2;
}

.social-link .fa-instagram {
    color: #E4405F;
}

.social-link .fa-facebook {
    color: #1877F2;
}

.footer-section a:hover .fa-instagram,
.social-link:hover .fa-instagram {
    color: #C13584;
}

.footer-section a:hover .fa-facebook,
.social-link:hover .fa-facebook {
    color: #145DBF;
}

/* Policy List Styling */
.policy-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.policy-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.policy-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--error);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Wholesale Page */
.wholesale-content {
    padding: 4rem 0;
}

.wholesale-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.wholesale-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.wholesale-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.wholesale-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

.wholesale-form input,
.wholesale-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E9ECEF;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

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

.wholesale-form textarea {
    resize: vertical;
    min-height: 150px;
}

.wholesale-form .form-status {
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

/* New Footer Structure - Centered */
.footer-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    gap: 2rem;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.footer-logo {
    display: block;
    margin: 0 auto 1rem auto;
}

.footer-logo img {
    height: 120px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.footer-tagline {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0;
    gap: 0.5rem;
}

.footer-bottom-new p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.website-credit {
    font-size: 0.85rem;
}

.website-credit a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.website-credit a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Email Capture Popup */
.email-popup {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s ease-in;
}

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

.email-popup-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s ease-out;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.email-popup-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
    z-index: 1;
}

.email-popup-close:hover {
    color: var(--text-dark);
}

.email-popup-body {
    padding: 3rem 2.5rem;
    text-align: center;
}

.email-popup-body h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.popup-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.popup-subtitle strong {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.email-popup-body p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.email-capture-form {
    margin: 2rem 0 1rem;
}

.email-capture-form input[type="email"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E9ECEF;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s;
}

.email-capture-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.email-capture-form button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.popup-disclaimer {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    margin-bottom: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@media (max-width: 768px) {
    .email-popup-body {
        padding: 2rem 1.5rem;
    }
    
    .email-popup-body h2 {
        font-size: 1.5rem;
    }
    
    .popup-subtitle {
        font-size: 1.1rem;
    }
    
    .footer-new {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo-section {
        align-items: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .footer-logo img {
        margin: 0 auto;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-new {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .wholesale-form-container {
        padding: 2rem 1.5rem;
    }
    
    .policy-hero h1 {
        font-size: 2rem;
    }
    
    .policy-hero p {
        font-size: 1rem;
    }
    
    .policy-section {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .shipping-table th,
    .shipping-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .modal-content {
        margin: 2% auto;
        max-height: 85vh;
        overflow-y: auto;
        padding: 1.5rem;
        max-width: 95%;
    }
    
    .product-modal {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .product-detail {
        max-height: calc(85vh - 100px);
        overflow-y: auto;
    }
    
    #cartModal .modal-content {
        max-height: 80vh;
        display: flex;
        flex-direction: column;
    }
    
    #cartItems {
        flex: 1;
        overflow-y: auto;
        max-height: 40vh;
    }
    
    #checkoutForm {
        flex-shrink: 0;
    }
    
    .cart-total {
        flex-shrink: 0;
    }
    
    #checkoutBtn {
        flex-shrink: 0;
    }
}
