﻿/* ═══════════════════════════════════════════════════════
   NS FASHION HUB — SHOP PAGE
   Layout: Left sidebar (Price filter) + Right main (Controls + Grid)
═══════════════════════════════════════════════════════ */


/* ══════════════════════════════
   SECTION WRAPPER
══════════════════════════════ */
.shop-section {
    background: #FDF5ED;
    width: 100%;
    padding: 32px 100px 64px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}


/* ══════════════════════════════
   OUTER LAYOUT — sidebar + main
══════════════════════════════ */
.shop-layout {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    width: 100%;
}


/* ══════════════════════════════
   LEFT SIDEBAR — Price Filter
══════════════════════════════ */
.shop-sidebar {
    flex: 0 0 150px;
    width: 150px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 4px;
    position: sticky;
    top: 80px;
}

.shop-filter-heading {
    font-size: 13px;
    font-weight: 700;
    color: #411C05;
    margin: 0 0 6px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.shop-filter-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shop-filter-item {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
}

.shop-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-gold {
    background: #C9A646;
}

.dot-brown {
    background: #936C53;
}

.dot-light {
    background: #D2B9A0;
}

.shop-filter-label {
    font-size: 12px;
    font-weight: 500;
    color: #552709;
    line-height: 1.3;
}


/* ══════════════════════════════
   RIGHT MAIN — controls + grid
══════════════════════════════ */
.shop-main {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* ── CONTROLS BAR ── */
.shop-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.shop-sort-label {
    font-size: 12px;
    font-weight: 600;
    color: #7B5B3A;
    white-space: nowrap;
}

.shop-sort-select {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #552709;
    background: #FDF5ED;
    border: 1.5px solid #936C53;
    border-radius: 20px;
    padding: 0 12px;
    height: 30px;
    outline: none;
    cursor: pointer;
    appearance: auto;
    transition: border-color 0.2s ease;
}

    .shop-sort-select:focus {
        border-color: #552709;
    }

.shop-tag {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #552709;
    background: #FDF5ED;
    border: 1.5px solid #936C53;
    border-radius: 20px;
    padding: 0 14px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

    .shop-tag:hover,
    .shop-tag.active {
        background: #552709;
        color: #FDF5ED;
        border-color: #552709;
    }

.shop-view-toggle {
    display: flex;
    gap: 4px;
    margin-left: 4px;
}

.shop-view-btn {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 1.5px solid #936C53;
    background: #FDF5ED;
    color: #936C53;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

    .shop-view-btn.active,
    .shop-view-btn:hover {
        background: #936C53;
        color: #FDF5ED;
        border-color: #936C53;
    }


/* ══════════════════════════════
   PRODUCT GRID
══════════════════════════════ */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}


/* ── CARD ── */
.shop-card {
    border-radius: 0px 0px 12px 12px;
    overflow: hidden;
    border: 1.5px solid #D2B9A0;
    background: #FDF5ED;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .shop-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 28px rgba(65, 28, 5, 0.18);
    }

.shop-card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #C4A882;
}

    .shop-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: transform 0.4s ease;
    }

.shop-card:hover .shop-card-img img {
    transform: scale(1.05);
}

/* Info bar */
.shop-card-info {
    background: #552709;
    padding: 10px 13px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shop-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #FDF5ED;
    margin: 0;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

/* price LEFT, buttons RIGHT — same row */
.shop-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 6px;
    flex-wrap: nowrap;
}

.shop-price-group {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-shrink: 0;
}

.shop-price-old {
    font-size: 11px;
    font-weight: 500;
    color: #C4A882;
    text-decoration: line-through;
    line-height: 1;
}

.shop-price-new {
    font-size: 20px;
    font-weight: 800;
    color: #FDF5ED;
    line-height: 1;
    letter-spacing: -0.01em;
}

/* Buttons — right side of price row */
.shop-card-btns {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
    align-items: center;
}

.btn-shop-buy,
.btn-shop-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    padding: 0 11px;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-shop-buy {
    background: linear-gradient(135deg, #C9A646 0%, #7B4A1C 100%);
    color: #fff;
    border: none;
    box-shadow: 0 3px 8px rgba(201, 166, 70, 0.38);
}

    .btn-shop-buy:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 14px rgba(201, 166, 70, 0.52);
        color: #fff;
        text-decoration: none;
    }

.btn-shop-cart {
    background: linear-gradient(135deg, #C9A646 0%, #7B4A1C 100%);
    color: #fff;
    border: none;
    box-shadow: 0 3px 8px rgba(201, 166, 70, 0.38);
}

    .btn-shop-cart:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 14px rgba(201, 166, 70, 0.52);
        color: #fff;
        text-decoration: none;
    }


/* ══════════════════════════════
   PAGINATION
══════════════════════════════ */
.shop-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 36px;
}

.shop-page-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #936C53;
    background: #FDF5ED;
    color: #552709;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

    .shop-page-btn.active,
    .shop-page-btn:hover {
        background: #411C05;
        color: #FDF5ED;
        border-color: #411C05;
    }

.shop-page-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #936C53;
    background: #FDF5ED;
    color: #552709;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease;
}

    .shop-page-arrow:hover {
        background: #936C53;
        color: #FDF5ED;
    }


