@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #a12c8e;
    /* Purple Theme from user reference */
    --primary-light: #fdf2f8;
    --secondary: #038d63;
    /* Marketplace green for success/ratings */
    --accent-red: #ed3843;
    /* For discount highlights */
    --bg: #eaeaf2;
    --surface: #ffffff;
    --text: #353543;
    --text-muted: #666666;
    --border: #eaeaf2;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.2s;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Progress Bar */
.checkout-progress {
    display: flex;
    justify-content: space-between;
    padding: 20px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid var(--border);
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    position: relative;
}

.step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e5e7eb;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.step-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.step-item.active .step-number {
    background: var(--primary);
    color: white;
}

.step-item.active .step-label {
    color: var(--primary);
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e5e7eb;
    z-index: 1;
}

.step-item.completed:not(:last-child)::after {
    background: var(--primary);
}

/* Header */
.header {
    height: 60px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.menu-icon {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

.icon-set {
    display: flex;
    gap: 16px;
}

.icon {
    font-size: 1.4rem;
    cursor: pointer;
}

/* Wishlist & Cart Bubbles */
.bubble-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    border: 2px solid white;
}

.d-none,
.product-hidden {
    display: none !important;
}

/* Attention Grabbing Highlights */
.highlight-wishlist svg {
    filter: drop-shadow(0 0 8px rgba(237, 56, 67, 0.4));
    animation: pulse-attention 2s infinite;
}

@keyframes pulse-attention {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}


/* Nav Menu */
#menu-list {
    display: none;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 1rem;
}

#menu-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

#menu-list li:last-child {
    border-bottom: none;
}

#menu-list a {
    font-weight: 600;
    color: var(--text);
    display: block;
}

/* Nav Menu Search */
.menu-search-item {
    padding: 16px 0 !important;
    border-bottom: 2px solid var(--primary-light) !important;
    margin-bottom: 8px;
}

.search-box-wrap {
    position: relative;
    width: 100%;
}

.search-box-wrap input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    background: #fdf2f8;
    border: 1px solid #fbcfe8;
    border-radius: 50px;
    font-size: 0.95rem;
    outline: none;
}

