:root {
    --primary-color: #f57224; /* Daraz orange */
    --secondary-color: #ff6b00;
    --dark-color: #212121;
    --light-color: #f5f5f5;
    --success-color: #388e3c;
    --danger-color: #d32f2f;
    --border-color: #e0e0e0;
    --text-muted: #757575;
    --bg-light: #fafafa;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --border-radius: 4px;
}


.product-page {
    color: var(--dark-color);
    line-height: 1.5;
}

.container_product{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.main-content{
    margin: 2%;
}

.modal{
    margin: 10%;
}

.breadcrumb-container {
    background-color: var(--bg-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.breadcrumb {
    padding: 0;
    margin: 0;
    background-color: transparent;
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: var(--text-muted);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

/* Product container */
.product-container {
    padding: 20px 0 40px;
    background: white;
}

/* Product gallery */
.product-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.product-images {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: sticky;
    top: 20px;
}

.product-main-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    background: white;
    padding: 30px;
    cursor: zoom-in;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.product-main-image:hover {
    transform: scale(1.02);
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--border-color);
}

.product-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.product-thumbnails::-webkit-scrollbar-track {
    background: var(--border-color);
}

.product-thumbnails::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 2px;
}

.product-thumbnail {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    background: white;
    padding: 5px;
    flex-shrink: 0;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(245, 114, 36, 0.2);
}

/* Product details */
.product-details {
    flex: 1;
    min-width: 300px;
    padding: 0 15px;
}

.product-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--dark-color);
    line-height: 1.3;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-muted);
}

.product-brand {
    position: relative;
    padding-right: 15px;
}

.product-brand::after {
    content: '';
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: var(--border-color);
}

.product-sku {
    position: relative;
    padding-right: 15px;
}

.product-sku::after {
    content: '';
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: var(--border-color);
}

.product-availability .availability-value {
    font-weight: 500;
}

.availability-value.in-stock {
    color: var(--success-color);
}

.availability-value.low-stock {
    color: #ff9800;
}

.availability-value.out-of-stock {
    color: var(--danger-color);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-rating-stars {
    position: relative;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 2px;
}

.stars-empty {
    color: #ddd;
}

.stars-filled {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #ffb700;
}

.product-rating-count {
    color: var(--primary-color);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.product-rating-count:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.rating-average {
    font-size: 14px;
    color: var(--text-muted);
}

.divider {
    height: 1px;
    background: var(--border-color);
    margin: 20px 0;
    border: none;
}

/* Price section */
.price-container {
    margin-bottom: 20px;
    padding: 15px;
    background: #fff8f5;
    border-radius: var(--border-radius);
    border: 1px solid #ffe0d0;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    margin-right: 10px;
}

.original-price {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 10px;
}

.discount-badge {
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: 500;
    display: inline-block;
}

.tax-info {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Product short description */
.product-short-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #424242;
    margin-bottom: 20px;
    padding: 0 5px;
}

/* Variant selector */
.product-variants {
    margin-bottom: 25px;
}

.variant-section {
    margin-bottom: 20px;
}

.variant-label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--dark-color);
    font-weight: 500;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variant-option {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    position: relative;
    background: white;
    user-select: none;
}

.variant-option:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
}

.variant-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(245, 114, 36, 0.1);
    box-shadow: 0 0 0 1px var(--primary-color);
    font-weight: 500;
}

.variant-option.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: relative;
    border: 2px solid transparent;
    padding: 0;
}

.variant-option.color-option.selected {
    border-color: white;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.variant-option.color-option::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    pointer-events: none;
}

.variant-option.size-option {
    min-width: 40px;
    text-align: center;
}

.variant-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    position: relative;
    background: #f5f5f5;
}

.variant-option.disabled::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--danger-color);
    transform: translateY(-50%);
}

/* Quantity selector */
.quantity-section {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-label {
    font-size: 15px;
    color: var(--dark-color);
    font-weight: 500;
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    background-color: #f5f5f5;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.quantity-btn:hover {
    background-color: #e0e0e0;
}

.quantity-btn:active {
    background-color: #d0d0d0;
}

.quantity-input {
    width: 50px;
    height: 35px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    font-size: 16px;
    -moz-appearance: textfield;
    font-weight: 500;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Action buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    flex: 1;
    min-width: 200px;
    box-shadow: 0 2px 4px rgba(245, 114, 36, 0.3);
}

.btn-primary:hover {
    background-color: #e5671f;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(245, 114, 36, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(245, 114, 36, 0.3);
}

.btn-primary:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn-secondary {
    background-color: white;
    color: var(--dark-color);
    border: 1px solid var(--border-color);
    flex: 1;
    min-width: 200px;
}

.btn-secondary:hover {
    background-color: #f9f9f9;
    border-color: #ccc;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:active {
    background-color: #f0f0f0;
}

.btn-secondary.active {
    background-color: #fff0f0;
    color: #c2185b;
    border-color: #f8bbd0;
}

.btn-secondary.active i {
    color: #c2185b;
}

/* Delivery options */
.product-delivery-options {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.product-delivery-options h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 500;
}

.delivery-option {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background-color 0.2s;
}

.delivery-option:last-child {
    border-bottom: none;
}

.delivery-option.selected {
    background: #f0f7ff;
    margin: -12px -15px;
    padding: 12px 15px;
    border-radius: var(--border-radius);
}

.delivery-option input {
    margin-right: 12px;
    accent-color: var(--primary-color);
}

.delivery-option label {
    flex: 1;
    cursor: pointer;
    line-height: 1.4;
}

.delivery-option strong {
    display: block;
    font-weight: 500;
    color: var(--dark-color);
}

.delivery-option span {
    font-size: 13px;
    display: block;
    color: var(--text-muted);
}

.text-success {
    color: var(--success-color);
}

/* Payment options */
.product-payment-options {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.product-payment-options h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 500;
}

.payment-icons {
    font-size: 24px;
    color: #555;
    display: flex;
    gap: 15px;
}

.payment-icons i {
    transition: transform 0.2s;
}

.payment-icons i:hover {
    transform: translateY(-2px);
}

/* Product tabs */
.product-tabs {
    margin-top: 40px;
    border-bottom: 1px solid var(--border-color);
}

.tab-header {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
}

.tab-header::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 12px 0;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s;
}