/* ══════════════════════════════
   LIST VIEW
══════════════════════════════ */
.shop-grid.list-view {
    grid-template-columns: 1fr;
    gap: 10px;
}

    .shop-grid.list-view .shop-card {
        flex-direction: row;
        align-items: stretch;
    }

    .shop-grid.list-view .shop-card-img {
        width: 160px;
        flex-shrink: 0;
        aspect-ratio: unset;
        height: auto;
    }

    .shop-grid.list-view .shop-card-info {
        flex: 1;
        justify-content: center;
        padding: 14px 18px;
    }

    .shop-grid.list-view .shop-card-title {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .shop-grid.list-view .shop-price-new {
        font-size: 22px;
    }

    .shop-grid.list-view .shop-card-btns {
        flex-direction: row;
        max-width: 260px;
    }


/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

@media (max-width: 1200px) {
    .shop-section {
        padding: 28px 60px 56px;
    }
}

@media (max-width: 1024px) {
    .shop-section {
        padding: 24px 40px 48px;
    }

    .shop-sidebar {
        flex: 0 0 130px;
        width: 130px;
    }

    .shop-layout {
        gap: 28px;
    }

    .shop-price-row {
        flex-wrap: wrap;
        gap: 6px;
    }

    .shop-card-btns {
        width: 100%;
        justify-content: flex-start;
    }

    .btn-shop-buy,
    .btn-shop-cart {
        font-size: 10px;
        height: 26px;
        padding: 0 10px;
        flex: 1 1 0;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .shop-section {
        padding: 20px 24px 44px;
    }

    .shop-layout {
        flex-direction: column;
        gap: 18px;
    }

    .shop-sidebar {
        flex: none;
        width: 100%;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .shop-filter-heading {
        margin-bottom: 0;
        margin-right: 14px;
        white-space: nowrap;
    }

    .shop-filter-list {
        flex-direction: row;
        gap: 14px;
    }

    .shop-controls {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .shop-price-row {
        flex-wrap: wrap;
        gap: 6px;
    }

    .shop-card-btns {
        width: 100%;
        justify-content: flex-start;
    }

    .btn-shop-buy,
    .btn-shop-cart {
        font-size: 10px;
        height: 26px;
        padding: 0 10px;
        flex: 1 1 0;
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .shop-section {
        padding: 16px 16px 40px;
    }

    .shop-sidebar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .shop-filter-list {
        flex-direction: column;
        gap: 8px;
    }

    .shop-filter-heading {
        margin-right: 0;
        margin-bottom: 2px;
    }

    .shop-grid {
        gap: 10px;
    }

    .shop-card-title {
        font-size: 11.5px;
    }

    .shop-price-new {
        font-size: 17px;
    }

    .shop-card-info {
        padding: 8px 10px 12px;
    }

    .shop-price-row {
        flex-wrap: wrap;
        gap: 5px;
    }

    .shop-card-btns {
        width: 100%;
    }

    .btn-shop-buy,
    .btn-shop-cart {
        font-size: 9.5px;
        height: 24px;
        padding: 0 8px;
        flex: 1 1 0;
        justify-content: center;
    }
}

@media (max-width: 380px) {
    .shop-section {
        padding: 14px 12px 36px;
    }

    .shop-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .shop-price-new {
        font-size: 15px;
    }

    .btn-shop-buy,
    .btn-shop-cart {
        font-size: 10px;
        height: 26px;
        flex: 1 1 0;
    }
}
/* ═══════════════════════════════════════════════════════
   NS FASHION HUB — COURSES PAGE
═══════════════════════════════════════════════════════ */

.courses-section {
    background: #FDF5ED;
    width: 100%;
    padding: 32px 100px 64px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.courses-layout {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    width: 100%;
}

/* ── SIDEBAR ── */
.courses-sidebar {
    flex: 0 0 160px;
    width: 160px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 4px;
    position: sticky;
    top: 80px;
}

.courses-filter-heading {
    font-size: 13px;
    font-weight: 700;
    color: #411C05;
    margin: 0 0 6px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;
}

.courses-filter-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.courses-filter-item {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
}

.courses-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-tailor {
    background: #C9A646;
}

.dot-embroid {
    background: #D2B9A0;
}

.courses-filter-label {
    font-size: 12px;
    font-weight: 500;
    color: #552709;
    line-height: 1.3;
}

/* ── MAIN ── */
.courses-main {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── CONTROLS ── */
.courses-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.courses-mode-group {
    display: flex;
    border: 1.5px solid #936C53;
    border-radius: 20px;
    overflow: hidden;
}

.courses-mode-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 30px;
    padding: 0 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #552709;
    background: #FDF5ED;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

    .courses-mode-btn .mode-dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        border: 2px solid #936C53;
        transition: background 0.2s ease, border-color 0.2s ease;
        flex-shrink: 0;
    }

    .courses-mode-btn.active,
    .courses-mode-btn:hover {
        background: #552709;
        color: #FDF5ED;
    }

        .courses-mode-btn.active .mode-dot,
        .courses-mode-btn:hover .mode-dot {
            background: #C9A646;
            border-color: #C9A646;
        }

/* ══════════════════════════════
   COURSE GRID
══════════════════════════════ */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

/* ── CARD ── */
.ns-course-card {
    overflow: hidden;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .ns-course-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(65, 28, 5, 0.18);
    }

/* Image wrapper */
.ns-course-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: block;
    flex-shrink: 0;
}

    .ns-course-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: transform 0.4s ease;
    }

.ns-course-card:hover .ns-course-card-img img {
    transform: scale(1.04);
}

/* Info bar */
.ns-course-card-info {
    background: #552709;
    padding: 8px 14px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0 0 12px 12px;
}

.ns-course-card-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 0;
    min-width: 0;
}

.ns-course-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #FDF5ED;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ns-course-card-price {
    font-size: 20px;
    font-weight: 800;
    color: #FDF5ED;
    line-height: 1;
    letter-spacing: -0.01em;
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-top: 2px;
}

.ns-course-rupee {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

/* Know More button */
.btn-know-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 16px;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, #C9A646 0%, #A07828 100%);
    color: #fff;
    border: none;
    box-shadow: 0 3px 8px rgba(201, 166, 70, 0.40);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

    .btn-know-more:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 14px rgba(201, 166, 70, 0.55);
        color: #fff;
        text-decoration: none;
    }

/* ══════════════════════════════
   PAGINATION
══════════════════════════════ */
.courses-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 36px;
}

.courses-page-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #936C53;
    background: #FDF5ED;
    color: #552709;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

    .courses-page-btn.active,
    .courses-page-btn:hover {
        background: #411C05;
        color: #FDF5ED;
        border-color: #411C05;
    }

.courses-page-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #936C53;
    background: #FDF5ED;
    color: #552709;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease;
}

    .courses-page-arrow:hover {
        background: #936C53;
        color: #FDF5ED;
    }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1200px) {
    .courses-section {
        padding: 28px 60px 56px;
    }
}