.search-box-wrap svg {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

/* Product Card - GRID */
.product-grid,
.similar-products-grid-view {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px;
}

























/* CHECKOUT REDESIGN - Forced Mobile View */
.checkout-container {
    padding: 12px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Removed side-by-side desktop layout to maintain mobile feel */

.checkout-card {
    background: white;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-bottom: 12px;
}

.checkout-summary-top {
    width: 100%;
    margin-bottom: 12px;
}

.checkout-main-header {
    margin-bottom: 20px;
}

.checkout-explanation {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    line-height: 1.6;
    color: #555;
    font-size: 0.9rem;
}

.checkout-explanation p {
    margin-bottom: 12px;
}

.checkout-explanation p:last-child {
    margin-bottom: 0;
}

.field-group {
    position: relative;
    margin-bottom: 20px;
}

.field-group input,
.field-group textarea {
    width: 100%;
    padding: 16px 12px 6px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    background: transparent;
    transition: all 0.2s;
}

.field-group label {
    position: absolute;
    left: 12px;
    top: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: all 0.2s;
    pointer-events: none;
    font-weight: 500;
}

.field-group input:focus,
.field-group input:not(:placeholder-shown) {
    padding-top: 18px;
    padding-bottom: 4px;
    border-color: var(--primary);
}

.field-group input:focus+label,
.field-group input:not(:placeholder-shown)+label {
    top: 4px;
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
}

/* Product Card - GRID */

























/* Product Detail Page */
.main-img-wrap {
    width: 100%;
    background: black;
    height: 300px;
    overflow: hidden;
}

.main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



















.comment-block {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.comment-user {
    font-weight: 700;
    font-size: 0.9rem;
}

.comment-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.comment-text {
    margin: 8px 0;
    font-size: 0.95rem;
}









/* Button Group Marketplace Style */
.button-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.btn-common {
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.1s;
}

.btn-common:active {
    transform: scale(0.98);
}

.btn-add-to-cart {
    background: white;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-buy-now {
    background: var(--primary);
    color: white;
}

.icon-btn {
    width: 20px;
    height: 20px;
}

/* Similar Products / Color Selection */
.color-div {
    padding: 16px;
    border-top: 5px solid var(--border);
}

.color-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 0;
}

.color-box {
    width: 60px;
    height: 60px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 4px;
    cursor: pointer;
}

.color-box.active {
    border-color: var(--primary);
    border-width: 2px;
}

.color-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Size Selection */
.size-div {
    padding: 16px;
    border-top: 5px solid var(--border);
}

.size-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.dress-size {
    padding: 8px 16px;
    border: 1px solid var(--text);
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.dress-size.active {
    background: var(--text);
    color: white;
}

/* Rating Map Detailed */
.rating-map-card {
    padding: 16px;
}

.rating-bar-row {
    display: grid;
    grid-template-columns: 80px 1fr 40px;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.rating-meter-bg {
    height: 8px;
    background: #f0f0f5;
    border-radius: 10px;
    overflow: hidden;
}

.rating-meter-fill {
    height: 100%;
    background: var(--secondary);
}

/* Marketing Tag Card */
.marketing-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-top: 5px solid var(--border);
    border-bottom: 5px solid var(--border);
}

.marketing-item {
    background: white;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.marketing-item img {
    width: 32px;
    height: 32px;
}

.marketing-item span {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text);
}

/* Customer Media Section */
.customer-media {
    padding: 16px;
    border-top: 5px solid var(--border);
}








/* Homepage Polish */






.story-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
    text-align: left;
}



.story-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #fbcfe8;
}

.story-card h4 {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
}

.story-card p {
    font-size: 0.8rem;
    color: #be185d;
    margin-bottom: 0;
}









/* Mobile-Only Frame for Desktop Displays Removed */

/* Pagination & Load More */














/* CATEGORY BUBBLES NEW DESIGN */
.cat-row {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 8px 10px 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: safe center;
}

.cat-row::-webkit-scrollbar {
    display: none;
}

.cat-bubble {
    flex: 0 0 auto;
    width: 80px;
    text-align: center;
    font-size: 11px;
    color: #111827;
    text-decoration: none;
    cursor: pointer;
}

.cat-bubble img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f3e5f5;
    background: #f3f4f6;
    display: block;
    margin: 0 auto;
}

.cat-title {
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 11px;
    font-weight: 500;
}

/* SEARCH BAR NEW DESIGN */
.search-bar {
    padding: 8px 10px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.search-input-wrap {
    position: relative;
    width: 100%;
}

.search-input-wrap input {
    width: 100%;
    padding: 8px 36px 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 13px;
    outline: none;
    font-family: inherit;
}

.search-icn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #9ca3af;
    cursor: pointer;
}

/* BANNER NEW DESIGN */
.banner-section {
    padding: 10px;
    background: #fff;
}

.banner-img {
    width: 100%;
    height: auto;
    max-height: 250px;
    border-radius: 8px;
    object-fit: cover;
}

/* SECTION TITLE */
.section-title {
    font-size: 14px;
    font-weight: 700;
    padding: 10px 10px 2px;
    color: #111827;
}

/* PRODUCT GRID & CARDS NEW DESIGN */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
}



.product-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #f3e5f5;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    padding: 7px;
    text-decoration: none;
    color: #111827;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.prodimg {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    object-fit: cover;
    background: #f3f4f6;
    margin-bottom: 6px;
}

.prod-title {
    font-size: 12px;
    font-weight: 600;
    min-height: 32px;
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #1f2937;
}

.prod-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    margin-bottom: 2px;
}

.prod-price {
    font-weight: 700;
    color: #159647;
    font-size: 13px;
}

.prod-mrp {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 11px;
}

.prod-off {
    color: #b91c1c;
    font-weight: 600;
    font-size: 11px;
}

.prod-special {
    font-size: 10px;
    color: #6b7280;
}

.f-delivery {
    font-size: 10px;
    color: #059669;
    font-weight: 500;
}

.rbox {
    background: #16a34a;
    color: #fff;
    border-radius: 4px;
    padding: 1px 5px;
    font-size: 10px;
    font-weight: 600;
}

.rcount {
    font-size: 10px;
    color: #6b7280;
}