.tab-btn:hover {
    color: var(--dark-color);
}

.tab-btn.active {
    color: var(--primary-color);
    font-weight: 600;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-content {
    padding: 25px 0;
    display: none;
}

.tab-content.active {
    display: block;
}

/* Description tab */
.product-description {
    font-size: 14px;
    line-height: 1.8;
    color: #424242;
}

.product-description h5 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 500;
}

.product-description ul {
    margin-left: 20px;
    padding-left: 5px;
}

.product-description li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.product-description li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Specifications tab */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th, 
.specs-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.specs-table th {
    width: 30%;
    font-weight: 500;
    color: var(--text-muted);
    background: #f9f9f9;
}

.specs-table td {
    color: var(--dark-color);
    font-size: 14px;
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
    border-bottom: none;
}

/* Reviews tab */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-badge {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
}

.rating-stars {
    position: relative;
    display: inline-block;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.rating-count {
    color: var(--text-muted);
    font-size: 14px;
}

.rating-distribution {
    margin-top: 25px;
    width: 100%;
    max-width: 400px;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.star-count {
    width: 80px;
    font-size: 14px;
    color: var(--primary-color);
}

.progress {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #ffb700;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.count {
    width: 30px;
    font-size: 14px;
    color: var(--text-muted);
    text-align: right;
}

.reviews-list {
    margin-top: 30px;
}

.review-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 15px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}

.review-author {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-color);
    margin-bottom: 2px;
}

.review-date {
    color: var(--text-muted);
    font-size: 13px;
}

.review-rating {
    margin-bottom: 10px;
}

.review-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 500;
}

.review-content {
    color: #424242;
    line-height: 1.7;
    font-size: 14px;
}

.no-reviews {
    background: #f9f9f9;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 40px 0;
    border: 1px dashed var(--border-color);
}

.no-reviews p {
    color: var(--text-muted);
    margin: 0;
    font-size: 16px;
}

/* Shipping tab */
.shipping-info {
    font-size: 14px;
    line-height: 1.7;
}

.shipping-info h5 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 500;
    padding-top: 10px;
}

.shipping-info ul {
    margin-left: 20px;
    margin-bottom: 25px;
    padding-left: 5px;
}

.shipping-info li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.shipping-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Product carousel */
.product-carousel {
    margin: 50px 0;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.carousel-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    position: relative;
    padding-left: 15px;
}

.carousel-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 2px;
}

.carousel-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.carousel-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.carousel-link i {
    font-size: 12px;
}

.carousel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

/* Product card */
.product-card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: transparent;
}

.product-image-container {
    position: relative;
    padding-top: 100%;
    background: #f9f9f9;
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 3px;
    z-index: 1;
    font-weight: 500;
}

.product-info {
    padding: 15px;
}

.product-name {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--dark-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
    line-height: 1.4;
    transition: color 0.2s;
}

.product-name a {
    color: inherit;
    text-decoration: none;
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-rating-small {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 8px 0;
}

.product-rating-small .stars {
    color: #ffb700;
    font-size: 14px;
    letter-spacing: 1px;
}

.product-rating-small .count {
    color: var(--text-muted);
    font-size: 12px;
}

.product-price-container {
    margin-top: 10px;
}

.product-current-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
}

.product-original-price {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 8px;
}

/* Review form */
.review-form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 40px;
    border: 1px solid var(--border-color);
}

.review-form h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(245, 114, 36, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Rating input */
.rating-input {
    direction: rtl;
    unicode-bidi: bidi-override;
    display: inline-block;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    display: inline-block;
    margin: 0 2px;
    transition: color 0.2s;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #ffb700;
}

/* Zoom modal */
.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: zoom-out;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.zoom-overlay.active {
    opacity: 1;
    visibility: visible;
}

#zoomedImage {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.zoom-overlay.active #zoomedImage {
    transform: scale(1);
}

/* Responsive styles */
@media (max-width: 992px) {
    .product-gallery {
        flex-direction: column;
    }
    
    .product-images {
        max-width: 100%;
        position: static;
    }
    
    .product-main-image {
        height: 350px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .carousel-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .product-main-image {
        height: 300px;
        padding: 20px;
    }
    
    .product-thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .tab-header {
        gap: 15px;
    }
    
    .tab-btn {
        font-size: 15px;
        padding: 10px 0;
    }
    
    .carousel-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .product-title {
        font-size: 22px;
    }
    
    .product-price {
        font-size: 24px;
    }
    
    .original-price {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .product-title {
        font-size: 20px;
    }
    
    .product-main-image {
        height: 250px;
    }
    
    .carousel-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .variant-options {
        gap: 6px;
    }
    
    .variant-option {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .variant-option.color-option {
        width: 35px;
        height: 35px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 15px;
    }
    
    .product-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .product-brand::after,
    .product-sku::after {
        display: none;
    }
    
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .overall-rating {
        width: 100%;
        justify-content: space-between;
    }
    
    .rating-distribution {
        max-width: 100%;
    }
}