:root {
    --header-height: 80px;
    --container-max: 1400px;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

textarea {
    resize: none !important;
}
#cartToast.success{ background:#16a34a; }
#cartToast.error{ background:#dc2626; }
#cartToast.warning{ background:#f59e0b; }
#cartToast.info{ background:#111827; }
/* ===========================================
   MAIN LAYOUT
   =========================================== */
.main {
    padding-top: 30px;
}
.product-detail{
    margin-bottom:70px;
}
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

/* LEFT COLUMN WIDTH FIX */
.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    width: 100%;
    box-sizing: border-box;
}

/* GALLERY */
.product-gallery {
    position: sticky;
    top: calc(var(--header-height) + 30px);
    align-self: start;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* =========================
   MAIN IMAGE
   ========================= */
.gallery__main {
    position: relative;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: zoom-in;
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

.gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery__zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery__main:hover .gallery__zoom-hint {
    opacity: 1;
}

/* =========================
   THUMBNAIL STRIP
   ========================= */
.gallery__thumbnails {
    display: flex;
    gap: 6px;
    margin-top: 5px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
    width: 100%;
    box-sizing: border-box;

    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

.gallery__thumbnails::-webkit-scrollbar {
    height: 2px;
}

.gallery__thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.gallery__thumbnails::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.30);
    border-radius: 999px;
}

.gallery__thumbnails::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

/* =========================
   THUMB ITEM
   ========================= */
.gallery__thumb {
    flex: 0 0 auto;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    background: #f6f6f6;
    cursor: pointer;
    position: relative;
    padding: 0;
    outline: none;
}

.gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery__thumb.active {
    border-color: #000;
}

/* =========================
   VIDEO ICON
   ========================= */
.gallery__thumb .video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

/* ===========================================
   PRODUCT INFO (RIGHT COLUMN)
   =========================================== */
.product-info {
    padding-right: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.breadcrumb a:hover {
    color: var(--color-accent);
}

/* Title & Actions Row */
.product__header {
    margin-bottom: 12px;
}

.product__title {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.3;
    letter-spacing: -0.5px;
    word-break: break-word;
}

/* Action Icons (Wishlist, Share, Compare) */
.product__actions-top {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.action-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    position: relative;
    flex-shrink: 0;
}

.action-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-text-gray);
    transition: all var(--transition-fast);
}

.action-btn:hover {
    background: var(--color-bg-light);
    border-color: var(--color-secondary);
}

.action-btn:hover svg {
    stroke: var(--color-primary);
}

.action-btn.active svg {
    fill: var(--color-accent);
    stroke: var(--color-accent);
}

.action-btn .tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    white-space: nowrap;
    pointer-events: none;
    z-index: 10;
}

.action-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Category, Rating, Meta */
.product__category {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.rating__stars {
    display: flex;
    gap: 2px;
}

.rating__star {
    width: 16px;
    height: 16px;
    fill: #ddd;
}

.rating__star.filled {
    fill: #f5a623;
}

.rating__count {
    font-size: 14px;
    color: var(--color-text-gray);
    font-weight: 500;
}

.product__meta {
    display: flex;
    gap: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border-extralight);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta__item {
    font-size: 14px;
}

.meta__label {
    color: var(--color-text-muted);
}

.meta__value {
    font-weight: 600;
    color: var(--color-secondary);
}

/* Pricing */
.product__pricing {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.price__offer {
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-accent);
}

.price__mrp {
    font-size: 18px;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.price__discount {
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

/* Colors */
.product__colors {
    margin-bottom: 24px;
}

.color__label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.color__options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color__swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    border: 2px solid var(--color-border);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.color__swatch:hover {
    transform: scale(1.1);
}

.color__swatch.active {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
}

.color__swatch::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transition: opacity var(--transition-fast);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.color__swatch.active::after {
    opacity: 1;
}

/* Size & Quantity */
.product__size {
    margin-bottom: 24px;
}

.size__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.size__label {
    font-weight: 600;
    font-size: 14px;
}

.size__guide {
    font-size: 14px;
    color: var(--color-text-gray);
    cursor: pointer;
    text-decoration: underline;
    white-space: nowrap;
}

.size__options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size__btn {
    padding: 10px 15px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-white);
    cursor: pointer;
    font-size: 14px;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.size__btn:hover {
    border-color: var(--color-secondary);
}

.size__btn.active {
    background: var(--color-primary);
    font-weight: 600;
    color: var(--color-white);
    border-color: var(--color-primary);
}

.product__quantity {
    margin-bottom: 24px;
}

.quantity__label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.quantity__selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    width: fit-content;
}

.quantity__btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
    background: var(--color-bg-light);
    flex-shrink: 0;
}

.quantity__btn:hover {
    background: var(--color-border-extralight);
}

.quantity__value {
    width: 50px;
    text-align: center;
    font-weight: 600;
    border: none;
    background: transparent;
}

/* CTA Buttons */
.product__cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    width: 100%;
}