/* PAGINATION NEW DESIGN */
.pagination-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 24px 0;
    padding: 0 10px;
    flex-wrap: wrap;
}

.page-numbers {
    display: flex;
    gap: 4px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border-radius: 6px;
    background: white;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.2s ease;
}

.page-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.page-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.page-link.prev-next {
    padding: 0 10px;
    gap: 4px;
}

/* FOOTER NEW DESIGN */
.footer {
    background: #1a1a2e;
    color: #f5f5f5;
    padding: 20px 12px 10px;
    margin-top: 30px;
    text-align: left;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-cols {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 11px;
}

.footer-cols strong {
    font-size: 12px;
    display: block;
    margin-bottom: 4px;
}

.footer-cols a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 2px;
}

.footer-cols a:hover {
    color: #ffffff;
}

.footer-copy {
    font-size: 10px;
    color: #6b7280;
    border-top: 1px solid #2d2d3f;
    padding-top: 6px;
    text-align: center;
}



/* PAGE HEADERS & BREADCRUMBS */
.page-header {
    padding: 16px 12px;
    background: white;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.breadcrumb {
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.page-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin: 0;
}

.page-description {
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 2px;
}

/* PRODUCT DETAIL PAGE CLEAN STYLES */
.not-found-card {
    padding: 60px 20px;
    text-align: center;
    background: white;
}

.not-found-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.not-found-title {
    font-weight: 800;
    color: #333;
    margin-bottom: 8px;
}

.not-found-desc {
    color: #666;
    margin-bottom: 24px;
}

.not-found-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
}

.live-buyers-alert {
    background: #fff5f7;
    border-bottom: 1px solid #ffe4e9;
    padding: 8px 12px;
    display: flex;
    margin-bottom: 5px;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: white;
    padding: 3px 8px;
    border-radius: 12px;
    border: 1px solid #ffe4e9;
    box-shadow: 0 1px 3px rgba(255, 65, 108, 0.05);
}

.live-badge-dot-container {
    display: flex;
    position: relative;
    width: 6px;
    height: 6px;
}