@media (max-width: 1024px) {
    .courses-section {
        padding: 24px 40px 48px;
    }

    .courses-sidebar {
        flex: 0 0 130px;
        width: 130px;
    }

    .courses-layout {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .courses-section {
        padding: 20px 24px 44px;
    }

    .courses-layout {
        flex-direction: column;
        gap: 18px;
    }

    .courses-sidebar {
        flex: none;
        width: 100%;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .courses-filter-heading {
        margin-bottom: 0;
        margin-right: 14px;
        white-space: nowrap;
    }

    .courses-filter-list {
        flex-direction: row;
        gap: 14px;
    }

    .courses-controls {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 560px) {
    .courses-section {
        padding: 16px 16px 40px;
    }

    .courses-sidebar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .courses-filter-list {
        flex-direction: column;
        gap: 8px;
    }

    .courses-filter-heading {
        margin-right: 0;
        margin-bottom: 2px;
    }

    .ns-course-card-price {
        font-size: 17px;
    }

    .ns-course-rupee {
        font-size: 13px;
    }

    .ns-course-card-title {
        font-size: 12px;
    }

    .btn-know-more {
        font-size: 10.5px;
        padding: 0 13px;
        height: 28px;
    }

    .ns-course-card-info {
        padding: 7px 12px 9px;
    }
}

/* ══════════════════════════════
   SECTION WRAPPER
══════════════════════════════ */
.cd-section {
    background: #FDF5ED;
    width: 100%;
    padding: 48px 100px 72px;
}

/* ══════════════════════════════
   TOP BLOCK — image + info side by side
══════════════════════════════ */
.cd-top {
    display: flex;
    align-items: stretch;
    gap: 48px;
    margin-bottom: 52px;
}

/* ── Thumbnail ── */
.cd-thumb {
    flex: 0 0 calc(50% - 24px);
    width: calc(50% - 24px);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(65, 28, 5, 0.18);
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
}

    .cd-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

    .cd-thumb::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 14px;
        box-shadow: inset 0 0 0 3px rgba(201, 166, 70, 0.35);
        pointer-events: none;
        z-index: 1;
    }

/* ── Info column ── */
.cd-info {
    flex: 0 0 calc(50% - 24px);
    width: calc(50% - 24px);
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
}

.cd-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 900;
    color: #552709;
    line-height: 1.2;
    margin-bottom: 10px;
    width: 100%;
}

.cd-duration {
    font-family: 'Roboto', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #C9A646;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cd-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #936C53;
    line-height: 1.95;
    margin-bottom: 24px;
    width: 100%;
}

/* What You Will Learn */
.cd-learn-title {
    font-family: 'Merriweather', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #552709;
    margin-bottom: 12px;
    width: 100%;
}

.cd-learn-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
    width: 100%;
    padding: 0;
}

    .cd-learn-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-family: 'Roboto', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: #936C53;
        line-height: 1.5;
    }

        .cd-learn-list li::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #C9A646;
            flex-shrink: 0;
            margin-top: 6px;
        }

/* CTA Buttons */
.cd-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: auto;
}

.btn-cd-enquire,
.btn-cd-syllabus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 28px;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn-cd-enquire {
    background: linear-gradient(135deg, #C9A646 0%, #7B4A1C 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(201, 166, 70, 0.40);
}

    .btn-cd-enquire:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(201, 166, 70, 0.55);
        color: #fff;
    }

.btn-cd-syllabus {
    background: linear-gradient(135deg, #C9A646 0%, #7B4A1C 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(201, 166, 70, 0.40);
}

    .btn-cd-syllabus:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(201, 166, 70, 0.55);
        color: #fff;
    }

/* ══════════════════════════════
   DIVIDER
══════════════════════════════ */
.cd-divider {
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #D2B9A0 30%, #D2B9A0 70%, transparent);
    margin-bottom: 40px;
}

/* ══════════════════════════════
   VIDEO SECTION
══════════════════════════════ */
.cd-video-label {
    text-align: center;
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #552709;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

    .cd-video-label span {
        position: relative;
        display: inline-block;
    }

        .cd-video-label span::before,
        .cd-video-label span::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 48px;
            height: 1.5px;
            background: #D2B9A0;
        }

        .cd-video-label span::before {
            right: calc(100% + 12px);
        }

        .cd-video-label span::after {
            left: calc(100% + 12px);
        }

/* ── Custom Video Player ── */
.cd-player-wrap {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(65, 28, 5, 0.22);
    background: #1a0a02;
    position: relative;
}

.cd-video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    background: #1a0a02;
    cursor: pointer;
}

.cd-player-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: inset 0 0 0 2px rgba(201, 166, 70, 0.30);
    pointer-events: none;
    z-index: 10;
}

/* Big play overlay */
.cd-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 10, 2, 0.38);
    transition: opacity 0.3s ease;
    cursor: pointer;
    z-index: 5;
    border-radius: 16px;
}

    .cd-play-overlay.hidden {
        opacity: 0;
        pointer-events: none;
    }

.cd-play-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A646 0%, #7B4A1C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(201, 166, 70, 0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cd-play-overlay:hover .cd-play-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(201, 166, 70, 0.70);
}

.cd-play-circle i {
    font-size: 2rem;
    color: #fff;
    margin-left: 5px;
}

