.v2-btn-shelf {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     padding: 8px 16px;
     border: 2px solid #ddd;
     border-radius: var(--radius-sm);
     background: #fff;
     cursor: pointer;
     font-size: .9rem;
     transition: all .2s;
     font-family: 'Tajawal', sans-serif;
 }

 .v2-btn-shelf:hover {
     border-color: #6c63ff;
     color: #6c63ff;
 }

 .v2-btn-shelf.v2-shelved {
     border-color: #6c63ff;
     color: #6c63ff;
     background: #f0eeff;
 }

 .v2-shelf-menu {
     display: none;
     position: absolute;
     top: 100%;
     right: 0;
     background: #fff;
     border-radius: 10px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
     padding: 6px;
     min-width: 180px;
     z-index: var(--z-dropdown);
     margin-top: 4px;
 }

 .v2-shelf-menu.show {
     display: block;
 }

 .v2-shelf-option {
     display: flex;
     align-items: center;
     gap: 8px;
     width: 100%;
     padding: 8px 12px;
     border: none;
     background: none;
     cursor: pointer;
     border-radius: 6px;
     font-size: .85rem;
     font-family: 'Tajawal', sans-serif;
     transition: background .15s;
 }

 .v2-shelf-option:hover {
     background: #f5f5f5;
 }

 .v2-shelf-option.active {
     color: #6c63ff;
     font-weight: 600;
     background: #f0eeff;
 }

 .v2-shelf-remove {
     color: var(--color-danger);
 }

 .v2-shelf-remove:hover {
     background: #fff0f0;
 }
/* ===== Breadcrumb ===== */
.v2-breadcrumb {
    background: var(--gradient-primary);
    padding: 12px 0;
}

.v2-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
}

.v2-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.v2-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.v2-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ===== Page ===== */
.v2-page {
    background: #f8f9fc;
    min-height: 100vh;
    padding-bottom: 40px;
}

.v2-page .container {
    max-width: 1200px;
    padding-top: 32px;
}

/* ===== Product Grid ===== */
.v2-product-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 48px;
}

/* ===== Image Column ===== */
.v2-image-col {
    position: sticky;
    top: 80px;
}

.v2-image-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    text-align: center;
}

.v2-image-card img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.v2-badge-discount,
.v2-badge-new {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    z-index: var(--z-base);
}

.v2-badge-discount {
    background: var(--color-danger);
}

.v2-badge-new {
    background: var(--color-success);
    top: 50px;
}

/* Share row */
.v2-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border-light);
}

.v2-share-label {
    font-size: 0.85rem;
    color: #777;
}

.v2-share-btn {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.v2-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.v2-fb {
    background: #1877F2;
}

.v2-tw {
    background: #1DA1F2;
}

.v2-wa {
    background: #25D366;
}

.v2-copy {
    background: var(--color-text-grey);
}

.v2-copy:hover {
    background: var(--color-secondary);
}

/* ===== Info Column ===== */
.v2-info-col {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 28px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Category pills */
.v2-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.v2-cat-pill {
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    background: rgba(44, 75, 121, 0.08);
    color: var(--color-primary);
    border: 1px solid rgba(44, 75, 121, 0.15);
    transition: all 0.2s;
}

.v2-cat-pill:hover {
    background: var(--color-primary);
    color: #fff;
}

.v2-cat-sub {
    background: rgba(72, 202, 228, 0.1);
    color: var(--color-primary-darker);
    border-color: rgba(72, 202, 228, 0.25);
}

.v2-cat-sub:hover {
    background: var(--color-secondary);
    color: #fff;
}

/* Title */
.v2-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.35;
}

/* Author */
.v2-author {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}



.v2-author a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.v2-author a:hover {
    text-decoration: underline;
}

/* Follow button (inline with author name) */
.v2-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 14px;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-xl);
    background: transparent;
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Tajawal', sans-serif;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.v2-follow-btn:hover {
    background: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 75, 121, 0.25);
}

.v2-follow-btn.following {
    background:  var(--color-secondary);
    color: #fff;
    border-color:var(--color-secondary);
}

.v2-follow-btn.following:hover {
    background: transparent;
    color: var(--color-primary);
}

/* Rating */
.v2-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.v2-rating i {
    color: var(--color-warning);
    font-size: 0.95rem;
}

.v2-rating-score {
    font-weight: 700;
    color: var(--color-text);
}

.v2-rating-count {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.v2-divider {
    border-color: var(--color-border-light);
    margin: 16px 0;
}

/* Price */
.v2-price-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.v2-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
}

.v2-price small {
    font-size: 1rem;
    font-weight: 500;
}

.v2-original-price {
    font-size: 1rem;
    color: #aaa;
    text-decoration: line-through;
}

.v2-discount-pill {
    padding: 4px 12px;
    background: #fde8e8;
    color: var(--color-danger);
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 700;
}

/* Actions */
.v2-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.v2-qty-wrap {
    display: flex;
    align-items: center;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    overflow: hidden;
}

.v2-qty-btn {
    width: 36px;
    height: 44px;
    background: var(--color-bg-light);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
}