.live-badge-dot-ping {
    position: absolute;
    display: inline-flex;
    width: 100%;
    height: 100%;
    background: #ff416c;
    border-radius: 50%;
    opacity: 0.75;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.live-badge-dot {
    position: relative;
    display: inline-flex;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    background: #ff416c;
}

.live-buyers-text {
    font-size: 11px;
    font-weight: 700;
    color: #ff416c;
}

.live-buyers-sub {
    font-size: 11px;
    color: #999;
    font-weight: 500;
}

.detail-content-wrap {
    padding: 12px;
}

.detail-breadcrumbs {
    font-size: 11px;
    color: #888;
    margin-bottom: 6px;
}

.detail-title-h1 {
    font-size: 24px;
    line-height: 1.4;
    color: #353543;
    margin-bottom: 6px;
    font-weight: 700;
}

.detail-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.detail-price-curr {
    font-size: 16px;
    font-weight: 800;
    color: #111;
}

.detail-price-mrp {
    color: #999;
    text-decoration: line-through;
    font-size: 12px;
}

.detail-price-off {
    color: #ed3843;
    font-weight: 700;
    font-size: 12px;
}

.detail-special-badge {
    background: #fdf2f8;
    color: var(--secondary);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 8px;
}

.detail-rating-summary {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.detail-rating-pill {
    background: var(--secondary);
    color: white;
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.detail-rating-text {
    font-size: 11px;
    color: #999;
}

.size-div-title {
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 700;
    color: #111;
}

.highlights-title {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #111;
}

.highlights-desc {
    color: #444;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.details-title-h3 {
    font-size: 20px;
    margin-bottom: 4px;
    font-weight: 700;
    color: #111;
}

.details-desc-container {
    color: #666;
    font-size: 12px;
    line-height: 1.5;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 700;
    padding: 0;
    margin-top: 2px;
    cursor: pointer;
    font-size: 11px;
}

.ratings-overview {
    margin-top: 20px;
    border-top: 5px solid var(--border);
    padding: 16px 0 0 0;
}

.ratings-title {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
    padding: 0 12px;
    color: #111;
}

.ratings-flex-row {
    display: flex;
    gap: 16px;
    padding: 0 12px;
    margin-bottom: 16px;
}

.ratings-score-box {
    text-align: center;
    min-width: 60px;
}

.ratings-score-box .score-num {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 0;
    font-weight: 800;
}

.ratings-score-stars {
    color: var(--secondary);
    font-size: 12px;
}

.ratings-meter-column {
    flex: 1;
}

.customer-media {
    padding: 0 12px;
}

.customer-media-title {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    display: block;
    margin-bottom: 8px;
}

.customer-media-row {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.customer-media-item {
    min-width: 64px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
    background: #eee;
    flex-shrink: 0;
}

.customer-media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comments-section {
    margin-top: 16px;
    padding: 0 12px;
}

.comments-title {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #111;
}

.review-stars-row {
    color: #fbbf24;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.review-helpful-btn {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.similar-products-section {
    padding: 24px 12px;
    border-top: 8px solid #f0f0f5;
}

.similar-products-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

/* GENERIC INFO PAGES (ABOUT, CONTACT, POLICIES) */
.content-main {
    padding: 16px 12px;
    background: white;
    min-height: 80vh;
}

.paragraph-text {
    font-size: 12px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 12px;
}

.paragraph-lead {
    font-size: 13px;
    color: #111;
    font-weight: 500;
    margin-bottom: 16px;
}

.mission-card {
    background: #f9fafb;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
    border: 1px solid #f3f4f6;
}

.info-list {
    margin-bottom: 16px;
    padding-left: 16px;
}

.info-list li {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.5;
    color: #444;
}

.promise-title {
    font-size: 14px;
    font-weight: 700;
    margin: 20px 0 8px;
    color: #111;
}

.team-signoff-wrap {
    text-align: center;
    margin-top: 32px;
    padding: 24px 12px;
    border-top: 1px solid #eee;
}

.team-signoff-quote {
    font-style: italic;
    color: #666;
    margin-bottom: 8px;
    font-size: 12px;
}

.team-signoff-name {
    font-weight: 700;
    color: #111;
    font-size: 12px;
}

/* CONTACT PAGE CUSTOM CLASS */
.contact-grid {
    display: grid;
    gap: 24px;
}

.contact-form-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #eee;
}

.form-field {
    margin-bottom: 12px;
}

.form-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #374151;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 12px;
    font-family: inherit;
    outline: none;
}

.form-textarea {
    resize: vertical;
}

.form-select {
    background: white;
}

.form-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.form-btn:hover {
    opacity: 0.9;
}

.contact-info-block {
    padding: 4px;
}

.contact-detail-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-icon-box {
    background: #eff6ff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
}

.contact-icon-box.email {
    background: #f0fdf4;
    color: #16a34a;
}

.contact-icon-box.address {
    background: #fff7ed;
    color: #ea580c;
}

.contact-title-h3 {
    font-size: 12px;
    font-weight: 700;
    color: #111;
    margin-bottom: 2px;
}

.contact-detail-text {
    color: #666;
    font-size: 12px;
}

.contact-detail-subtext {
    color: #999;
    font-size: 10px;
}

/* --- CHECKOUT REDESIGN CLASSES --- */
.checkout-main-header h1 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text);
}

.checkout-main-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.checkout-card h3 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 700;
}

.checkout-card-title-underlined {
    margin-bottom: 20px;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 4px;
    font-weight: 700;
}

.checkout-divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 20px 0;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 1.1rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.express-delivery-info {
    margin-top: 12px;
    border: 1px dashed var(--primary);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    background: #fff5f7;
}

.express-delivery-info h4 {
    margin-bottom: 6px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
}

.express-delivery-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.billing-toggle-card {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 16px;
}

.billing-toggle-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 700;
    color: var(--text);
}

.billing-toggle-label input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.checkout-btn-submit {
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    background-color: var(--primary);
    color: white;
    border: none;
    display: block;
    text-align: center;
    box-shadow: 0 4px 14px rgba(161, 44, 142, 0.2);
    transition: transform 0.1s, opacity 0.2s;
    cursor: pointer;
}

.checkout-btn-submit:active {
    transform: scale(0.98);
}

