/*!* === Product Detail Section === *!*/
/*.product-detail-section {*/
/*    padding: 60px 0;*/
/*    background: #f4f6f8;*/
/*}*/

/*.product-detail-grid {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    gap: 40px;*/
/*    justify-content: center;*/
/*    align-items: flex-start;*/
/*}*/

/*!* === Image Card === *!*/
/*.product-images {*/
/*    flex: 1;*/
/*    max-width: 480px;*/
/*    background: #fff;*/
/*    padding: 20px;*/
/*    border-radius: 12px;*/
/*    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);*/
/*    text-align: center;*/
/*}*/

/*.product-main-image {*/
/*    width: 100%;*/
/*    max-height: 450px;*/
/*    border-radius: 10px;*/
/*    object-fit: contain;*/
/*}*/

/*!* === Info Card === *!*/
/*.product-info {*/
/*    flex: 1;*/
/*    background: #fff;*/
/*    padding: 30px;*/
/*    border-radius: 12px;*/
/*    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);*/
/*}*/

/*.product-info h1 {*/
/*    font-size: 28px;*/
/*    margin-bottom: 15px;*/
/*    color: #222;*/
/*}*/

/*.product-price {*/
/*    font-size: 24px;*/
/*    color: #27ae60;*/
/*    font-weight: bold;*/
/*}*/

/*.original-price {*/
/*    text-decoration: line-through;*/
/*    color: #aaa;*/
/*    font-size: 16px;*/
/*    margin-left: 10px;*/
/*}*/

/*.product-stock {*/
/*    margin: 10px 0;*/
/*    font-weight: 500;*/
/*}*/

/*.out-of-stock {*/
/*    color: #e74c3c;*/
/*    font-weight: bold;*/
/*}*/

/*!* === Action Buttons === *!*/
/*.product-actions {*/
/*    margin-top: 25px;*/
/*    display: flex;*/
/*    gap: 10px;*/
/*}*/

/*.product-actions button {*/
/*    padding: 12px 24px;*/
/*    border: none;*/
/*    border-radius: 6px;*/
/*    font-weight: 600;*/
/*    cursor: pointer;*/
/*    transition: background-color 0.3s ease;*/
/*}*/

/*.btn-add-to-cart {*/
/*    background-color: #3498db;*/
/*    color: #fff;*/
/*}*/

/*.btn-buy-now {*/
/*    background-color: #2ecc71;*/
/*    color: #fff;*/
/*}*/

/*.btn-add-to-cart:hover {*/
/*    background-color: #2980b9;*/
/*}*/

/*.btn-buy-now:hover {*/
/*    background-color: #27ae60;*/
/*}*/

/*!* === Reviews Section === *!*/
/*.product-reviews-section {*/
/*    background: #fff;*/
/*    padding: 60px 0;*/
/*    margin-top: 60px;*/
/*    border-top: 1px solid #eee;*/
/*}*/

/*.product-reviews-section h2 {*/
/*    text-align: center;*/
/*    font-size: 28px;*/
/*    font-weight: 700;*/
/*    margin-bottom: 40px;*/
/*    color: #333;*/
/*}*/

/*.reviews {*/
/*    max-width: 800px;*/
/*    margin: 0 auto;*/
/*}*/

/*.review {*/
/*    background: #fdfdfd;*/
/*    border-radius: 10px;*/
/*    padding: 20px;*/
/*    margin-bottom: 20px;*/
/*    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);*/
/*}*/

/*.review-author {*/
/*    font-weight: 600;*/
/*    margin-bottom: 5px;*/
/*}*/

/*.review-rating {*/
/*    margin: 5px 0;*/
/*}*/

/*.star {*/
/*    font-size: 20px;*/
/*    color: #ccc;*/
/*    cursor: pointer;*/
/*}*/

/*.star.filled {*/
/*    color: #f1c40f;*/
/*}*/

/*!* === Review Form === *!*/
/*.review-form {*/
/*    max-width: 800px;*/
/*    margin: 50px auto 0;*/
/*    background: #fff;*/
/*    padding: 30px;*/
/*    border-radius: 12px;*/
/*    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);*/
/*}*/

/*.review-form h3 {*/
/*    font-size: 22px;*/
/*    margin-bottom: 20px;*/
/*    color: #444;*/
/*}*/

/*.review-form .form-group {*/
/*    margin-bottom: 20px;*/
/*}*/

/*.review-form textarea,*/
/*.review-form select {*/
/*    width: 100%;*/
/*    padding: 12px;*/
/*    font-size: 15px;*/
/*    border-radius: 6px;*/
/*    border: 1px solid #ccc;*/
/*    resize: vertical;*/
/*}*/

/*.review-form textarea:focus,*/
/*.review-form select:focus {*/
/*    border-color: #888;*/
/*    outline: none;*/
/*}*/