.v2-qty-btn:hover {
    background: var(--color-border);
}

.v2-qty-input {
    width: 52px;
    height: 44px;
    border: none;
    border-right: 2px solid var(--color-border);
    border-left: 2px solid var(--color-border);
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.v2-qty-input:focus {
    outline: none;
}

.v2-btn-cart {
    flex: 1;
    min-width: 160px;
    padding: 12px 20px;
    background: var(--color-secondary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(44, 75, 121, 0.25);
}

.v2-btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 75, 121, 0.35);
}

.v2-btn-wishlist {
    width: 48px;
    height: 48px;
    border: 2px solid #fde8e8;
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--color-danger);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2-btn-wishlist:hover,
.v2-btn-wishlist.v2-wishlisted {
    background: var(--color-danger);
    color: #fff;
    border-color: var(--color-danger);
}

/* Delivery */
.v2-delivery {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.v2-delivery i {
    font-size: 1.3rem;
    color: #16a34a;
}

.v2-delivery strong {
    display: block;
    color: #166534;
    font-size: 0.95rem;
}

.v2-delivery span {
    font-size: 0.82rem;
    color: #166534;
}

/* Stats */
.v2-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.v2-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #f8f9fc;
    border-radius: 10px;
    border: 1px solid #eef0f4;
}

.v2-stat i {
    font-size: 1.1rem;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.v2-stat-label {
    display: block;
    font-size: 0.72rem;
    color: var(--color-text-muted);
}

.v2-stat-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text);
}

.v2-stat-link {
    color: var(--color-primary);
    text-decoration: none;
}

.v2-stat-link:hover {
    text-decoration: underline;
}

/* ===== Tabs ===== */
.v2-tabs-section {
    margin-bottom: 40px;
}

.v2-tab-nav {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--color-border);
    margin-bottom: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.v2-tab-nav::-webkit-scrollbar {
    display: none;
}

.v2-tab-btn {
    padding: 12px 20px;
    background: none;
    border: none;
    border-bottom: 4px solid transparent;
    margin-bottom: -2px;
    position: relative;
    z-index: var(--z-base);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.v2-tab-btn:hover {
    color: var( --site-secondary);
}

.v2-tab-btn.active {
    color: var( --site-secondary);
    border-bottom-color: var( --site-secondary);
}

.v2-tab-badge {
    background: var(--color-primary);
    color: #fff;
    font-size: 0.7rem;
    padding: 1px 6px;
    border-radius: 10px;
    font-weight: 700;
}

.v2-tab-content {
    background: #fff;
    border-radius: 0 0 16px 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.v2-tab-pane {
    display: none;
}

.v2-tab-pane.active {
    display: block;
}

/* Description */
.v2-description {
    font-size: 1rem;
    color: #444;
    line-height: 1.85;
}

/* Details grid */
.v2-details-grid {
    display: flex;
    flex-direction: column;
    gap: 1px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.v2-detail-row {
    display: flex;
    padding: 12px 16px;
    background: #fff;
    font-size: 0.92rem;
}

.v2-detail-row:nth-child(even) {
    background: #f8f9fc;
}

.v2-detail-row span:first-child {
    font-weight: 700;
    color: #555;
    min-width: 140px;
}

.v2-detail-row span:last-child,
.v2-detail-row a {
    color: var(--color-text);
}

/* Rating summary */
.v2-rating-summary {
    display: flex;
    gap: 24px;
    background: #f8f9fc;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.v2-rating-big {
    text-align: center;
    min-width: 100px;
}

.v2-rating-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary);
    display: block;
}

.v2-stars-big i {
    color: var(--color-warning);
    font-size: 1.1rem;
}

.v2-rating-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.v2-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.v2-bar-row>span:first-child {
    width: 45px;
    color: var(--color-text-light);
    white-space: nowrap;
}

.v2-bar-row>span:first-child i {
    color: var(--color-warning);
}

.v2-bar-track {
    flex: 1;
    height: 8px;
    background: var(--color-border);
    border-radius: 10px;
    overflow: hidden;
}

.v2-bar-fill {
    height: 100%;
    background:var(--color-warning);
    border-radius: 10px;
    transition: width 0.6s;
}

.v2-bar-count {
    width: 24px;
    text-align: left;
    color: var(--color-text-muted);
}

/* Reviews */
.v2-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.v2-review-card {
    padding: 16px;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    border-right: 4px solid var(--color-secondary);
    transition: box-shadow 0.2s;
}

.v2-review-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.v2-review-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.v2-review-stars i {
    color: var(--color-warning);
    font-size: 0.85rem;
}

.v2-review-text {
    color: #555;
    font-size: 0.92rem;
    margin: 0;
}

/* Avatars */
.v2-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-circle);
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.v2-avatar-sm {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
}

.v2-avatar-lg {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
}

/* Form card */
.v2-form-card {
    background: #f8f9fc;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid var(--color-border);
}