.checkout-btn-submit:hover {
    opacity: 0.95;
}

.checkout-btn-back {
    width: 100%;
    margin-top: 8px;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.85rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
}

.checkout-btn-back:hover {
    color: var(--text);
}

.checkout-form-submit-wrap {
    margin-top: 24px;
}

.payment-methods-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.payment-option {
    background: white;
    border: 1.5px solid var(--border);
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s;
}

.payment-option.active {
    background: #fdf2f8;
    border-color: var(--primary);
    border-width: 2px;
}

.payment-option.inactive {
    opacity: 0.6;
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.payment-option strong {
    display: block;
    font-size: 1rem;
}

.payment-option.active strong {
    color: #be185d;
}

.payment-option span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.payment-option.active span {
    color: #be185d;
    opacity: 0.8;
}

.payment-footer-info {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.payment-footer-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.shipping-options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shipping-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.shipping-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.shipping-option-details {
    flex: 1;
}

.shipping-option-name {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text);
}

.shipping-option-duration {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.shipping-option-price {
    font-weight: 800;
    color: var(--text);
}

.shipping-option-price.free {
    color: #059669;
}

.coupon-tips {
    margin-top: 8px;
    padding: 12px;
    background: #f0fdf4;
    border-radius: 8px;
    border: 1px solid #bbf7d0;
    font-size: 0.8rem;
    color: #166534;
    font-weight: 600;
}

.coupon-tip-link {
    cursor: pointer;
    text-decoration: underline;
}

.cart-sidebar-title {
    margin-bottom: 20px;
    font-size: 2.2rem;
    text-align: center;
    font-weight: 700;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.cart-summary-label {
    color: var(--text-muted);
}

.cart-summary-val {
    font-weight: 700;
    color: var(--text);
}

.cart-summary-val.free {
    color: #059669;
}

.checkout-secure-badge {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.checkout-dashed-callout {
    margin-top: 20px;
    padding: 16px;
    border: 1px dashed var(--primary);
    border-radius: 12px;
    background: #fff5f7;
}

.checkout-dashed-callout p {
    font-size: 0.8rem;
    color: #be185d;
    text-align: center;
    font-weight: 600;
    margin-bottom: 8px;
}

.checkout-dashed-callout p.no-margin {
    margin-bottom: 0;
}

.checkout-dashed-callout a {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 800;
    text-decoration: underline;
}

.cart-empty-state {
    text-align: center;
    padding: 60px 24px;
}

.cart-empty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.cart-empty-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.cart-empty-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.cart-empty-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 99px;
    background: var(--primary);
    color: white;
    font-weight: 700;
}

.cart-card-image-wrap {
    width: 100%;
    height: 240px;
    position: relative;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-card-image-wrap img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.cart-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.cart-card-remove-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.cart-card-info {
    padding: 20px;
}

.cart-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.cart-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #111;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 12px;
}

.cart-card-price {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary);
}

.cart-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.qty-control-btn {
    border: none;
    background: none;
    font-weight: 800;
    cursor: pointer;
    font-size: 1.4rem;
    color: #666;
    line-height: 1;
}

.qty-control-val {
    font-weight: 800;
    font-size: 1rem;
    min-width: 24px;
    text-align: center;
}

.cart-card-subtotal-wrap {
    text-align: right;
}

.cart-card-subtotal-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
    font-weight: 600;
}

.cart-card-subtotal-val {
    font-size: 1.15rem;
    font-weight: 900;
    color: #111;
}

.checkout-qty-badge {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 6px;
}

.checkout-review-qty-size {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
}

.checkout-review-qty-size span {
    margin: 0 8px;
    color: #ddd;
}

.checkout-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkout-preview-section h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.checkout-preview-section p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.checkout-preview-section p.highlighted {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.checkout-summary-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.checkout-summary-card.bg-gray {
    background: #f8f9fa;
}

.checkout-summary-card h3 {
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 700;
}

.checkout-summary-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.checkout-summary-card p:last-child {
    margin-bottom: 0;
}

.checkout-summary-card-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 800;
    border-top: 2px solid #ddd;
    padding-top: 12px;
    margin-top: 12px;
}

/* Wishlist Empty State styling */
.wishlist-empty-state {
    text-align: center;
    padding: 80px 20px;
}

.wishlist-empty-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.wishlist-empty-title {
    font-weight: 800;
    color: #333;
    margin-bottom: 12px;
}

.wishlist-empty-text {
    color: #666;
    margin-bottom: 32px;
}

/* Policy breadcrumb link & spacing details */
.policy-updated {
    margin-top: 40px;
    color: #888;
}

.field-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 8px;
    display: block;
    margin-bottom: 12px;
}

