 /* Price */
 .product-price {
     float: left;
     width: 100%;
     padding: 5px 8px 10px;
     text-align: left;
     margin: 0 0 20px;
 }

 strong {
     color: #b30a00
 }

 .specifications {
     margin: 0 0 20px;
     padding: 0;
     float: left;
     width: 100%;
 }

 .spec-group {
     margin-bottom: 20px;
 }

 .spec-group h3 {
     color: #e74c3c;
     margin-bottom: 10px;
     font-size: 0.8rem;
 }

 .spec-row {
     display: flex;
     margin-bottom: 8px;
     padding-bottom: 8px;
     border-bottom: 1px dotted #ddd;
 }

 .spec-row:last-child {
     border-bottom: none;
 }

 .spec-name {
     flex: 1;
     font-weight: bold;
     color: #555;
 }

 .spec-value {
     flex: 2;
     color: #333;
 }

 .detail {
     width: 98%;
     float: left;
     padding: 7px;
     text-align: center;
     margin: 10px 1% 0;
     border-right: 10px solid #ccc;
     border-left: 10px solid #ccc;
     background: #f4f4f4;
 }

 .similar-products,
 .new-released-products,
 .popular-products,
 .upcoming-products {
     margin: 0 0 20px 0;
     padding: 0;
     border: 1px solid #e2e2e2;
     float: left;
     width: 100%;
 }

 .similar-products h2,
 .new-released-products h2,
 .popular-products h2,
 .upcoming-products h2 {
     width: 100%;
     display: inline-block;
     font-size: 1rem;
     padding: 10px;
     background-color: #B30B00;
     color: white;
     margin-bottom: 0;
 }

 .colums {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
     gap: 15px;
     margin-top: 15px;
 }

 .product-variants {
     margin: 0 0 20px;
     padding: 0;
     float: left;
     width: 100%;
 }

 .heading {
     color: #b30a00;
     padding: 8px 12px;
     font-size: 1rem;
     margin: 0;
     width: 100%;
     height: auto;
     text-align: center;
     float: left;
     background-image: linear-gradient(to bottom, #e2e2e2, #aaa);
     border-left: 15px solid #b30a00;
     border-bottom: 0;
     text-transform: uppercase;
     border-right: 15px solid #b30a00;
     line-height: 1rem;
 }

 .variant-table {
     width: 100%;
     border-collapse: collapse;
     font-size: 1rem;
 }

 .variant-table th,
 .variant-table td {
     border: 1px solid #ddd;
     padding: 8px;
     text-align: center;
 }

 .variant-table th {
     background: #f2f2f2;
     font-weight: 600;
     color: #333;
 }

 .variant-table tr:nth-child(even) {
     background: #fdfdfd;
 }

 .variant-table tr:hover {
     background: #f5f5f5;
 }

 .quick-specs-card {
     max-width: 100%;
     background: url('/assets/images/specs-bg.jpg') no-repeat center center / cover, #e2e2e2;
     padding: 10px;
     text-align: left;
     color: #333;
     float: left;
 }

 .hit-counter {
     color: rgb(179, 10, 0);
     padding: 10px 0;
     border-radius: 4px;
     font-size: 1rem;
     text-align: center;
     float: left;
     margin: 10px 3%;
     background: #fff;
     border-left: 10px solid #ccc;
     border-right: 10px solid #ccc;
     width: 94%;
     border-radius: 0;
 }

 .image-box {
     margin: 0;
     float: left;
     width: 100%;
     text-align: center;
     padding: 0;
 }

 .image-box .detail-image {
     width: 50%;
     padding: 5px;
     margin: 0;
     text-align: center;
     float: left;
 }

 .image-box .detail-right {
     width: 50%;
     padding: 0;
     margin: 0;
     text-align: center;
     float: right;
     background-color: #e2e2e2;
 }

 .quick-specs-list {
     display: flex;
     flex-direction: column;
     gap: 10px;
     width: 100%;
 }

 .quick-specs-item {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 1rem;
     margin: 0 1%;
     border-left: 10px solid #ccc;
     border-right: 10px solid #ccc;
     border-radius: 0;
     width: 98%;
 }

 .quick-specs-item:first-child {
     margin-top: 10px;
 }

 .quick-specs-item i {
     font-size: 1rem;
     color: #b30a00;
     width: 24px;
     text-align: center;
 }

 .quick-specs-item span {
     font-weight: 600;
     flex: 0 0 80px;
     color: #444;
 }

 .quick-specs-item strong {
     flex: 1;
     font-weight: 500;
     color: #111;
 }

 /* Product Feedback Section */
 /* Rating System */
 .rating-system {
     margin: 0;
     float: left;
     width: 100%;
     text-align: center;
     padding: 0 0 10px
 }

 .rating-widget {
     display: flex;
     flex-wrap: wrap;
     gap: 1rem;
     float: left;
 }

 .current-rating {
     text-align: center;
     padding: 1rem;
     background: #f9f9f9;
     border-radius: 8px;
     min-width: 150px;
 }

 .current-rating .average {
     font-size: 1rem;
     font-weight: bold;
     color: #333;
     line-height: 1;
 }

 .current-rating .stars {
     margin: 0.5rem 0;
     font-size: 1.5rem;
     color: #ddd;
 }

 .current-rating .stars .star.filled {
     color: #ffc107;
 }

 .current-rating .stars .star.half {
     position: relative;
 }

 .current-rating .stars .star.half:before {
     content: '★';
     position: absolute;
     left: 0;
     width: 50%;
     overflow: hidden;
     color: #ffc107;
 }

 .rating-count {
     font-size: 0.9rem;
     color: #666;
 }

 .rate-product {
     flex: 1;
 }

 .rate-product p {
     padding: 1rem 0 0.5rem;
     color: #b30a00;
 }

 .rating-input {
     gap: 0.25rem;
     font-size: 2rem;
     color: #fff;
     cursor: pointer;
 }

 .rating-input .star {
     transition: color 0.2s;
 }

 .rating-input .star.filled {
     color: #ffc107;
 }

 .rating-input .star:hover {
     color: #ffc107;
 }

 .rating-notice {
     color: #28a745;
     font-weight: 500;
 }

 /* Comments Section */
 .comments-section {
     margin: 0 0 20px;
     padding: 0;
     float: left;
     width: 100%;
 }

 /* Comment Form */
 .comment-form {
     padding: 10px 15px;
     background: rgb(249, 249, 249);
     border-radius: 0;
     margin-bottom: 20px;
 }

 .comment-form h3 {
     margin-top: 0;
     margin-bottom: 1.5rem;
     color: #333;
 }

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

 .form-group label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: 500;
     color: #333;
 }

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 0.75rem;
     border: 1px solid #ddd;
     border-radius: 6px;
     font-size: 1rem;
     transition: border-color 0.2s;
 }

 .form-group input:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: #007bff;
     box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
 }

 /* CAPTCHA Styles */
 .captcha-container {
     display: flex;
     flex-direction: column;
     gap: 0.5rem;
 }

 .captcha-image {
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .captcha-image img {
     border: 1px solid #ddd;
     border-radius: 4px;
     padding: 5px;
     background: #fff;
 }

 #refreshCaptcha {
     background: #f8f9fa;
     border: 1px solid #ddd;
     border-radius: 4px;
     padding: 0.5rem;
     cursor: pointer;
     transition: background 0.2s;
 }

 #refreshCaptcha:hover {
     background: #e9ecef;
 }

 .submit-btn {
     background: #28a745;
     color: white;
     border: none;
     padding: 0.75rem 1.5rem;
     border-radius: 6px;
     font-weight: 600;
     cursor: pointer;
     transition: background 0.2s;
 }

 .submit-btn:hover {
     background: #218838;
 }

 .form-notice {
     margin-top: 1rem;
     padding: 0.75rem;
     border-radius: 6px;
 }

 .form-notice.success {
     background: #d4edda;
     color: #155724;
     border: 1px solid #c3e6cb;
 }

 .form-notice.error {
     background: #f8d7da;
     color: #721c24;
     border: 1px solid #f5c6cb;
 }

 /* Comments List */
 .comment {
     border: 1px solid #ccc;
     float: left;
     width: 100%;
     border-bottom: 0;
 }

 .comment-body p {
     margin: 0;
     line-height: 1.6;
     color: #444;
     float: left;
     width: 100%;
     padding: 0 15px 10px;
     border-bottom: 1px solid #ccc;
 }

 .comment-header {
     justify-content: space-between;
     align-items: center;
     margin: 0.75rem;
     float: left;
     width: 100%;
 }

 .commenter-info {
     flex-direction: column;
     float: left;
     width: 100%;
 }

 .comment-author {
     font-weight: 600;
     color: #333;
     margin: 0.25rem;
     float: left;
 }

 .comment-date {
     font-size: 0.85rem;
     color: #f94242;
     float: left;
     padding: 5px 10px;
 }

 .no-comments {
     text-align: center;
     padding: 0;
     color: #b30a00;
     font-style: italic;
 }

 /* Responsive Design */
 @media (max-width: 900px) {
     .heading {
         padding: 8px;
         font-size: 0.8rem;
         border-left: 10px solid #b30a00;
         border-right: 10px solid #b30a00;
     }

     .quick-specs-card {
         padding: 0;
     }

     body {
         font-size: 14px;
     }

     .image-box .detail-image {
         width: 100%;
         padding: 0;
     }

     .image-box .detail-right {
         width: 100%;
     }

     .rating-widget {
         flex-direction: column;
         gap: 1rem;
     }

     .current-rating {
         min-width: auto;
     }
 }

 @media (max-width: 700px) {

     .sh1,
     .sh2,
     .sh3,
     .sh6 {
         display: none;
     }
 }

 @media (max-width: 400px) {
     .heading {
         padding: 8px;
         font-size: 0.75rem;
     }

     .product-price {
         padding: 0;
     }

     body {
         font-size: 12px;
     }
 }