/* ── Controls bar ── */
.cd-controls {
    background: #411C05;
    padding: 10px 18px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cd-ctrl-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #FDF5ED;
    font-size: 1.1rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

    .cd-ctrl-btn:hover {
        background: rgba(201, 166, 70, 0.25);
        color: #C9A646;
    }

/* Progress bar */
.cd-progress-wrap {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cd-progress {
    width: 100%;
    height: 5px;
    background: rgba(253, 245, 237, 0.18);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: visible;
}

.cd-progress-filled {
    height: 100%;
    background: linear-gradient(90deg, #C9A646, #E8C55A);
    border-radius: 10px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

    .cd-progress-filled::after {
        content: '';
        position: absolute;
        right: -6px;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #C9A646;
        box-shadow: 0 0 6px rgba(201, 166, 70, 0.7);
        opacity: 0;
        transition: opacity 0.2s ease;
    }

.cd-progress:hover .cd-progress-filled::after {
    opacity: 1;
}

.cd-time {
    font-family: 'Roboto', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: #D2B9A0;
    letter-spacing: 0.03em;
}

/* Volume */
.cd-vol-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.cd-vol-slider {
    -webkit-appearance: none;
    width: 72px;
    height: 4px;
    border-radius: 10px;
    background: rgba(253, 245, 237, 0.18);
    outline: none;
    cursor: pointer;
}

    .cd-vol-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #C9A646;
        cursor: pointer;
        box-shadow: 0 0 4px rgba(201, 166, 70, 0.6);
    }

    .cd-vol-slider::-moz-range-thumb {
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #C9A646;
        cursor: pointer;
        border: none;
    }

/* Speed selector */
.cd-speed {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #D2B9A0;
    background: rgba(253, 245, 237, 0.08);
    border: 1px solid rgba(253, 245, 237, 0.18);
    border-radius: 6px;
    padding: 3px 7px;
    cursor: pointer;
    outline: none;
    flex-shrink: 0;
    transition: border-color 0.2s ease;
}

    .cd-speed:focus {
        border-color: #C9A646;
    }

    .cd-speed option {
        background: #411C05;
        color: #FDF5ED;
    }

/* Fullscreen btn */
.cd-fs-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #D2B9A0;
    font-size: 1rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
    transition: color 0.2s ease, background 0.2s ease;
}

    .cd-fs-btn:hover {
        color: #C9A646;
        background: rgba(201, 166, 70, 0.12);
    }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
    .cd-section {
        padding: 40px 60px 60px;
    }

    .cd-thumb {
        flex: 0 0 calc(50% - 18px);
        width: calc(50% - 18px);
    }

    .cd-info {
        flex: 0 0 calc(50% - 18px);
        width: calc(50% - 18px);
    }

    .cd-top {
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .cd-section {
        padding: 32px 28px 52px;
    }

    .cd-top {
        flex-direction: column;
        gap: 24px;
    }

    .cd-thumb {
        width: 100%;
        flex: none;
        max-height: 280px;
        align-self: auto;
    }

        .cd-thumb img {
            object-position: center top;
        }

    .cd-info {
        width: 100%;
        flex: none;
    }

    .cd-btns {
        margin-top: 8px;
    }

    .cd-vol-slider {
        width: 56px;
    }
}

@media (max-width: 560px) {
    .cd-section {
        padding: 24px 16px 44px;
    }

    .cd-title {
        font-size: 1.4rem;
    }

    .cd-thumb {
        max-height: 220px;
    }

    .cd-play-circle {
        width: 64px;
        height: 64px;
    }

        .cd-play-circle i {
            font-size: 1.6rem;
        }

    .cd-controls {
        padding: 8px 12px 10px;
        gap: 8px;
    }

    .cd-vol-wrap {
        display: none;
    }

    .cd-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-cd-enquire,
    .btn-cd-syllabus {
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════
   NS FASHION HUB — PRODUCT DETAIL PAGE
   Palette & fonts inherited from style.css
   File: productdetail.css
═══════════════════════════════════════════════════════ */

/* ══════════════════════════════
   SECTION WRAPPER
══════════════════════════════ */
.pd-section {
    background: #FDF5ED;
    width: 100%;
    padding: 48px 80px 72px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* ══════════════════════════════
   TOP BLOCK — Slider + Info
══════════════════════════════ */
.pd-top {
    display: flex;
    align-items: flex-start;
    gap: 52px;
    width: 100%;
    margin-bottom: 52px;
}

/* ══════════════════════════════
   LEFT — IMAGE SLIDER
══════════════════════════════ */
.pd-slider-col {
    flex: 0 0 44%;
    width: 44%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Main stage — NO fixed aspect-ratio, height follows image */
.pd-slider-stage {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #E8D0B0;
    box-shadow: 0 8px 32px rgba(65, 28, 5, 0.18);
}

.pd-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.45s ease, transform 0.45s ease;
    transform: scale(1.03);
}

    .pd-slide.active {
        opacity: 1;
        transform: scale(1);
        position: relative;
    }

    .pd-slide img {
        width: 100%;
        height: auto;
        display: block;
        user-select: none;
        pointer-events: none;
    }

/* Slider arrows */
.pd-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #7B5B3A;
    background: rgba(253, 245, 237, 0.88);
    color: #552709;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(65, 28, 5, 0.18);
    transition: background 0.22s, color 0.22s, transform 0.22s;
    backdrop-filter: blur(4px);
}

.pd-slider-prev {
    left: 12px;
}

.pd-slider-next {
    right: 12px;
}

.pd-slider-arrow:hover {
    background: #552709;
    color: #FDF5ED;
    transform: translateY(-50%) scale(1.1);
}

/* Dot indicators */
.pd-slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 10;
}

.pd-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(253, 245, 237, 0.55);
    border: 1.5px solid #FDF5ED;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

    .pd-dot.active {
        background: #C9A646;
        transform: scale(1.25);
    }

/* Thumbnail strip */
.pd-thumbs {
    display: flex;
    gap: 10px;
}

.pd-thumb {
    flex: 1 1 0;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2.5px solid transparent;
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

    .pd-thumb.active {
        border-color: #C9A646;
        box-shadow: 0 0 0 1px #C9A646;
    }

    .pd-thumb:hover {
        border-color: #936C53;
        transform: translateY(-2px);
    }

    .pd-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        pointer-events: none;
    }

/* ══════════════════════════════
   RIGHT — PRODUCT INFO
══════════════════════════════ */
.pd-info-col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 6px;
}

.pd-product-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #411C05;
    margin: 0 0 14px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

/* Price */
.pd-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.pd-price-old {
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #B08060;
    text-decoration: line-through;
}

.pd-price-new {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 800;
    color: #552709;
    line-height: 1;
    letter-spacing: -0.02em;
}

.pd-badge-save {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 10px;
    border-radius: 50px;
    background: linear-gradient(135deg, #C9A646 0%, #7B4A1C 100%);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

/* Star Rating */
.pd-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.pd-stars {
    color: #C9A646;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.pd-rating-count {
    font-size: 0.82rem;
    color: #936C53;
    font-weight: 500;
}

/* Key Features */
.pd-features {
    margin-bottom: 20px;
}

.pd-features-title {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #411C05;
    margin: 0 0 10px;
    letter-spacing: 0.01em;
}

.pd-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .pd-features-list li {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        font-family: 'Roboto', sans-serif;
        font-size: 0.9rem;
        font-weight: 500;
        color: #765038;
        line-height: 1.5;
    }

        .pd-features-list li::before {
            content: '•';
            color: #C9A646;
            font-size: 1rem;
            flex-shrink: 0;
            line-height: 1.4;
        }

/* Language */
.pd-lang {
    margin-bottom: 20px;
}

.pd-lang-title {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #411C05;
    margin: 0 0 10px;
}

.pd-lang-options {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pd-lang-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #765038;
    user-select: none;
}

    .pd-lang-label input[type="radio"] {
        display: none;
    }

.pd-lang-custom {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #936C53;
    background: transparent;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s ease;
}

    .pd-lang-custom::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #C9A646;
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.2s ease;
    }

.pd-lang-label input[type="radio"]:checked ~ .pd-lang-custom {
    border-color: #C9A646;
}

    .pd-lang-label input[type="radio"]:checked ~ .pd-lang-custom::after {
        transform: translate(-50%, -50%) scale(1);
    }

/* Quantity */
.pd-qty-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.pd-qty-label {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #411C05;
    margin: 0;
    white-space: nowrap;
}

.pd-qty-ctrl {
    display: flex;
    align-items: center;
    border: 1.5px solid #936C53;
    border-radius: 50px;
    overflow: hidden;
}

.pd-qty-btn {
    width: 36px;
    height: 36px;
    background: #FDF5ED;
    border: none;
    color: #552709;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

    .pd-qty-btn:hover {
        background: #E8D0B0;
    }

.pd-qty-val {
    min-width: 36px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #411C05;
    padding: 0 6px;
}

/* CTA Buttons */
.pd-cta-row {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: nowrap;
}

.btn-pd-buy,
.btn-pd-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 32px;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    white-space: nowrap;
    flex: 1 1 0;
}

.btn-pd-buy {
    background: linear-gradient(135deg, #C9A646 0%, #7B4A1C 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(201, 166, 70, 0.40);
}

    .btn-pd-buy:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 28px rgba(201, 166, 70, 0.55);
        color: #fff;
        text-decoration: none;
    }

.btn-pd-cart {
    background: transparent;
    color: #552709;
    border: 2px solid #552709;
    box-shadow: none;
}

    .btn-pd-cart:hover {
        background: #552709;
        color: #FDF5ED;
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(65, 28, 5, 0.22);
        text-decoration: none;
    }

/* ══════════════════════════════
   TABS
══════════════════════════════ */
.pd-tabs-wrap {
    width: 100%;
    margin-bottom: 56px;
}

.pd-tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #E8D0B0;
    margin-bottom: 28px;
}

.pd-tab-btn {
    position: relative;
    padding: 12px 28px;
    border: none;
    background: transparent;
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #936C53;
    cursor: pointer;
    transition: color 0.25s ease;
    letter-spacing: 0.01em;
}

    .pd-tab-btn::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 2px;
        background: #C9A646;
        border-radius: 2px 2px 0 0;
        transform: scaleX(0);
        transition: transform 0.25s ease;
    }

    .pd-tab-btn.active {
        color: #411C05;
    }

        .pd-tab-btn.active::after {
            transform: scaleX(1);
        }

.pd-tab-panel {
    display: none;
}

    .pd-tab-panel.active {
        display: block;
    }

/* Description */
.pd-desc-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #765038;
    line-height: 1.9;
    margin: 0 0 18px;
    max-width: 1600px;
}