.checkout-highlight-card {
    margin-top: 12px;
    padding: 12px;
    background: #fdf2f8;
    border-radius: 12px;
    border: 1px solid #fbcfe8;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkout-highlight-card p {
    font-size: 0.8rem;
    color: #be185d;
    line-height: 1.4;
    margin: 0;
}

#billing-details {
    display: none;
}

.wishlist-main {
    padding: 20px 16px;
}

.wishlist-header {
    margin-bottom: 24px;
}

.wishlist-header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
}

.wishlist-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 4px;
}

.wishlist-loading-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 20px;
}

.wishlist-loading-state p {
    color: #999;
}

#wishlist-empty {
    display: none;
}

.remove-wish-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.wishlist-move-btn {
    width: 100%;
    font-size: 0.8rem;
    height: 36px;
    background: var(--primary);
    color: white;
}

.product-card-link {
    display: block;
}

.checkout-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-top: 8px;
    color: var(--text-muted);
}

.checkout-summary-line.green {
    color: #059669;
    margin-top: 4px;
}

/* --- MISCELLANEOUS INLINE STYLE REPLACEMENTS --- */
.hidden {
    display: none !important;
}

.accent-link {
    color: var(--primary) !important;
    text-decoration: none;
    font-weight: 600;
}

.accent-link:hover {
    text-decoration: underline;
}

.empty-grid-span {
    grid-column: 1 / -1;
}

.no-products-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
    color: #6b7280;
    font-size: 13px;
}

.mission-card .promise-title {
    margin-top: 0;
}

.mission-card .paragraph-text {
    margin-bottom: 0;
}

.contact-intro {
    margin-bottom: 10px;
}

.contact-form-card form .form-field:last-of-type {
    margin-bottom: 16px;
}

.contact-info-block .promise-title {
    margin-top: 0;
    margin-bottom: 12px;
}

.contact-info-block .contact-grid {
    gap: 16px;
}

.ad-wrapper {
    text-align: center;
    margin: 10px 0;
}

.ad-label {
    font-size: 15px;
    margin: 0 0 4px 0;
    font-weight: 600;
}

/* Top Discover Banner (Above Header) */
.top-discover-banner {
    background: #ffffff;
    padding: 24px 18px 18px 18px;
    text-align: center;
    border-bottom: 1px solid #eef2f6;
}

.top-discover-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 6px 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.top-discover-ad-wrap {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.top-discover-ad-label {
    font-size: 1rem;
    font-weight: 500;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.top-discover-desc {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #374151;
    max-width: 440px;
    margin: 6px auto 0 auto;
    font-weight: 400;
}

.top-discover-ad-wrap .ad-code-container {
    width: 100%;
    margin-top: 8px;
}

/* Authenticity & About Section (Above Footer) */
.authenticity-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 28px 16px;
    margin-top: 24px;
}

.authenticity-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.authenticity-header {
    text-align: center;
}

.authenticity-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
}

.authenticity-badge .badge-icon {
    flex-shrink: 0;
}

.authenticity-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 8px;
}

.authenticity-subtitle {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 420px;
}

.authenticity-story {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.authenticity-story p {
    font-size: 0.82rem;
    color: #334155;
    line-height: 1.55;
    margin: 0;
}

.authenticity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.auth-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.auth-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.auth-card-icon {
    font-size: 1.3rem;
    line-height: 1;
}

.auth-card-content h3 {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 3px;
    line-height: 1.3;
}

.auth-card-content p {
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

.authenticity-trust-strip {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    padding: 10px 8px;
    gap: 6px;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #334155;
}

.trust-pill-icon {
    color: #059669;
    font-weight: 700;
    font-size: 0.85rem;
}