/* Client Color Palette:
   Primary Blue: #0070C0
   Pink/Magenta: #ED55A5
   Yellow: #F5C542
   Light Gray: #F4F4F4
   Dark Gray: #2C2C2C
   Light Blue: #5BC8D2
   Light Pink: #FAD9E5
*/

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

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2C2C2C;
    background: #F4F4F4;
}

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

.header .container {
    padding: 0 20px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important; /* Remove underline */
    transition: transform 0.3s ease;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ED55A5, #0070C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ED55A5; /* Fallback color */
}

.logo-image {
    width: 40px;
    height: 40px;
    background-image: url("../img/cards/JollityJig-Logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}



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

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

.site-link {
    text-decoration: none;
    color: #0070C0;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.site-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background: linear-gradient(135deg, #ED55A5, #5BC8D2);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.site-link:hover {
    color: #ED55A5;
}

.site-link:hover::after {
    width: 100%;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #FAD9E5;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    color: #2C2C2C;
    text-decoration: none;
}

.cart-link:hover {
    background: rgba(237, 85, 165, 0.2);
    border-color: #ED55A5;
    transform: translateY(-1px);
    color: #2C2C2C;
}

.cart-count {
    background: linear-gradient(135deg, #ED55A5, #0070C0);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
    line-height: 1;
}

.shop-btn {
    background: linear-gradient(135deg, #ED55A5, #0070C0);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 112, 192, 0.3);
}

.shop-btn:visited {
    color: #ffffff;
    text-decoration: none;
}

.shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 112, 192, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #0070C0;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-with-bg {
    background-image: url('../img/hero/hero_HAAD.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 112, 192, 0.7), rgba(237, 85, 165, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 32px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-description {
    padding: 40px;
    border-radius: 40px;
    margin: 32px auto;
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
    background: rgba(250, 217, 229, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #ffffff;
    opacity: 0.95;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-btn {
    background: rgba(245, 197, 66, 0.9);
    color: #2C2C2C;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid rgba(245, 197, 66, 0.8);
    text-shadow: none;
}

.hero-btn:hover {
    background: #F5C542;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 197, 66, 0.4);
    border-color: #F5C542;
}

/* Story Section */
.story-section {
    background: white;
    padding: 30px 0;
}

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

.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    margin-bottom: 60px;
    color: #0070C0;
    position: relative;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ED55A5, #5BC8D2);
    border-radius: 2px;
}

.story-text {
    background: linear-gradient(135deg, #0070C0, #5BC8D2);
    color: white;
    padding: 50px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0, 112, 192, 0.3);
    position: relative;
    overflow: hidden;
}

.story-text::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    opacity: 0.2;
}

.about-btn {
    background: transparent;
    color: #0070C0;
    padding: 12px 30px;
    border: 2px solid #0070C0;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #0070C0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 112, 192, 0.3);
}

/* Products Section */
.products-section {
    background: #F4F4F4;
    padding: 30px 0;
}

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

.products-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    margin-bottom: 16px;
    color: #2C2C2C;
}

.products-subtitle {
    font-size: 18px;
    color: #0070C0;
    margin-bottom: 60px;
    font-style: italic;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(237, 85, 165, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 112, 192, 0.15);
    border-color: rgba(237, 85, 165, 0.3);
}

/* Product image styling - shows full images without cropping */
.product-img {
    width: 100%;
    height: 220px;
    object-fit: contain !important; /* Force contain to show full image */
    object-position: center;
    border-radius: 15px;
    background: transparent; /* Light background behind image */
}

/* Product image container */
.product-image {
    height: 220px;
    margin: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent !important; /* Ensure light background shows */
}

/* Remove any overlay effects that might interfere */
.product-image::before {
    display: none !important;
}

/* Product placeholder for items without images */
.product-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #ED55A5, #5BC8D2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.product-placeholder span {
    display: block;
    line-height: 1.3;
    word-wrap: break-word;
    max-width: 100%;
}

.product-card:hover .product-image::before {
    opacity: 0.5;
}

.product-info {
    padding: 0 30px 30px;
    text-align: center;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 8px;
    color: #2C2C2C;
}

.product-price {
    font-size: 16px;
    color: #0070C0;
    margin-bottom: 20px;
    font-weight: 600;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #ED55A5, #5BC8D2);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 160px;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237, 85, 165, 0.4);
}

.edit-details-btn {
    background: linear-gradient(135deg, #0070C0, #5BC8D2);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    min-width: 120px;
}

.edit-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 112, 192, 0.4);
    color: white;
    text-decoration: none;
}

.view-all-btn {
    background: linear-gradient(135deg, #ED55A5, #0070C0);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 112, 192, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 112, 192, 0.4);
}

.setup-note {
    color: #0070C0;
    font-size: 14px;
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.8;
}

/* Reviews Section */
.reviews-section {
    background: white;
    padding: 30px 0;
}

.reviews-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    margin-bottom: 60px;
    color: #2C2C2C;
    text-align: center;
}

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

.review-card {
    background: #FAD9E5;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 30px rgba(237, 85, 165, 0.15);
    border: 1px solid rgba(237, 85, 165, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(237, 85, 165, 0.25);
}

.review-card::before {
    content: '★★★★★';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #F5C542;
    font-size: 16px;
}

.review-text {
    font-size: 16px;
    color: #2C2C2C;
    line-height: 1.7;
    margin: 40px 0 20px;
    font-style: italic;
    position: relative;
}

.review-text::before,
.review-text::after {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #ED55A5;
    opacity: 0.7;
}

.review-author {
    font-weight: 600;
    font-size: 14px;
    color: #0070C0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    background: #2C2C2C;
    color: #F4F4F4;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #5BC8D2;
}

.footer-section p {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(244, 244, 244, 0.2);
    font-size: 13px;
    color: rgba(244, 244, 244, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 20px;
        padding-left: 40px;
        min-height: 35px;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 8px 30px rgba(0, 112, 192, 0.15);
        border-radius: 0 0 20px 20px;
    }

    .site-nav.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Keep actions visible on mobile */
    .header-actions {
        margin-left: 8px;
        gap: 8px;
    }
    .header-actions .shop-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
    .header-actions .cart-link {
        padding: 6px 10px;
    }

    .hero {
        padding: 120px 20px 60px;
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .hero-content {
        padding: 0;
    }

    .hero-description {
        margin: 32px 0;
        padding: 32px 24px;
        max-width: none;
    }

    .story-text {
        padding: 30px 25px;
        margin-bottom: 30px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 18px;
        padding-left: 35px;
        min-height: 30px;
    }

    .hero {
        padding: 100px 16px 40px;
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

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

    .hero-description {
        margin: 24px 0;
        padding: 24px 16px;
        border-radius: 20px;
    }

    .hero-quote {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }
}

/* Cart Page Styles */
.cart-section {
    background: #F4F4F4;
    padding: 80px 0;
    min-height: 60vh;
}

.cart-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cart-container {
    background: white;
    border-radius: 15px;
    padding: 32px;
    box-shadow: 0px 5px 15px rgba(0, 112, 192, 0.1);
}

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

.empty-cart h3 {
    font-size: 24px;
    color: #2C2C2C;
    margin-bottom: 16px;
}

.empty-cart p {
    color: #0070C0;
    margin-bottom: 32px;
}

.cart-items h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2C2C2C;
    text-align: center;
}

.cart-table {
    margin-bottom: 32px;
}

.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 16px;
    background: #FAD9E5;
    border-radius: 8px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 16px;
}

.cart-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid #F4F4F4;
    align-items: center;
}

.cart-row:last-child {
    border-bottom: none;
}

.cart-col {
    display: flex;
    align-items: center;
}

.product-col {
    justify-content: flex-start;
}

.price-col, .quantity-col, .subtotal-col {
    justify-content: center;
}

.action-col {
    justify-content: center;
}

.product-name {
    font-weight: 600;
    color: #2C2C2C;
}

.quantity-input {
    width: 80px;
    padding: 8px;
    border: 1px solid #5BC8D2;
    border-radius: 4px;
    text-align: center;
}

.cart-summary {
    text-align: right;
    padding: 24px 0;
    border-top: 2px solid #F4F4F4;
    margin-bottom: 32px;
}

.cart-total {
    font-size: 20px;
    font-weight: 700;
}

.total-label {
    color: #2C2C2C;
    margin-right: 16px;
}

.total-amount {
    color: #ED55A5;
    font-size: 24px;
}

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

.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.continue-shopping-btn {
    background: transparent;
    color: #0070C0;
    padding: 12px 24px;
    border: 2px solid #0070C0;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.continue-shopping-btn:hover {
    background: #0070C0;
    color: white;
}

.update-cart-btn {
    background: #5BC8D2;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.update-cart-btn:hover {
    background: #4BADB7;
}

.clear-cart-btn {
    background: #ED55A5;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.clear-cart-btn:hover {
    background: #E1408A;
}

.checkout-btn {
    background: linear-gradient(135deg, #F5C542, #ED55A5);
    color: white;
    padding: 12px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(245, 197, 66, 0.3);
}

.remove-btn {
    background: #ED55A5;
    color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 15px;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.remove-btn:hover {
    background: #E1408A;
}

/* Bootstrap Cart Page Styles */
.header-2 {
    background: #F4F4F4;
    padding: 80px 0;
    margin-top: 80px;
}

.page-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0070C0;
}

.page-header .lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #2C2C2C;
}

.cart-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 112, 192, 0.1);
}