/* ══════════════════════════════
   REVIEWS — Two-column desktop layout
   LEFT: Write a Review form
   RIGHT: Summary + Review cards
══════════════════════════════ */
.pd-reviews-desktop-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* ══════════════════════════════
   REVIEWS — Summary
══════════════════════════════ */
.pd-review-summary {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #F0E4D4;
    border-radius: 16px;
    padding: 28px 36px;
    margin-bottom: 32px;
}

.pd-review-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.pd-score-big {
    font-family: 'Merriweather', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #411C05;
    line-height: 1;
}

.pd-score-stars {
    color: #C9A646;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.pd-score-count {
    font-size: 0.78rem;
    color: #936C53;
    font-weight: 500;
}

.pd-review-bars {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.pd-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #765038;
}

    .pd-bar-row span:first-child {
        min-width: 36px;
        text-align: right;
        white-space: nowrap;
    }

    .pd-bar-row span:last-child {
        min-width: 32px;
        text-align: right;
    }

.pd-bar-track {
    flex: 1 1 0;
    height: 8px;
    background: #D2B9A0;
    border-radius: 10px;
    overflow: hidden;
}

.pd-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #C9A646, #7B4A1C);
    border-radius: 10px;
    transition: width 0.6s ease;
}

/* ══════════════════════════════
   REVIEW CARDS
══════════════════════════════ */
.pd-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.pd-review-card {
    background: #F8EFE4;
    border-radius: 14px;
    padding: 22px 26px;
    border: 1px solid #E4CDB0;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

    .pd-review-card:hover {
        box-shadow: 0 6px 24px rgba(65, 28, 5, 0.12);
        transform: translateY(-2px);
    }

.pd-rc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.pd-rc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #552709;
    color: #FDF5ED;
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-transform: uppercase;
}

