body {
    background-color: #FFEAEA !important;
}

.product-page-wrapper {
    padding-top: 20px;
    font-family: "Montserrat", sans-serif;
    color: #31262A;
    /* Your Dark Brand Text */
}

/* 2. Breadcrumbs */
.breadcrumb-item a {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: #E68A8A;
}

.breadcrumb-item.active {
    color: #31262A;
    font-weight: 600;
}

/* 3. Image Gallery */
.main-image-card {
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.2s;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item:hover,
.thumb-item.active {
    border-color: #E68A8A;
    opacity: 1;
}

/* 4. Product Typography */
.letter-spacing-2 {
    letter-spacing: 2px;
}

.product-title {
    font-family: "Times New Roman", Times, serif;
    /* Matching your Featured Titles */
    font-weight: 400;
    color: #31262A;
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 500;
    color: #31262A;
}

.description-text {
    line-height: 1.8;
    font-size: 0.95rem;
}

/* 5. Addons Section */
.addon-card {
    background-color: white;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.addon-card:hover {
    border-color: #E68A8A;
    background-color: #fff5f5;
}

/* When checked (Bootstrap btn-check logic) */
.btn-check:checked+.addon-card {
    background-color: #fff5f5;
    border-color: #E68A8A;
    color: #31262A;
}

.addon-price {
    font-weight: 600;
    color: #E68A8A;
}

/* 6. Buttons & Inputs */
.quantity-wrapper {
    background-color: #f8f9fa;
    border-radius: 50px;
    /* Pill shape */
    border: 1px solid #e0e0e0;
    height: 50px;
}

.quantity-wrapper input {
    background: transparent;
    color: #31262A;
}

.btn-add-cart {
    background-color: #31262A;
    /* Dark button for high contrast */
    color: white;
    border-radius: 50px;
    /* Pill shape matches your theme */
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-add-cart:hover {
    background-color: #E68A8A;
    /* Pink on hover */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 138, 138, 0.4);
}

/* 7. Inquiry Button (Matches Add to Cart - Solid) */
.btn-inquire {
    background-color: #31262A;
    color: white;
    border: none;
    border-radius: 50px;
    /* Pill shape */
    transition: all 0.3s ease;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-inquire:hover {
    background-color: #E68A8A;
    /* Pink on hover */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 138, 138, 0.4);
}