.v2-form-card h5 {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.v2-btn-submit {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
}

.v2-btn-submit:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Star rating */
.star-rating {
    direction: rtl;
    display: inline-block;
}

.star-rating input {
    display: none;
}

.star-rating label {
    color: #ddd;
    font-size: 24px;
    padding: 0 2px;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input:checked~label {
    color: var(--color-warning);
}

/* Review action buttons (edit/delete) */
.v2-review-actions {
    display: flex;
    gap: 6px;
    margin-right: auto;
}

.v2-review-action-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--color-text-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.v2-review-action-btn:hover {
    background: #f0f4ff;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.v2-review-delete-btn:hover {
    background: #fff5f5;
    color: var(--color-danger);
    border-color: var(--color-danger);
}

/* Edit form inline */
.v2-edit-form {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border-light);
}

.v2-edit-form .star-rating-edit {
    direction: rtl;
    display: inline-block;
}

.v2-edit-form .star-rating-edit input { display: none; }

.v2-edit-form .star-rating-edit label {
    color: #ddd;
    font-size: 20px;
    padding: 0 2px;
    cursor: pointer;
    transition: color 0.2s;
}

.v2-edit-form .star-rating-edit label:hover,
.v2-edit-form .star-rating-edit label:hover~label,
.v2-edit-form .star-rating-edit input:checked~label {
    color: var(--color-warning);
}

.v2-btn-sm {
    padding: 6px 16px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.v2-btn-cancel {
    padding: 6px 16px;
    background: var(--color-border-light);
    color: #555;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.v2-btn-cancel:hover {
    background: #e0e0e0;
}

/* Review footer with helpful button */
.v2-review-footer {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #f5f5f5;
}

.v2-helpful-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: var(--radius-xl);
    cursor: pointer;
    color: var(--color-text-grey);
    font-size: 0.82rem;
    font-family: inherit;
    transition: all 0.2s;
}

.v2-helpful-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: #f0f4ff;
}

.v2-helpful-btn.liked {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(44, 75, 121, 0.08);
}

.v2-helpful-btn.liked i {
    color: var(--color-primary);
}

.v2-helpful-info {
    color: #adb5bd;
    font-size: 0.82rem;
}

/* Review toast notification */
.v2-review-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10000;
    opacity: 0;
    transition: var(--transition-base);
    pointer-events: none;
}

.v2-review-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.v2-review-toast.success {
    background: var(--gradient-primary);
}

.v2-review-toast.error {
    background: linear-gradient(135deg, var(--color-danger), #ff6b6b);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOutUp {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-15px); }
}

/* Empty state */
.v2-empty-state {
    text-align: center;
    padding: 40px 20px;
}

.v2-empty-state i {
    font-size: 3rem;
    color: #ddd;
    display: block;
    margin-bottom: 12px;
}

.v2-empty-state p {
    color: #aaa;
    margin: 0;
}

/* Login prompt */
.v2-login-prompt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #f0f7ff;
    border-radius: 10px;
    border: 1px solid #bdd7f5;
    color: var(--color-primary);
    margin-top: 16px;
}

.v2-login-prompt a {
    color: var(--color-secondary);
    font-weight: 700;
}

/* Quotes */
.v2-quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.v2-quote-card {
    background: #f8f9fc;
    border-radius: 14px;
    padding: 20px;
    position: relative;
    border: 1px solid #eef0f4;
}

.v2-quote-icon {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 2rem;
    color: var(--color-secondary);
    opacity: 0.2;
}

.v2-quote-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-top: 24px;
    margin-bottom: 14px;
}

.v2-quote-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.v2-like-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
    font-size: 0.85rem;
    padding: 0;
    transition: color 0.2s;
}

.v2-like-btn.liked,
.v2-like-btn:hover {
    color: var(--color-danger);
}

/* Author */
.v2-author-card {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.v2-author-avatar img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-circle);
    object-fit: cover;
}

.v2-author-info h4 {
    font-weight: 700;
    margin: 0 0 4px;
}

.v2-author-role {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.v2-author-role i {
    color: var(--color-secondary);
}

.v2-author-bio {
    color: #555;
    line-height: 1.8;
}

.v2-other-books h6 {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.v2-other-books-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.v2-other-book {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--color-text);
    width: 80px;
    text-align: center;
    font-size: 0.78rem;
    transition: color 0.2s;
}

.v2-other-book img {
    width: 70px;
    height: 95px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.v2-other-book:hover {
    color: var(--color-primary);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .v2-product-grid {
        grid-template-columns: 1fr;
    }

    .v2-image-col {
        position: static;
    }

    .v2-image-card img {
        max-height: 320px;
    }
}

@media (max-width: 576px) {
    .v2-info-col {
        padding: 20px 16px;
    }

    .v2-tab-content {
        padding: 20px 16px;
    }

    .v2-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .v2-btn-cart {
        min-width: auto;
    }

    .v2-btn-wishlist {
        width: 100%;
        height: 44px;
    }

    .v2-rating-summary {
        flex-direction: column;
    }

    .v2-stats {
        grid-template-columns: 1fr 1fr;
    }
}