.product-section {
    background: #d6d3c4;
    padding: 7rem 2rem 5rem;
    min-height: 100vh;
}

/* Two column layout */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 2.5rem;
}

/* Left — Images */
.product-main-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 2px;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.thumbnail {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    cursor: pointer;
    border-radius: 2px;
    opacity: 0.75;
    transition: opacity 0.2s ease;
    border: 2px solid transparent;
}

.thumbnail:hover {
    opacity: 1;
}

/* Right — Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0;
    line-height: 1.3;
}

.product-price {
    font-family: "Source Sans 3", sans-serif;
    font-size: 1rem;
    color: #2c2c2c;
    margin: 0;
}

/* Quantity + Read Story row */
.product-actions-top {
    display: flex;
    align-items: stretch;    /* Make both same height */
    gap: 0.75rem;
}

.product-actions-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;            /* Make sure gap is there */
}

.product-actions-bottom form {
    width: 100%;            /* Form must be full width */
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #9ea894;
    background: #9ea894;
    border-radius: 2px;
    overflow: hidden;
}

.quantity-selector button {
    background: #9ea894;
    border: none;
    padding: 0.4rem 0.75rem;
    cursor: pointer;
    font-size: 1rem;
    color: white;
    transition: background 0.2s;
}

.quantity-selector button:hover {
    background: #8a9480;
}

.quantity-selector span {
    padding: 0.4rem 0.75rem;
    font-size: 0.95rem;
    font-family: "Source Sans 3", sans-serif;
    min-width: 2rem;
    text-align: center;
    color: white;
    background: #9ea894;
}

.read-story-btn {
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.9rem;
    color: white;
    text-decoration: none;
    background: #9ea894;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 2px;
    transition: background 0.2s;
    white-space: nowrap;
    flex: 1;               /* Stretch to fill remaining space */
    text-align: center;
    display: block;
}

.read-story-btn:hover {
    background: #8a9480;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.75rem;
    background: #9ea894;
    border: none;
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.95rem;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
    display: block;
}

.add-to-cart-btn:hover {
    background: #8a9480;
}

.buy-now-btn {
    width: 100%;
    padding: 0.75rem;
    background: #9ea894;
    border: none;
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.95rem;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
    display: block;
}

.buy-now-btn:hover {
    background: #8a9480;
}

/* Description */
.product-description {
    margin-top: 0.5rem;
}

.description-title {
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.4rem;
}

.product-description p {
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.9rem;
    color: #3a3a3a;
    line-height: 1.7;
    margin: 0;
}

/* Accordion */
.product-accordion {
    border-top: 1px solid #bbb;
    margin-top: 0.5rem;
}

.accordion-item {
    border-bottom: 1px solid #bbb;
}

.accordion-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 0.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.9rem;
    color: #2c2c2c;
    cursor: pointer;
    text-align: left;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.875rem;
    color: #555;
    padding: 0 0 0.75rem;
    margin: 0;
    line-height: 1.6;
}

/* Related products */
.related-products {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 1rem;
    border-top: 1px solid #191919;
}

.related-title {
    font-family: "Source Sans 3", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.related-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 2px;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.related-card:hover .related-image img {
    transform: scale(1.04);
}

.related-name {
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-top: 0.5rem;
}

.related-price {
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.85rem;
    color: #555;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}