﻿
.breadcrumb {
    font-size: 0.875rem;
    color: #888;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
}

    .breadcrumb a:hover {
        color: #166534;
    }

.breadcrumb span:last-child {
    color: #000;
    font-weight: 600;
}

/* Product Section */
.product-section {
    display: grid;
    gap: 2rem 3rem;
    background-color: white;
    border-radius: 1rem;
    margin-top: 2rem;
}

.product-image {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

    .product-image img {
        width: 100%;
        height: auto;
        display: block;
    }

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
}

.product-category {
    font-size: 0.875rem;
    font-weight: 600;
    color: #226124;
    text-transform: uppercase;
    letter-spacing: 0px;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-title {
    font-size: 2rem;
    font-weight: bold;
    color: #093f0b;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
}

.stars {
    color: #fbbf24;
}

.review-count {
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.product-description {
    color: #000;
    line-height: 1.8;
    font-size: 14px;
    font-weight: 500;
}

/* Feature Tags */
.feature-tags {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem;
    background-color: #e5e9e3;
    border-radius: 0.5rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: #166534;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature-text {
    color: #4b5563;
    font-size: 14px;
}

/* Size Selection */


.size-label {
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-option {
    padding: 10px 20px;
    border: 1px solid #e7e2da;
    border-radius: 0.75rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    background-color: white;
}

    .size-option:hover {
        border-color: #e5e9e3;
    }

    .size-option.active {
        border-color: #093f0b;
        background-color: #e5e9e3;
    }

.size-name {
    font-weight: 600;
    display: block;
    font-size: 14px;
}

.size-price {
    font-size: 11px;
    color: #888888;
}

/* Price and Quantity */
.price-quantity {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.price-section {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

    .price-section div {
        font-size: 0.875rem;
        color: #6b7280;
    }

.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #235c3b;
    margin-top: auto;
}

.quantity-section div {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: none;
    background-color: white;
    cursor: pointer;
    font-size: 1.25rem;
    color: #166534;
    transition: background-color 0.3s;
}

    .quantity-btn:hover {
        background-color: #f0f9f1;
    }

.quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 600;
}

.subtotal {
    text-align: right;
    margin-top: 1rem;
}

.subtotal-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.subtotal-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
}

/* Action Buttons */
.action-buttons {
    display: grid;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 14px;
}

.btn-primary {
    background-color: #5ba15d;
    color: white;
}

    .btn-primary:hover {
        background-color: #15803d;
    }

.btn-secondary {
    background-color: white;
    color: #5ba15d;
    border: 2px solid #5ba15d;
}

    .btn-secondary:hover {
        background-color: #f0f9f1;
    }

/* Bulk Info */
.bulk-info {
    text-wrap: balance;
    padding: 10px 1.25rem;
    border-radius: 12px;
    border: 1px solid #e7e2da;
}

.bulk-info-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bulk-info-text {
    color: #6b7280;
    font-size: 0.9rem;
}

.bulk-info a {
    color: #166534;
    text-decoration: none;
    font-weight: 600;
    text-decoration: underline;
}

.welcome-image img {
    display: block;
}
/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: none;
    z-index: 1000;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 500px;
    width: 90%;
}

.modal-close {
    position: absolute;
    top: 0.25rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #000;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.success-message {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000;
    font-weight: 600;
    margin-top: 1rem;
    background-color: #E5E9E3;
    border-radius: 12px;
    padding: 12px;
}



.modal-product-details {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.modal-product-image {
    width: 80px;
    height: 80px;
    border-radius: 0.5rem;
    object-fit: cover;
}

.modal-product-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: #111827;
    font-weight: bold;
}

.modal-product-info p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: #000;
}

.modal-product-info .modal-price {
    font-weight: 600;
}

.modal-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    justify-content: center;
}

/* Responsive Design */
@media (min-width: 640px) {
    .feature-tags {
        grid-template-columns: repeat(2, 1fr);
    }

    .action-buttons {
        grid-template-columns: 1fr 1fr;
    }

    .product-description {
        font-size: 16px;
    }
}

@media (min-width: 1280px) {
    .product-section {
        grid-template-columns: 1fr 710px;
    }

    .welcome-image img {
        aspect-ratio: 599/700;
    }

    .feature-tags {
        grid-template-columns: repeat(2, 1fr);
    }

    .action-buttons {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .product-title {
        font-size: 3rem;
    }
}

@media (max-width: 479px) {
    .modal-content {
        padding: 1rem;
    }
    /* .modal-product-details {
              flex-direction: column;
              text-align: center;
            } */
    .modal-buttons {
        flex-direction: column;
    }
}

/* Benefits Section */
.benefits-section {
    display: grid;
    gap: 0.75rem 1rem;
    margin-bottom: 3rem;
}

.benefit-details {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #888888;
    font-size: 0.95rem;
}

.bullet {
    width: 6px;
    height: 6px;
    background-color: #888888;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #093F0B;
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 0;
    transition: color 0.3s;
    font-size: 14px;
}

    .back-link:hover {
        color: #166534;
    }

/* Responsive Design */
@media (min-width: 768px) {
    .supply-section {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .benefits-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }

    .supply-section {
        gap: 3rem;
    }
}