/*.btn-submit-review {*/
/*    padding: 12px 24px;*/
/*    background-color: #34495e;*/
/*    color: white;*/
/*    border: none;*/
/*    border-radius: 6px;*/
/*    font-weight: 600;*/
/*    cursor: pointer;*/
/*    transition: 0.3s;*/
/*}*/

/*.btn-submit-review:hover {*/
/*    background-color: #2c3e50;*/
/*}*/

/*!* === Quantity Box === *!*/
/*.quantity-box {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*    margin-top: 20px;*/
/*}*/

/*.quantity-box input[type='number'] {*/
/*    width: 60px;*/
/*    padding: 8px;*/
/*    text-align: center;*/
/*    border: 1px solid #ccc;*/
/*    border-radius: 6px;*/
/*}*/
/*.qty-wrapper {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*    margin: 20px 0;*/
/*}*/

/*.qty-wrapper input[type="number"] {*/
/*    width: 60px;*/
/*    padding: 8px;*/
/*    text-align: center;*/
/*    border: 1px solid #ccc;*/
/*    border-radius: 6px;*/
/*    font-size: 16px;*/
/*}*/

/*.qty-btn {*/
/*    background: #eee;*/
/*    padding: 8px 14px;*/
/*    border: none;*/
/*    border-radius: 6px;*/
/*    font-weight: bold;*/
/*    font-size: 18px;*/
/*    cursor: pointer;*/
/*    transition: 0.2s ease;*/
/*}*/

/*.qty-btn:hover {*/
/*    background: #ddd;*/
/*}*/

/*.info-tab-btn {*/
/*    padding: 10px 18px;*/
/*    margin-right: 10px;*/
/*    border-radius: 6px;*/
/*    font-weight: 600;*/
/*    color: #fff;*/
/*    cursor: pointer;*/
/*    border: none;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.info-tab-btn:hover {*/
/*    background-color: #e0e0e0;*/
/*    border-color: #999;*/
/*}*/
/*.product-outer-card {*/
/*    width: 100vw;*/
/*    margin-left: calc(-50vw + 50%);*/
/*    margin-right: calc(-50vw + 50%);*/
/*    background: white;*/
/*    border-radius: 16px;*/
/*    box-shadow: 0 8px 20px rgba(0,0,0,0.05);*/
/*    padding: 30px;*/
/*}*/

/*.container {*/
/*    max-width: 1200px; !* or similar *!*/
/*    margin: 0 auto;*/
/*}*/

/*.product-page .container {*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*    padding: 0;*/
/*}*/

/*.leadtime-btn {*/
/*    background-color: #3498db;*/
/*}*/

/*.leadtime-btn:hover {*/
/*    background-color: #2980b9;*/
/*}*/

/*.bulk-btn {*/
/*    background-color: #169435;*/
/*}*/

/*.bulk-btn:hover {*/
/*    background-color: #27ae60;*/
/*}*/

/*.yellow-btn {*/
/*    background-color: #f1c40f;*/
/*    color: #222;*/
/*    font-weight: bold;*/
/*}*/

/*.yellow-btn:hover {*/
/*    background-color: #d4ac0d;*/
/*}*/

/*.purple-btn {*/
/*    background-color: #8e44ad;*/
/*    color: white;*/
/*    font-weight: bold;*/
/*}*/

/*.purple-btn:hover {*/
/*    background-color: #6c3483;*/
/*}*/


/*.custom-modal-overlay {*/
/*    position: fixed;*/
/*    top: 0; left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0, 0, 0, 0.65);*/
/*    z-index: 9999;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    overflow-y: auto;*/
/*    display: none; !* This stays at the end to override *!*/
/*}*/

/*.custom-modal-box {*/
/*    background: white;*/
/*    max-width: 600px;*/
/*    width: 90%;*/
/*    padding: 30px;*/
/*    border-radius: 12px;*/
/*    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);*/
/*    position: relative;*/
/*}*/

/*.custom-modal-title {*/
/*    font-size: 22px;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.custom-modal-body {*/
/*    font-size: 15px;*/
/*}*/

/*.custom-modal-footer {*/
/*    margin-top: 25px;*/
/*    text-align: right;*/
/*}*/

/*.custom-modal-close {*/
/*    padding: 10px 20px;*/
/*    background: #2980b9;*/
/*    color: white;*/
/*    border: none;*/
/*    border-radius: 6px;*/
/*    cursor: pointer;*/
/*}*/

/*.custom-modal-close:hover {*/
/*    background: #1f6391;*/
/*}*/


/* #starRating .star {*/
/*     transition: color 0.2s;*/
/* }*/

/*#starRating .star.hovered,*/
/*#starRating .star.selected {*/
/*    color: #f39c12;*/
/*}*/