.cart-table th {
    background: #FAD9E5;
    border-bottom: 2px solid #ED55A5;
    font-weight: 600;
    color: #2C2C2C;
}

.cart-table td {
    vertical-align: middle;
    border-color: #F4F4F4;
}

.quantity-input {
    border: 1px solid #5BC8D2;
    border-radius: 4px;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.quantity-input:focus {
    border-color: #ED55A5;
    box-shadow: 0 0 0 0.2rem rgba(237, 85, 165, 0.25);
}

.total-amount {
    color: #ED55A5;
    font-size: 1.25rem;
    font-weight: 700;
}

.btn-outline-secondary {
    border-color: #5BC8D2;
    color: #0070C0;
}

.btn-outline-secondary:hover {
    background-color: #5BC8D2;
    border-color: #5BC8D2;
    color: white;
}

.btn-outline-primary {
    border-color: #0070C0;
    color: #0070C0;
}

.btn-outline-primary:hover {
    background-color: #0070C0;
    border-color: #0070C0;
    color: white;
}

.btn-outline-warning {
    border-color: #F5C542;
    color: #2C2C2C;
}

.btn-outline-warning:hover {
    background-color: #F5C542;
    border-color: #F5C542;
    color: #2C2C2C;
}

.btn-outline-danger {
    border-color: #ED55A5;
    color: #ED55A5;
}

.btn-outline-danger:hover {
    background-color: #ED55A5;
    border-color: #ED55A5;
    color: white;
}

.btn-primary {
    background-color: #0070C0;
    border-color: #0070C0;
}

.btn-primary:hover {
    background-color: #005A9A;
    border-color: #005A9A;
}

/* Mobile responsive for cart */
@media (max-width: 768px) {
    .cart-header, .cart-row {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }

    .cart-header {
        display: none;
    }

    .cart-row {
        border: 1px solid #F4F4F4;
        border-radius: 8px;
        margin-bottom: 16px;
        padding: 16px;
    }

    .cart-col {
        justify-content: center;
        margin-bottom: 8px;
    }

    .cart-col:before {
        content: attr(data-label);
        font-weight: 600;
        color: #2C2C2C;
        margin-right: 8px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .action-buttons > * {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 1rem;
    }

    .d-flex.gap-2 {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Delivery Options Toggle Styles */
.btn-group .btn {
    font-weight: 500;
    border-radius: 0 !important;
    border: 1px solid #5BC8D2;
    color: #0070C0;
    transition: all 0.3s ease;
}

.btn-group .btn:first-of-type {
    border-top-left-radius: 30px !important;
    border-bottom-left-radius: 30px !important;
}

.btn-group .btn:last-of-type {
    border-top-right-radius: 30px !important;
    border-bottom-right-radius: 30px !important;
}

.btn-group .btn + .btn {
    margin-left: -1px;
}

.btn-check:checked + .btn {
    background: #ED55A5;
    color: #fff;
    border-color: #ED55A5;
    z-index: 1;
}

.btn-group .btn:hover {
    background-color: #5BC8D2;
    border-color: #5BC8D2;
    color: white;
}

/* Order Type Container */
.order-type-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.order-type-container .card {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 112, 192, 0.1);
}

.order-type-container .card-body {
    padding: 2rem;
}

/* Map Placeholder */
#map {
    background: #F4F4F4;
    border: 2px solid #5BC8D2;
    border-radius: 8px;
    z-index: 1;
}

#map .leaflet-container {
    border-radius: 6px;
}

#map .leaflet-popup-content {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

#map .leaflet-popup-content b {
    color: #ED55A5;
    font-weight: 600;
}