.pd-rc-meta {
    flex: 1;
}

.pd-rc-name {
    font-family: 'Merriweather', serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #411C05;
    margin: 0 0 2px;
}

.pd-rc-date {
    font-size: 0.75rem;
    color: #936C53;
    margin: 0;
}

.pd-rc-stars {
    color: #C9A646;
    font-size: 0.95rem;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.pd-rc-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: #765038;
    line-height: 1.75;
    margin: 0 0 14px;
}

.pd-helpful-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1.5px solid #D2B9A0;
    border-radius: 50px;
    padding: 5px 14px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: #936C53;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

    .pd-helpful-btn:hover {
        background: #552709;
        color: #FDF5ED;
        border-color: #552709;
    }

/* ══════════════════════════════
   REVIEW FORM
══════════════════════════════ */
.pd-review-form-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.pd-rf-icon {
    width: 24px;
    height: 32px;
    background: #C9A97A;
    border: 1.5px solid #7A5C38;
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 50% 100%, 0% 85%);
    flex-shrink: 0;
    display: block;
}

.pd-review-form-title {
    font-family: 'Merriweather', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #552709;
    margin: 0;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.pd-review-form-card {
    background: #D2B9A0;
    border-radius: 16px;
    padding: 32px 36px;
    position: relative;
    margin-top: 12px;
    margin-right: 12px;
    box-shadow: 12px -12px 0 0 transparent, 12px -12px 0 2px #552709;
}

.pd-rf-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pd-rf-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.pd-rf-label {
    font-family: 'Merriweather', serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #411C05;
    letter-spacing: 0.01em;
}

.pd-rf-input {
    width: 100%;
    background: #FDF5ED;
    border: 1.5px solid #B09070;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: #411C05;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    resize: none;
}

    .pd-rf-input::placeholder {
        color: #B09070;
        font-style: italic;
    }

    .pd-rf-input:focus {
        border-color: #C9A646;
        box-shadow: 0 0 0 3px rgba(201, 166, 70, 0.20);
    }

.pd-rf-textarea {
    min-height: 110px;
    line-height: 1.65;
}

/* Star Picker */
.pd-star-picker {
    display: flex;
    gap: 4px;
    margin-top: 2px;
}

.pd-star-pick {
    font-size: 2rem;
    color: #D2B9A0;
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
    line-height: 1;
    user-select: none;
}

    .pd-star-pick:hover,
    .pd-star-pick.lit {
        color: #C9A646;
        transform: scale(1.18);
    }

/* Submit row */
.pd-rf-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.pd-rf-note {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    color: #7A5C38;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .pd-rf-note i {
        font-size: 0.7rem;
        color: #936C53;
    }

.btn-pd-submit-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 32px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #C9A646 0%, #7B4A1C 100%);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(201, 166, 70, 0.38);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

    .btn-pd-submit-review:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(201, 166, 70, 0.55);
    }

/* Success message */
.pd-rf-success {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    background: #e6f5e9;
    border: 1.5px solid #7BC67E;
    border-radius: 10px;
    padding: 12px 18px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d6a35;
}

    .pd-rf-success i {
        font-size: 1.1rem;
        color: #4CAF50;
        flex-shrink: 0;
    }

    .pd-rf-success.show {
        display: flex;
        animation: fadeInUp 0.4s ease forwards;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════
   PEOPLE ALSO LIKE
══════════════════════════════ */
.pd-also-like {
    width: 100%;
}

/* Also Like Grid */
.pd-also-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.pd-also-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid #D2B9A0;
    background: #FDF5ED;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

    .pd-also-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 32px rgba(65, 28, 5, 0.20);
        text-decoration: none;
    }

.pd-also-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #C4A882;
}

    .pd-also-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
        pointer-events: none;
    }

.pd-also-card:hover .pd-also-img img {
    transform: scale(1.06);
}