.btn {
    flex: 1;
    padding: 16px 24px;
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all var(--transition-base);
    min-width: 150px;
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-button);
}

.btn--primary:hover {
    background: #c10;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(238, 17, 17, 0.25);
}

.btn--secondary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn--secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ADD TO CART BUTTON */
.btn--cart {
    background: var(--color-white);
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
}

.btn--cart:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(225, 17, 17, 0.30);
}
/* Delivery Info */
.delivery__box {
    background: var(--color-bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    width: 100%;
    box-sizing: border-box;
}

.delivery__title {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 15px;
}

.delivery__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--color-text-gray);
}

.delivery__icon {
    font-size: 18px;
    color: var(--color-accent);
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.delivery__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.delivery__text strong {
    color: var(--color-text-dark);
    font-weight: 500;
    font-size: 14px;
}

.delivery__text span {
    font-size: 13px;
    color: var(--color-text-gray);
}
/* Content Sections (Desc, Specs, Reviews) */
.content-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border-extralight);
}

.section__title {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section__title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--color-accent);
    border-radius: 2px;
    flex-shrink: 0;
}

.specs__table {
    width: 100%;
    font-size: 14px;
    box-sizing: border-box;
}

.specs__row {
    display: flex;
    border-bottom: 1px solid var(--color-border-extralight);
    padding: 10px 0;
    flex-wrap: wrap;
}

.specs__key {
    width: 40%;
    color: var(--color-text-muted);
}

.specs__value {
    width: 60%;
    font-weight: 500;
    word-break: break-word;
}

/* Reviews */
.review-card__rating {
    display: flex;
    flex-direction: column;   /* stars upar, delete niche */
    align-items: flex-end;
    gap: 6px;
}

.review-card__stars {
    display: flex;            /* ⭐⭐⭐⭐⭐ ek row me */
    gap: 4px;
}

.rating-star {
    width: 16px;
    height: 16px;
    fill: #ddd;              /* empty star */
    flex-shrink: 0;
}

.rating-star.filled {
    fill: #f5a623;           /* filled star */
}
.review-card {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border-extralight);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-card__author {
    font-weight: 600;
}

.review-card__date {
    font-size: 13px;
    color: var(--color-text-muted);
}

.review-card__rating svg {
    width: 14px;
    height: 14px;
}

.review-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-light);
    word-break: break-word;
}

.delete-review {
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    cursor: pointer;
}
/* Add Review Form */
.review-form {
    background: var(--color-bg-light);
    padding: 24px;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
}

.review-form__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color var(--transition-fast);
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

.form-rating {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.form-rating__star {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.form-rating__star.active {
    color: #f5a623;
}

.btn--small {
    padding: 10px 20px;
    font-size: 14px;
}

/* ===========================================
   FULL-WIDTH RELATED PRODUCTS (BOTTOM)
   =========================================== */
.related-section {
    padding: 10px 0;
}

.related-section__title {
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-primary);
}

/* Grid: 6 on Desktop, 3 on Tablet, 2 on Mobile */
.related-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.product-card {
    border-radius: 10px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.product-card__image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--color-bg-light);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-image);
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__info {
    padding: 15px;
}

.product-card__name {
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-secondary);
    line-height: 1.4;
    overflow: hidden;
    word-break: break-word;
}

.product-card__price {
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-accent);
}