/* Form Styling */
.form-label {
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 1px solid #5BC8D2;
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #ED55A5;
    box-shadow: 0 0 0 0.2rem rgba(237, 85, 165, 0.25);
}

.form-control::placeholder {
    color: #0070C0;
    opacity: 0.7;
}

/* Required field indicator */
.text-danger {
    color: #ED55A5 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn-group .btn {
        min-width: 80px;
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }

    .order-type-container {
        margin: 0 1rem;
    }

    .order-type-container .card-body {
        padding: 1.5rem;
    }
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero h1 {
    animation-delay: 0.2s;
}

.hero-quote {
    animation-delay: 0.4s;
}

.hero-btn {
    animation-delay: 0.6s;
}

/* Scroll effects */
.story-section, .products-section, .reviews-section {
    /*opacity: 0;*/
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Stock text styling for home page */
.stock-text {
    font-size: 11px;
    font-weight: 600;
    margin: 4px 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.stock-text.out-of-stock {
    color: #dc3545;
}

.stock-text.low-stock {
    color: #ffc107;
}

.add-to-cart-btn.disabled {
    background: #6c757d !important;
    color: #fff !important;
    cursor: not-allowed !important;
    opacity: 0.6;
    pointer-events: none !important;
}

.add-to-cart-btn.disabled:hover {
    background: #6c757d !important;
    transform: none !important;
    box-shadow: none !important;
}