.pd-also-info {
    background: #552709;
    padding: 10px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pd-also-name {
    font-family: 'Roboto', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #FDF5ED;
    margin: 0;
    line-height: 1.35;
}

.pd-also-price-row {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.pd-also-old {
    font-size: 0.78rem;
    font-weight: 500;
    color: #C4A882;
    text-decoration: line-through;
}

.pd-also-new {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #FDF5ED;
    line-height: 1;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
    .pd-section {
        padding: 36px 48px 60px;
    }

    .pd-top {
        gap: 36px;
    }

    .pd-slider-col {
        flex: 0 0 46%;
        width: 46%;
    }

    .pd-also-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .pd-section {
        padding: 28px 28px 52px;
    }

    .pd-top {
        flex-direction: column;
        gap: 28px;
    }

    .pd-slider-col {
        flex: none;
        width: 100%;
    }

    .pd-info-col {
        width: 100%;
    }

    /* Reviews: collapse to single column */
    .pd-reviews-desktop-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pd-review-summary {
        flex-direction: column;
        gap: 20px;
        padding: 22px 22px;
        text-align: center;
    }

    .pd-bar-row span:first-child {
        text-align: left;
    }

    .pd-review-form-card {
        padding: 24px 22px;
    }

    .pd-rf-row-2 {
        grid-template-columns: 1fr;
    }

    .pd-also-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .pd-section {
        padding: 20px 16px 44px;
    }

    .pd-product-title {
        font-size: 1.3rem;
    }

    .pd-price-new {
        font-size: 1.6rem;
    }

    .pd-cta-row {
        flex-direction: column;
    }

    .btn-pd-buy,
    .btn-pd-cart {
        width: 100%;
        flex: none;
    }

    .pd-review-form-card {
        padding: 18px 16px;
        margin-right: 8px;
        box-shadow: 8px -8px 0 0 transparent, 8px -8px 0 2px #552709;
    }

    .pd-review-form-title {
        font-size: 1.3rem;
    }

    .pd-rf-submit-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .btn-pd-submit-review {
        width: 100%;
    }

    .pd-also-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .pd-tab-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 380px) {
    .pd-section {
        padding: 16px 12px 36px;
    }

    .pd-also-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .pd-also-name {
        font-size: 0.78rem;
    }

    .pd-also-new {
        font-size: 0.95rem;
    }

    .pd-score-big {
        font-size: 2.8rem;
    }

    .pd-star-pick {
        font-size: 1.7rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   COURSES PAGE — dynamic-state additions
   Add these rules to shop.css (or courses.css if you split it)
═══════════════════════════════════════════════════════════════ */

/* ── Active category in sidebar ─────────────────────────────── */
.courses-filter-item.cat-active .courses-filter-label {
    color: #411C05;
    font-weight: 600;
}

.courses-filter-item.cat-active .courses-dot {
    box-shadow: 0 0 0 3px rgba(193, 150, 83, 0.35);
    transform: scale(1.18);
}

.courses-filter-item {
    cursor: pointer;
    transition: opacity 0.18s;
}

    .courses-filter-item:hover {
        opacity: 0.8;
    }

/* ── Result count label ──────────────────────────────────────── */
.courses-result-count {
    font-family: 'Roboto', sans-serif;
    font-size: 0.82rem;
    color: #936C53;
    margin: 0;
}

/* ── Empty state ─────────────────────────────────────────────── */
.courses-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #936C53;
}

    .courses-empty i {
        font-size: 2.4rem;
        margin-bottom: 14px;
        display: block;
        opacity: 0.45;
    }

    .courses-empty p {
        font-family: 'Roboto', sans-serif;
        font-size: 0.95rem;
    }

/* ── Pagination ellipsis ─────────────────────────────────────── */
.courses-page-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #936C53;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* ── Disabled pagination arrow ───────────────────────────────── */
.courses-page-arrow:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   COURSE DETAIL — new additions (append to end of shop.css)
   These classes do NOT exist in shop.css yet.
═══════════════════════════════════════════════════════════════ */

/* ── Category badge above title ──────────────────────────────── */
.cd-category-badge {
    display: inline-block;
    background: #FDF0E0;
    color: #765038;
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    border: 1px solid #E8D0B0;
}

/* ── Duration + Price on same row ────────────────────────────── */
.cd-meta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.cd-price-tag {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #C9A646;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .cd-price-tag i {
        font-size: 0.95rem;
    }

/* ── Optional meta rows (schedule / location / seats) ────────── */
.cd-extra-meta {
    margin: 4px 0;
}

.cd-schedule,
.cd-location,
.cd-seats {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: #765038;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 7px;
}

/* ── YouTube responsive embed ────────────────────────────────── */
.cd-yt-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(65, 28, 5, 0.22);
}

.cd-yt-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ── Syllabus button — icon gap fix ──────────────────────────── */
.btn-cd-syllabus i {
    margin-right: 6px;
}
/* ═══════════════════════════════════════════════════════════════
   COURSE DETAIL — Mode + Category badge row
═══════════════════════════════════════════════════════════════ */
.cd-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

    /* Override margin on category badge since row handles spacing now */
    .cd-badge-row .cd-category-badge {
        margin-bottom: 0;
    }

.cd-mode-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid;
    background: #411C05;
    color: #FDF5ED;
    border-color: #411C05;
}


Append to bottom of shop.css
═══════════════════════════════════════════════════════════════ */
/* Make playerWrap fill screen and stack correctly */
#playerWrap:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    background: #000;
    position: relative;
}

#playerWrap:-moz-full-screen {
    width: 100vw;
    height: 100vh;
    background: #000;
    position: relative;
}

#playerWrap:-ms-fullscreen {
    width: 100vw;
    height: 100vh;
    background: #000;
    position: relative;
}

#playerWrap:fullscreen {
    width: 100vw;
    height: 100vh;
    background: #000;
    position: relative;
}

/* Video fills entire screen */
#playerWrap:-webkit-full-screen .cd-video {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    object-fit: contain;
}

#playerWrap:-moz-full-screen .cd-video {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    object-fit: contain;
}

#playerWrap:-ms-fullscreen .cd-video {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    object-fit: contain;
}

#playerWrap:fullscreen .cd-video {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    object-fit: contain;
}

/* Controls bar pinned to bottom, always on top */
#playerWrap:-webkit-full-screen .cd-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(26,10,2,0.92);
    display: flex !important;
    padding: 12px 24px 16px;
    gap: 14px;
    align-items: center;
    box-sizing: border-box;
}

#playerWrap:-moz-full-screen .cd-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(26,10,2,0.92);
    display: flex !important;
    padding: 12px 24px 16px;
    gap: 14px;
    align-items: center;
    box-sizing: border-box;
}

#playerWrap:-ms-fullscreen .cd-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(26,10,2,0.92);
    display: flex !important;
    padding: 12px 24px 16px;
    gap: 14px;
    align-items: center;
    box-sizing: border-box;
}

#playerWrap:fullscreen .cd-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(26,10,2,0.92);
    display: flex !important;
    padding: 12px 24px 16px;
    gap: 14px;
    align-items: center;
    box-sizing: border-box;
}

/* Play overlay stops above controls */
#playerWrap:-webkit-full-screen .cd-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 56px;
    z-index: 9998;
}

#playerWrap:-moz-full-screen .cd-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 56px;
    z-index: 9998;
}

#playerWrap:-ms-fullscreen .cd-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 56px;
    z-index: 9998;
}

#playerWrap:fullscreen .cd-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 56px;
    z-index: 9998;
}