/* ===========================================
RESPONSIVE STYLES
=========================================== */
@media (max-width: 1200px) {
    .related-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }

    .product-gallery {
        position: static;
        max-width: 100%;
        width: 100%;
    }

    .product-info {
        padding-right: 0;
        width: 100%;
    }

    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .image-viewer__nav {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .container {
        padding: 0 15px;
    }

    .main {
        padding-top: 20px;
    }

    .product-layout {
        gap: 20px;
    }

    .product-gallery {
        width: 100%;
    }

    .product-info {
        width: 100%;
        padding-right: 0;
    }

    .product__title {
        font-size: 22px;
    }

    .price__offer {
        font-size: 26px;
    }

    .product__header {
        gap: 15px;
    }

    .related-section {
        padding: 40px 0;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-card__info {
        padding: 10px;
    }

    .product-card__name {
        font-size: 13px;
    }

    .product-card__price {
        font-size: 14px;
    }

    .btn {
        min-width: 100%;
    }

    .specs__key,
    .specs__value {
        width: 50%;
    }
}

@media (max-width: 600px) {
    :root {
        --header-height: 60px;
    }

    .container {
        padding: 0 12px;
    }

    .product__title {
        font-size: 20px;
    }

    .price__offer {
        font-size: 24px;
    }

    .product__pricing {
        gap: 12px;
    }

    .price__mrp {
        font-size: 16px;
    }

    .related-section {
        padding: 30px 0;
    }

    .related-section__title {
        font-size: 22px;
    }

    .product__meta {
        gap: 16px;
    }

    .product__cta-group {
        gap: 10px;
    }

    .btn {
        padding: 14px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .product__cta-group {
        flex-direction: column;
        gap: 12px;
    }

    .gallery__thumb {
        width: 60px;
        height: 75px;
    }

    .product__title {
        font-size: 18px;
    }

    .price__offer {
        font-size: 22px;
    }

    .size__options {
        gap: 8px;
    }

    .color__options {
        gap: 8px;
    }

    .color__swatch {
        width: 30px;
        height: 30px;
    }

    .action-btn {
        width: 38px;
        height: 38px;
    }

    .action-btn svg {
        width: 18px;
        height: 18px;
    }

    .btn {
        padding: 12px 14px;
        font-size: 13px;
        min-width: 100%;
    }

    .form-input {
        padding: 10px;
        font-size: 16px;
    }

    .review-form {
        padding: 16px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-in {
    animation: fadeIn 0.5s ease forwards;
}

/* ===========================================
   PRODUCT NOT FOUND SECTION
   =========================================== */
.product-not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 60px 20px;
    background: var(--color-bg-light);
    border-radius: 12px;
    margin: 40px 0;
}

.not-found__illustration {
    width: 280px;
    height: 280px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.not-found__illustration svg {
    width: 100%;
    height: 100%;
}

.not-found__title {
    font-family: var(--heading-font);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.not-found__text {
    font-size: 16px;
    color: var(--color-text-gray);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.not-found__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn--outline {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-border);
}

.btn--outline:hover {
    border-color: var(--color-secondary);
    background: var(--color-white);
}

/* Responsive for not-found section */
@media (max-width: 768px) {
    .not-found__illustration {
        width: 200px;
        height: 200px;
    }

    .not-found__title {
        font-size: 28px;
    }

    .not-found__text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .product-not-found {
        padding: 40px 15px;
        margin: 20px 0;
    }

    .not-found__illustration {
        width: 150px;
        height: 150px;
        margin-bottom: 30px;
    }

    .not-found__title {
        font-size: 24px;
    }

    .not-found__actions {
        gap: 10px;
    }
}


/* ===============================
   REVIEW PAGINATION
   =============================== */

#pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination-list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-item {
    display: flex;
}

.pagination-link {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    background: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-link i {
    font-size: 12px;
}

/* Hover */
.pagination-item:not(.disabled):not(.active) .pagination-link:hover {
    background: #f5f5f5;
    border-color: #bbb;
}

/* Active page */
.pagination-item.active .pagination-link {
    background: #111;
    color: #fff;
    border-color: #111;
    cursor: default;
}

/* Disabled */
.pagination-item.disabled .pagination-link {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Dots */
.pagination-item.dots span {
    padding: 0 6px;
    font-size: 14px;
    color: #999;
}

/* Mobile friendly */
@media (max-width: 576px) {
    .pagination-link {
        min-width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

/* ===============================
   NO REVIEWS STATE
   =============================== */

.no-reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    margin: 0px 0 30px;
    text-align: center;
    background: #fafafa;
    border: 1px dashed #ddd;
    border-radius: 12px;
}

.no-reviews svg {
    margin-bottom: 12px;
}

.no-reviews p {
    margin: 6px 0 4px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.no-reviews span {
    font-size: 14px;
    color: #777;
}

/* Optional subtle animation */
.no-reviews {
    animation: fadeInUp 0.35s ease;
}

.delete-review{
    margin-top:10px !important;
    margin-right:20px !important;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile optimization */
@media (max-width: 576px) {
    .no-reviews {
        padding: 40px 15px;
    }

    .no-reviews p {
        font-size: 15px;
    }

    .no-reviews span {
        font-size: 13px;
    }
}


/* ===============================
    REVIEWS Login
   =============================== */

.review-login-box {
    padding: 30px;
    border: 1px dashed #ddd;
    border-radius: 10px;
    text-align: center;
    background: #fafafa;
}

.review-login-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.review-login-box p {
    color: #666;
    margin-bottom: 20px;
}


/* Modal Background (Overlay) */
.size-modal-overlay {
  display: none; /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Black transparent background */
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Modal Content Box */
.size-modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 90%; /* Mobile ke liye responsive */
  max-height: 90%;
  width: 600px; /* Desktop ke liye default width */
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: center;
}

/* Image Styling */
.size-modal-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Close Button */
.size-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.size-close-btn:hover {
  color: #f00;
}