/* Product Page Specific Styles */

.breadcrumb {
    background-color: var(--light-gray);
    padding: 1rem 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--navy);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.product-section {
    padding: 3rem 0;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Product Images */
.product-images {
    position: sticky;
    top: 100px;
}

.main-image {
    margin-bottom: 1rem;
}

.main-image .placeholder-image {
    height: 500px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

.thumbnail-images {
    display: flex;
    gap: 1rem;
}

.thumbnail {
    flex: 1;
    height: 80px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.thumbnail.active,
.thumbnail:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Product Info */
.product-info {
    padding: 1rem;
}

.collection-badge {
    background: var(--gold);
    color: var(--navy);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

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

.product-description {
    margin-bottom: 2rem;
}

.product-description p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Scripture Integration */
.scripture-integration {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.scripture-integration blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.scripture-integration cite {
    display: block;
    text-align: right;
    color: var(--gold);
    font-weight: 600;
}

/* Product Options */
.product-options {
    margin-bottom: 2rem;
}

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

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

.color-options {
    display: flex;
    gap: 0.5rem;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
}

.color-option.active {
    border-color: var(--gold);
}

/* Purchase Options */
.purchase-options {
    margin-bottom: 2rem;
}

.quantity-selector {
    margin-bottom: 1.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--light-gray);
    background: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
}

.qty-btn:hover {
    background: var(--light-gray);
}

.quantity-controls input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--light-gray);
    font-size: 1.1rem;
}

.btn-add-cart {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s;
}

.btn-add-cart:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-buy-now {
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-buy-now:hover {
    background: var(--navy);
    color: var(--white);
}

/* Email Capture */
.email-capture-product {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.email-form-compact {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.email-form-compact input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
}

/* Product Features */
.product-features {
    margin-bottom: 2rem;
}

.product-features h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.features-list li:last-child {
    border-bottom: none;
}

/* Shipping Info */
.shipping-info {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
}

.shipping-info p {
    margin: 0.5rem 0;
}

/* Size Guide Section */
.size-guide-section {
    padding: 4rem 0;
    background: var(--cream);
}

.size-guide-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

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

.size-chart th,
.size-chart td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.size-chart th {
    background: var(--navy);
    color: var(--white);
}

.size-tips h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.size-tips ul {
    list-style: none;
}

.size-tips li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.size-tips li:before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
}

/* Care Section */
.care-section {
    padding: 4rem 0;
}

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

.care-item {
    text-align: center;
    padding: 1.5rem;
}

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

.care-item h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.care-scripture {
    text-align: center;
    font-style: italic;
    color: var(--gold);
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: var(--cream);
}

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

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.review-stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.reviewer {
    color: var(--navy);
    font-weight: 600;
}

/* Related Products */
.related-products {
    padding: 4rem 0;
}

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

.product-card {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-bottom: 1rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
    }
    
    .product-images {
        position: relative;
    }
    
    .size-guide-content {
        grid-template-columns: 1fr;
    }
    
    .product-title {
        font-size: 2rem;
    }
}