/* Force show volume + speed that mobile CSS hides */
#playerWrap:-webkit-full-screen .cd-vol-wrap,
#playerWrap:-webkit-full-screen .cd-speed {
    display: flex !important;
}

#playerWrap:-moz-full-screen .cd-vol-wrap,
#playerWrap:-moz-full-screen .cd-speed {
    display: flex !important;
}

#playerWrap:-ms-fullscreen .cd-vol-wrap,
#playerWrap:-ms-fullscreen .cd-speed {
    display: flex !important;
}

#playerWrap:fullscreen .cd-vol-wrap,
#playerWrap:fullscreen .cd-speed {
    display: flex !important;
}

#playerWrap:-webkit-full-screen .cd-vol-slider {
    display: block !important;
    width: 80px;
}

#playerWrap:-moz-full-screen .cd-vol-slider {
    display: block !important;
    width: 80px;
}

#playerWrap:-ms-fullscreen .cd-vol-slider {
    display: block !important;
    width: 80px;
}

#playerWrap:fullscreen .cd-vol-slider {
    display: block !important;
    width: 80px;
}

/* Also un-hide asp:Panel wrapper overflow in fullscreen */
.cd-player-wrap:-webkit-full-screen {
    overflow: visible;
}

.cd-player-wrap:-moz-full-screen {
    overflow: visible;
}

.cd-player-wrap:-ms-fullscreen {
    overflow: visible;
}

.cd-player-wrap:fullscreen {
    overflow: visible;
}
.shop-filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .shop-filter-item:hover {
        background: rgba(201, 166, 70, 0.12);
        transform: translateX(3px);
    }

    .shop-filter-item.active {
        background: rgba(201, 166, 70, 0.22);
        font-weight: 600;
        color: #552709;
    }

        .shop-filter-item.active .shop-filter-label {
            color: #552709;
        }

        .shop-filter-item:hover .shop-dot,
        .shop-filter-item.active .shop-dot {
            transform: scale(1.25);
        }

.shop-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    transition: transform 0.15s ease;
}
/* ── Order Type Tabs (Farma Both) ── */
.pd-order-type-tabs {
    display: flex;
    gap: 0;
    border: 1.5px solid #936C53;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 18px;
    width: fit-content;
}

.pd-order-type-btn {
    padding: 8px 22px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #552709;
    background: #FDF5ED;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

    .pd-order-type-btn.active {
        background: #552709;
        color: #FDF5ED;
    }

/* ── Custom Order Modal ── */
.pd-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44,20,8,0.62);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .pd-modal-overlay.open {
        display: flex;
    }

.pd-modal {
    background: #FDF5ED;
    border-radius: 18px;
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(44,20,8,0.35);
    padding: 32px 36px 36px;
    position: relative;
    box-sizing: border-box;
}

.pd-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #936C53;
    cursor: pointer;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}

    .pd-modal-close:hover {
        background: #F0E0CC;
        color: #552709;
    }

.pd-modal-title {
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #411C05;
    margin: 0 0 4px;
}

.pd-modal-sub {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: #936C53;
    font-weight: 500;
    margin: 0 0 22px;
}

.pd-modal-field {
    margin-bottom: 14px;
}

.pd-modal-label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #411C05;
    margin-bottom: 5px;
}

.pd-modal-input {
    width: 100%;
    background: #fff;
    border: 1.5px solid #D2B9A0;
    border-radius: 8px;
    padding: 11px 14px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.88rem;
    color: #411C05;
    outline: none;
    box-sizing: border-box;
    resize: none;
    transition: border-color 0.2s;
}

    .pd-modal-input:focus {
        border-color: #C9A646;
    }

.pd-modal-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pd-modal-delivery {
    background: #F5ECD8;
    border-radius: 8px;
    padding: 10px 14px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: #765038;
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .pd-modal-delivery i {
        color: #C9A646;
    }

.btn-modal-submit {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #C9A646 0%, #7B4A1C 100%);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(201,166,70,0.40);
    transition: transform 0.22s, box-shadow 0.22s;
    margin-top: 6px;
}

    .btn-modal-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(201,166,70,0.55);
    }

.pd-modal-success {
    display: none;
    text-align: center;
    padding: 20px 0 8px;
}

    .pd-modal-success i {
        font-size: 2.8rem;
        color: #4CAF50;
        display: block;
        margin-bottom: 12px;
    }

    .pd-modal-success p {
        font-family: 'Roboto', sans-serif;
        font-size: 1rem;
        color: #552709;
        font-weight: 600;
    }

/* Delivery info strip */
.pd-delivery-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.88rem;
    color: #936C53;
    font-weight: 600;
    margin-bottom: 16px;
}

    .pd-delivery-strip i {
        color: #C9A646;
        font-size: 1rem;
    }

@media (max-width: 560px) {
    .pd-modal {
        padding: 24px 20px 28px;
    }

    .pd-modal-row2 {
        grid-template-columns: 1fr;
    }
}
/* ============================================================
   CART GUEST MESSAGE
============================================================ */
.cart-guest-msg {
    position: fixed;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    padding: 20px 28px;
    z-index: 9999;
    min-width: 300px;
    max-width: 380px;
    width: 90%;
    border-top: 4px solid #c8a96e;
    transition: bottom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .cart-guest-msg.visible {
        bottom: 30px;
    }

.cgm-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.cart-guest-msg p:not(.cgm-title) {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.cgm-actions {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.cgm-btn-login {
    flex: 1;
    background: #c8a96e;
    color: #fff;
    text-align: center;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

    .cgm-btn-login:hover {
        background: #b8934a;
        color: #fff;
    }

.cgm-btn-close {
    flex: 1;
    background: #f5f5f5;
    color: #555;
    border: none;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

    .cgm-btn-close:hover {
        background: #e8e8e8;
    }

/* Mobile */
@media (max-width: 480px) {
    .cart-guest-msg {
        min-width: unset;
        width: 92%;
        padding: 16px 18px;
    }

    .cgm-actions {
        flex-direction: column;
    }
}