@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --ds-bg: #f5f6f8;
    --ds-surface: #ffffff;
    --ds-border: #e5e7eb;
    --ds-text: #111827;
    --ds-muted: #6b7280;
    --ds-accent: #111c2d;
    --ds-accent-soft: #1b2a41;
    --ds-footer: #0f1724;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--ds-bg);
    color: var(--ds-text);
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.cust-bg-logo {
    background-color: transparent !important;
}


.premium-shadow {
    box-shadow: 0 10px 30px rgba(15, 23, 36, 0.06);
}

.premium-card {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: 18px;
}
/* ==== Header And Css CUSTOM OVERRIDES END ==== */


/* ==== BILAL BHAI'S OPTIMIZED CUSTOM OVERRIDES ==== */

:root {
    --ds-green: #059669;
    --ds-dark-green: #064e3b;
}

.cus-top-side{
    z-index: 5;
}

/* Premium Cards - Safe Transition */
.ds-card {
    transition: all 0.3s ease-in-out;
    border: 1px solid #f1f5f9;
}
.ds-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(5, 150, 105, 0.1);
    border-color: var(--ds-green);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f8fafc; }
::-webkit-scrollbar-thumb { background: var(--ds-green); border-radius: 10px; }

/* Truncate for long titles */
.cus-cardfont, .cus-cardfont2 {
    text-overflow: ellipsis !important;
    overflow: hidden;
    white-space: nowrap;
    display: block; /* Zaroori hai truncation ke liye */
}

/* Home Page Specific Spacing - Isay "Home" layout mein use karein */
.hm-sec1 { margin-bottom: .5rem !important; }
.hm-sec2 { margin-bottom: 0rem; padding-top: 0 !important; padding-bottom: 0rem !important;}

.cus-paginator {box-shadow: none !important;}
.cus-paginator-child1 {background-color: transparent !important; border: none !important; border-radius: unset !important;}
.cus-div-pagination{padding-bottom: 1.5rem;}

/* Is class ko sirf home page ke section par rakhein */
.Best-Selling {
    margin-bottom: 2.5rem;
    margin-top: 3.5rem;
}

.ls-hmpg {
    margin-bottom: .5rem !important;
}

.cus-three-sec-div2{
    display: none !important;
}

@media (min-width: 600px) {
    .guest-top-div{
       padding-top:60px;
    }
}

/* Mobile Fixes */
@media (max-width: 600px) {
.cus-tophead-divs {
    flex-direction: column-reverse !important;
}


.cus-img-cover {
    object-fit: fill !important;
}

.cus-sld-h2 {
    font-size: 25px !important;
    margin-bottom: 3rem !important;
    width: 80% !important;
}

.cus-hero-cta {
    height: 35px !important;
    padding: 0 14px !important;
    font-size: 11px !important;
}

.cus-sld-p{
    display: none !important;
}

    
/*.pb-6 h1 {
        font-size: 28px;
    }*/

.soft-divider { display: none; }
    
.hm-sec2 {
    padding-bottom: 2rem !important;
    margin-bottom: 2rem;

}

.cust-pro-cards-rev, .cust-pro-cards-brand{
    display: none !important;
}

.cust-pro-cards-title{
    margin-bottom: 0 !important;
}

.cus-categories-list {
    min-width: 21% !important;
}

.cus-categories-names {
    display: none !important;
}

.category-circle {
    width: 55px !important;
    height: 55px !important;
    margin-bottom:0 !important;
}

.cus-spp-sec2 {
    display: none;
}

.cus-spp-sec3-h1{
    font-size: 1.4rem !important;
}

.anchor-chip{ 
    font-size: 11px !important;
    height: 38px !important;
    padding: 0 17px !important;
}

/*Category Page Customization*/

.category-sec1-div1 {
    flex-direction: row !important;
    gap: 0 !important;
    padding-bottom: 0 !important;
}

.category-h1 {
    font-size: larger !important;
}

.category-p1 {
    font-size: xx-small !important;
    margin-top: 0 !important;
}

.category-div2 {
    margin-top: 0.9rem !important;
}

.category-nav {
    font-size: xx-small !important;
}

.category-form {
    gap: 0 !important;
}

.category-span {
    font-size: xx-small !important;
}

.category-select {
    font-size: xx-small !important;
}

}

@media (min-width: 1024px){
    .hm-ls-sec { padding-top: 3.5rem !important; }
}

/* ==== BILAL BHAI'S CUSTOM OVERRIDES END ==== */

/* ==== PRODUCTS INDEX PAGE START ==== */

.home-shell .clamp-1,
.home-shell .clamp-2,
.home-shell .clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-shell .clamp-1 { -webkit-line-clamp: 1; }
.home-shell .clamp-2 { -webkit-line-clamp: 2; }
.home-shell .clamp-3 { -webkit-line-clamp: 3; }

.premium-panel {
    background: var(--ds-surface);
    border: 1px solid var(--ds-border);
    border-radius: 24px;
    box-shadow: 0 12px 36px rgba(15, 23, 36, 0.05);
}

.premium-card {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.premium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(15, 23, 36, 0.08);
    border-color: #d8dde6;
}

.banner-slide {
    min-height: 260px;
}

@media (min-width: 768px) {
    .banner-slide {
        min-height: 420px;
    }
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(17, 28, 45, 0.82) 0%, rgba(17, 28, 45, 0.56) 34%, rgba(17, 28, 45, 0.12) 64%, rgba(17, 28, 45, 0.02) 100%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 20px;
    border-radius: 14px;
    background: #fff;
    color: var(--ds-accent);
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.hero-cta:hover {
    background: #f3f4f6;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.section-title {
    color: var(--ds-text);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-subtitle {
    color: var(--ds-muted);
    font-size: 14px;
    margin-top: 6px;
}

.nav-button {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid var(--ds-border);
    background: #fff;
    color: var(--ds-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-button:hover {
    background: var(--ds-accent);
    border-color: var(--ds-accent);
    color: #fff;
}

.category-circle {
    width: 76px;
    height: 76px;
    border-radius: 9999px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.category-link:hover .category-circle {
    transform: translateY(-3px);
    background: #fff;
    border-color: #cfd6df;
    box-shadow: 0 10px 24px rgba(15, 23, 36, 0.08);
}

.category-link:hover .category-name {
    color: var(--ds-accent);
}

/* Image Square Fix (No More Stretch) */
.product-thumb {
    width: 100%;
    aspect-ratio: 1 / 1; /* Creates a perfect square */
    background: linear-gradient(180deg, #f7f8fa 0%, #eff2f6 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fills the square smoothly */
    transition: transform 0.35s ease;
}

.premium-card:hover .product-thumb img {
    transform: scale(1.06);
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(229, 231, 235, 1);
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(15, 23, 36, 0.08);
    z-index: 10;
}

.price-main {
    color: var(--ds-text);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.chip {
    height: 38px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid var(--ds-border);
    background: #fff;
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.chip:hover {
    border-color: #cfd6df;
    color: var(--ds-accent);
}

.chip-active {
    background: var(--ds-accent);
    border-color: var(--ds-accent);
    color: #fff;
}

.count-pill {
    width: 42px;
    height: 42px;
    border-radius: 9999px;
    background: #f43f5e;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(244, 63, 94, 0.2);
}

.soft-divider {
    border-top: 1px solid #e8ebf0;
}

.empty-state {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--ds-border);
    border-radius: 24px;
}

.sort-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.6' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 14px center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    padding-right: 42px;
}

.swiper-pagination-bullet {
    background: rgba(255,255,255,0.6) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #fff !important;
    width: 22px !important;
    border-radius: 9999px !important;
}

.store-highlight-card {
    background: linear-gradient(180deg, #eff3f8 0%, #e7ecf3 100%);
    border: 1px solid #dbe2ea;
    border-radius: 24px;
}

.store-mini-card {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(15, 23, 36, 0.05);
}

.mini-product {
    background: #f4f6f8;
    border-radius: 12px;
    border: 1px solid #edf1f5;
}

.hm-sec1 { margin-bottom: .5rem !important; }
.hm-ls-sec { padding-top: .5rem !important; }

@media (min-width: 1024px){
    .hm-sec1 { margin-bottom: 1rem !important; }
    .hm-ls-sec { padding-top: 3.5rem !important; }
}

/* ==== PRODUCTS INDEX PAGE END ==== */

/* ==== PRODUCT DETAILS PAGE START ==== */

.product-page-shell .clamp-1,
.product-page-shell .clamp-2,
.product-page-shell .clamp-3,
.product-page-shell .clamp-4,
.product-page-shell .clamp-5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-page-shell .clamp-1 { -webkit-line-clamp: 1; }
.product-page-shell .clamp-2 { -webkit-line-clamp: 2; }
.product-page-shell .clamp-3 { -webkit-line-clamp: 3; }
.product-page-shell .clamp-4 { -webkit-line-clamp: 4; }
.product-page-shell .clamp-5 { -webkit-line-clamp: 5; }

.product-page-shell .premium-panel {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 12px 36px rgba(15, 23, 36, 0.05);
}

.product-page-shell .premium-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    transition: all 0.25s ease;
}

.product-page-shell .premium-card:hover {
    border-color: #d7dde6;
    box-shadow: 0 14px 34px rgba(15, 23, 36, 0.06);
    transform: translateY(-2px);
}

.product-page-shell .section-title {
    color: #111827;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.product-page-shell .section-subtitle {
    color: #6b7280;
    font-size: 14px;
    margin-top: 6px;
}

.breadcrumb-link {
    color: #9ca3af;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #111c2d;
}

.gallery-layout {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 16px;
}

.thumb-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.thumb-button {
    width: 84px;
    height: 84px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    overflow: hidden;
    padding: 8px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    cursor: pointer;
}

.thumb-button.active,
.thumb-button:hover {
    border-color: #111c2d;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 36, 0.08);
}

.thumb-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-product-image {
    min-height: 520px;
    border-radius: 26px;
    background: linear-gradient(180deg, #f7f8fa 0%, #eff2f6 100%);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.main-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.main-product-image:hover img {
    transform: scale(1.03);
}

.floating-zoom {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
    background: rgba(255,255,255,0.96);
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(15, 23, 36, 0.08);
}

.top-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: #4b5563;
    font-size: 12px;
    font-weight: 600;
}

.product-page-shell .price-main {
    font-size: 34px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #111827;
}

.price-old {
    color: #f472b6;
    font-size: 19px;
    font-weight: 700;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 14px;
    border-radius: 9999px;
    background: #ecfdf5;
    color: #16a34a;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid #bbf7d0;
}

.mini-image-variant {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    overflow: hidden;
    padding: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.mini-image-variant.active,
.mini-image-variant:hover {
    border-color: #111c2d;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 36, 0.08);
}

.mini-image-variant img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.size-chip,
.color-chip {
    min-width: 58px;
    height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.size-chip:hover,
.color-chip:hover,
.size-chip.active,
.color-chip.active {
    background: #111c2d;
    border-color: #111c2d;
    color: #fff;
}

.quantity-box {
    height: 52px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #fff;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
}

.qty-btn {
    width: 46px;
    height: 52px;
    border: 0;
    background: transparent;
    color: #4b5563;
    font-size: 18px;
    font-weight: 700;
}

.qty-input {
    width: 56px;
    height: 52px;
    border: 0;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    outline: none;
    background: transparent;
}

.action-primary {
    width: 100%;
    height: 58px;
    border-radius: 16px;
    background: #111c2d;
    border: 1px solid #111c2d;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.action-primary:hover {
    background: #1b2a41;
    border-color: #1b2a41;
}

.action-secondary {
    width: 100%;
    height: 58px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #cfd6df;
    color: #111827;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.action-secondary:hover {
    border-color: #111c2d;
    background: #f8fafc;
}

.inline-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.inline-action:hover {
    color: #111c2d;
}

.store-stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
}

.anchor-chip {
    height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #4b5563;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.anchor-chip:hover,
.anchor-chip.active {
    background: #111c2d;
    border-color: #111c2d;
    color: #fff;
}

.detail-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 18px;
}

.detail-label,
.detail-value {
    padding: 8px 0;
    border-bottom: 1px solid #edf1f5;
    font-size: 15px;
}

.detail-label { color: #6b7280; font-weight: 600; }
.detail-value { color: #111827; font-weight: 600; }

.product-description-content h1,
.product-description-content h2,
.product-description-content h3,
.product-description-content h4,
.product-description-content h5,
.product-description-content h6 {
    color: #111827;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 1.3em;
    margin-bottom: 0.6em;
}

.product-description-content h1 { font-size: 30px; }
.product-description-content h2 { font-size: 25px; }
.product-description-content h3 { font-size: 21px; }
.product-description-content h4 { font-size: 18px; }
.product-description-content h5,
.product-description-content h6 { font-size: 16px; }

.product-description-content p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.95;
    margin-bottom: 1em;
}

.product-description-content ul,
.product-description-content ol {
    margin: 1em 0 1em 1.5em;
    color: #4b5563;
}

.product-description-content ul { list-style: disc; }
.product-description-content ol { list-style: decimal; }

.product-description-content li {
    margin-bottom: 0.55em;
    line-height: 1.9;
}

.product-description-content strong,
.product-description-content b {
    color: #111827;
    font-weight: 800;
}

.product-description-content a {
    color: #111c2d;
    text-decoration: underline;
}

.review-score-circle {
    width: 112px;
    height: 112px;
    border-radius: 9999px;
    border: 4px solid #111c2d;
    color: #111c2d;
    font-size: 38px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.review-bar-track {
    height: 8px;
    border-radius: 9999px;
    background: #eef2f7;
    overflow: hidden;
}

.review-bar-fill {
    height: 100%;
    border-radius: 9999px;
    background: #111c2d;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 14px;
    border-radius: 9999px;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.filter-chip.active {
    background: #111c2d;
    border-color: #111c2d;
    color: #fff;
}

.review-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 22px;
    height: 100%;
}

/* ---- BEST SELLER SECTION MOBILE & CROSS-BROWSER FIXES ---- */
.bestSellerSingleSwiper .swiper-slide {
    height: auto !important;
    display: flex;
}

.best-seller-card {
    height: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.best-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(180deg, #f7f8fa 0%, #eff2f6 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border: 1px solid #edf1f5;
}

.best-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.premium-card:hover .best-thumb img {
    transform: scale(1.05);
}

.best-seller-title {
    min-height: 48px;
    max-height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-family: 'Inter', sans-serif;
}

.wish-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.95);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    box-shadow: 0 8px 18px rgba(15, 23, 36, 0.08);
    z-index: 10;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wish-badge:hover {
    background: #fef2f2;
    color: #dc2626;
    border-color: #fecaca;
}

.rank-badge {
    position: absolute;
    left: 0;
    bottom: 0;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-top-right-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    background: #f59e0b;
    z-index: 10;
}

.best-seller-meta { min-height: 20px; }
.best-seller-footer { margin-top: auto; }
.best-seller-price {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
    line-height: 1.2;
}

.best-seller-old-price {
    font-size: 13px;
    font-weight: 700;
    color: #f472b6;
    margin-top: 4px;
}

/* ---- RESPONSIVE MEDIA QUERIES ---- */
@media (max-width: 1023px) {
    .product-page-shell .price-main { font-size: 30px; }
    .main-product-image { min-height: 420px; }
}

@media (max-width: 767px) {
    .gallery-layout { grid-template-columns: 1fr; }
    .thumb-list { flex-direction: row; overflow-x: auto; }
    .thumb-button { width: 68px; height: 68px; border-radius: 14px; }
    .main-product-image { min-height: 320px; }
    .product-page-shell .price-main { font-size: 22px; }
    .cus-spp-sec4-box { gap: 0.5rem !important; justify-content: center;}
    .cus-spp-sec2-3icons {justify-content: center;}
    .price-old { font-size: 17px; }
    .top-meta { font-size: 11px; }
    .detail-grid { grid-template-columns: 1fr; gap: 0; }
    .detail-label, .detail-value { border-bottom: 0; padding: 4px 0; }
    .product-page-shell .section-title { font-size: 28px; }
    .best-seller-card { min-height: 340px; }
    .best-seller-price { font-size: 19px; }
}

/* ==== PRODUCT DETAILS PAGE END ==== */

/* ==== PRODUCT UNAVAILABLE PAGE START ==== */

.na-page {
    --ds-warn-bg: #fff7ed;
    --ds-warn-border: #fed7aa;
    --ds-warn-text: #c2410c;
}

.na-shell {
    max-width: 960px;
    margin: 0 auto;
    min-height: 65vh; /* Footer ko adjust karne ke liye height set ki gayi hai */
    display: flex;
    align-items: center;
    padding: 32px 16px;
}

.na-card {
    width: 100%;
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: 30px;
    padding: 28px;
    box-shadow: 0 18px 42px rgba(15, 23, 36, 0.06);
}

.na-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.na-back:hover {
    color: var(--ds-accent);
}

.na-icon {
    width: 88px;
    height: 88px;
    border-radius: 9999px;
    background: var(--ds-warn-bg);
    border: 6px solid #ffedd5;
    color: var(--ds-warn-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin: 0 auto 24px;
    box-shadow: 0 12px 28px rgba(251, 146, 60, 0.08);
}

.na-title {
    color: var(--ds-text);
    font-size: 36px;
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-align: center;
}

.na-sub {
    color: var(--ds-muted);
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
    max-width: 640px;
    margin: 14px auto 0;
}

.na-highlight {
    margin-top: 26px;
    padding: 18px 20px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #edf1f5;
}

.na-label {
    color: #9ca3af;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 8px;
}

.na-product {
    color: var(--ds-text);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.na-note {
    color: var(--ds-muted);
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.7;
}

.na-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.na-btn-primary,
.na-btn-secondary {
    min-height: 52px;
    padding: 0 22px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.na-btn-primary {
    background: var(--ds-accent);
    color: #fff;
    box-shadow: 0 14px 28px rgba(17, 28, 45, 0.14);
}

.na-btn-primary:hover {
    background: var(--ds-accent-soft);
}

.na-btn-secondary {
    background: #fff;
    color: var(--ds-text);
    border: 1px solid var(--ds-border);
}

.na-btn-secondary:hover {
    border-color: #cfd6df;
    background: #f8fafc;
}

@media (max-width: 767px) {
    .na-card { border-radius: 24px; padding: 22px; }
    .na-title { font-size: 28px; }
    .na-sub { font-size: 14px; }
    .na-actions { flex-direction: column; }
    .na-btn-primary, .na-btn-secondary { width: 100%; }
}

/* ==== PRODUCT UNAVAILABLE PAGE END ==== */
/* ==== CART PAGE START ==== */

.cart-theme {
    --ds-success: #16a34a;
    --ds-success-soft: #ecfdf5;
    --ds-danger: #dc2626;
    --ds-danger-soft: #fef2f2;
    --ds-lime-soft: #f7fee7;
}

.cart-shell {
    max-width: 1280px;
    margin: 0 auto;
}

.cart-title {
    color: #111827; /* ds-text */
    font-size: 34px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.top-link {
    color: #111c2d; /* ds-accent */
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border-bottom: 2px solid #111c2d;
    padding-bottom: 4px;
    transition: all 0.2s ease;
}

.top-link:hover {
    color: #1b2a41; /* ds-accent-soft */
    border-color: #1b2a41;
}

.alert-box {
    padding: 16px 18px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid;
}

.alert-error {
    background: var(--ds-danger-soft);
    color: var(--ds-danger);
    border-color: #fecaca;
}

.alert-success {
    background: var(--ds-success-soft);
    color: #15803d;
    border-color: #bbf7d0;
}

.empty-box {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px dashed #e5e7eb; /* ds-border */
    border-radius: 24px;
}

.cart-item {
    background: #ffffff; /* ds-surface */
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 22px;
    transition: all 0.2s ease;
}

.cart-item:hover {
    box-shadow: 0 12px 28px rgba(15, 23, 36, 0.05);
    border-color: #d7dde6;
}

.item-media {
    width: 104px;
    height: 104px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #f7f8fa 0%, #eff2f6 100%);
    border: 1px solid #edf1f5; /* ds-border-2 */
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 28px;
    padding: 0 10px;
    border-radius: 9999px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cart-theme .qty-input {
    width: 72px;
    height: 44px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    outline: none;
}

.cart-theme .qty-input:focus {
    border-color: #cbd5e1;
    box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.12);
}

.remove-btn {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #9ca3af;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.remove-btn:hover {
    color: #dc2626;
    border-color: #fecaca;
    background: #fef2f2;
}

.soft-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 20px;
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 18px;
    border-radius: 9999px;
    border: 2px solid #111c2d;
    color: #111c2d;
    background: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    transition: all 0.2s ease;
}

.outline-btn:hover {
    background: #111c2d;
    color: #fff;
}

.summary-card {
    background: #111c2d;
    color: #fff;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 18px 36px rgba(17, 28, 45, 0.15);
}

.summary-card-sticky {
    position: sticky;
    top: 128px;
}

.summary-note {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 16px;
}

.promo-wrap {
    position: relative;
}

.promo-input {
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding: 0 110px 0 16px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    outline: none;
}

.promo-input::placeholder {
    color: rgba(255,255,255,0.45);
}

.promo-apply {
    position: absolute;
    right: 6px;
    top: 6px;
    height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: all 0.2s ease;
}

.promo-apply:hover {
    background: rgba(255,255,255,0.2);
}

.checkout-btn {
    display: block;
    width: 100%;
    text-align: center;
    height: 54px;
    line-height: 54px;
    border-radius: 9999px;
    background: #d9f99d;
    color: #111827;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    transition: all 0.2s ease;
    box-shadow: 0 14px 28px rgba(163, 230, 53, 0.18);
}

.checkout-btn:hover {
    background: #bef264;
}

.payment-icons {
    opacity: 0.35;
}

@media (max-width: 1023px) {
    .summary-card-sticky { position: static; }
}

@media (max-width: 767px) {
    .cart-title { font-size: 28px; }
    .item-media { width: 88px; height: 88px; }
    .summary-card { padding: 22px; }
}

/* ==== CART PAGE END ==== */

/* ==== CHECKOUT PAGE START ==== */

.checkout-theme {
    --ds-info-soft: #eff6ff;
    --ds-info: #2563eb;
    /* other variables are already inherited from global :root */
}

.checkout-shell {
    max-width: 1280px;
    margin: 0 auto;
}

.checkout-panel {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 12px 36px rgba(15, 23, 36, 0.05);
}

.checkout-title {
    color: #111827;
    font-size: 40px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.checkout-kicker {
    color: #6b7280;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-top: 10px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #111827;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 24px;
}

.step-badge {
    width: 28px;
    height: 28px;
    border-radius: 9999px;
    background: #111c2d;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}

.field-label {
    display: block;
    color: #6b7280;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
}

.field-input,
.field-select,
.field-textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 16px;
    color: #111827;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(15, 23, 36, 0.02);
}

.field-input,
.field-select {
    height: 56px;
    padding: 0 16px;
}

.field-textarea {
    padding: 16px;
    min-height: 120px;
    resize: vertical;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
    border-color: #cbd5e1;
    box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.12);
}

.field-readonly {
    background: #f3f4f6;
    color: #6b7280;
    cursor: not-allowed;
}

.phone-wrap {
    display: flex;
    align-items: stretch;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 36, 0.02);
}

.phone-code {
    min-width: 82px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-right: 1px solid #e5e7eb;
    color: #4b5563;
    font-size: 14px;
    font-weight: 700;
}

.phone-input {
    border: 0;
    border-radius: 0;
    box-shadow: none !important;
}

.payment-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border: 1.5px solid #cbd5e1;
    border-radius: 18px;
    background: #fff;
    transition: all 0.2s ease;
}

.payment-option.active {
    border-color: #111c2d;
    box-shadow: 0 8px 22px rgba(15, 23, 36, 0.06);
}

.checkout-theme .summary-note {
    background: var(--ds-info-soft);
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    border-radius: 18px;
    padding: 16px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.7;
}

.submit-btn {
    width: 100%;
    height: 56px;
    border-radius: 18px;
    background: #111c2d;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    transition: all 0.2s ease;
    box-shadow: 0 14px 28px rgba(17, 28, 45, 0.22);
}

.submit-btn:hover {
    background: #1b2a41;
}

.return-link {
    color: #9ca3af;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    transition: color 0.2s ease;
}

.return-link:hover {
    color: #111c2d;
}

.error-box {
    background: var(--ds-danger-soft);
    border: 1px solid #fecaca;
    border-radius: 24px;
    padding: 22px;
}

.checkout-theme .summary-card {
    position: sticky;
    top: 128px;
}

@media (max-width: 1023px) {
    .checkout-theme .summary-card { position: static; }
    .checkout-title { font-size: 34px; }
}

@media (max-width: 767px) {
    .checkout-title { font-size: 28px; }
}

/* ==== CHECKOUT PAGE END ==== */

/* ==== THANK YOU PAGE START ==== */

.order-confirm-theme {
    --ds-success: #16a34a;
    --ds-success-soft: #ecfdf5;
    --ds-warning-soft: #fefce8;
    --ds-warning-text: #a16207;
}

.order-confirm-shell {
    max-width: 900px;
    margin: 0 auto;
}

.confirm-badge {
    width: 96px;
    height: 96px;
    border-radius: 9999px;
    background: var(--ds-success-soft);
    border: 6px solid #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.08);
}

.confirm-title {
    color: #111827;
    font-size: 44px;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.confirm-kicker {
    color: #6b7280;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-top: 12px;
}

.order-confirm-theme .summary-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    padding: 32px;
    box-shadow: 0 18px 38px rgba(15, 23, 36, 0.06);
    position: relative;
    overflow: hidden;
}

.order-confirm-theme .summary-card::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 150px;
    height: 150px;
    border-radius: 9999px;
    background: #f8fafc;
    opacity: 0.9;
    pointer-events: none;
}

.meta-grid {
    position: relative;
    z-index: 1;
}

.meta-label {
    color: #9ca3af;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
}

.meta-value {
    color: #111827;
    font-size: 15px;
    font-weight: 800;
}

.meta-value-strong {
    color: #111c2d;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 9999px;
    background: var(--ds-warning-soft);
    color: var(--ds-warning-text);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border: 1px solid #fde68a;
}

.order-confirm-theme .section-label {
    color: #111827;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid #edf1f5;
    border-radius: 18px;
    padding: 16px 18px;
    background: #fafbfc;
}

.item-title {
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.item-meta {
    color: #9ca3af;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 6px;
}

.item-total {
    color: #111827;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 34px;
    border-radius: 18px;
    background: #111c2d;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    transition: all 0.2s ease;
    box-shadow: 0 14px 28px rgba(17, 28, 45, 0.18);
}

.primary-btn:hover {
    background: #1b2a41;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 34px;
    border-radius: 18px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    color: #111827;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    transition: all 0.2s ease;
}

.secondary-btn:hover {
    border-color: #111c2d;
    color: #111c2d;
    background: #f8fafc;
}

@media (max-width: 767px) {
    .confirm-title { font-size: 32px; }
    .order-confirm-theme .summary-card { padding: 22px; border-radius: 24px; }
    .order-item { align-items: flex-start; }
    .meta-value-strong { font-size: 20px; }
}

/* ==== THANK YOU PAGE END ==== */

/* ==== PROFILE EDIT PAGE START ==== */

.account-theme {
    --ds-success-soft: #ecfdf5;
    --ds-success-text: #15803d;
    --ds-danger-soft: #fef2f2;
    --ds-danger-text: #dc2626;
}

.account-shell {
    max-width: 1280px;
    margin: 0 auto;
}

.page-title {
    color: #111827;
    font-size: 36px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.page-kicker {
    color: #6b7280;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-top: 10px;
}

.account-theme .panel {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    box-shadow: 0 14px 34px rgba(15, 23, 36, 0.05);
}

.side-panel {
    position: sticky;
    top: 104px;
}

.avatar {
    width: 96px;
    height: 96px;
    border-radius: 9999px;
    background: linear-gradient(180deg, #eef2f7 0%, #e5ebf3 100%);
    color: #111c2d;
    border: 1px solid #dbe3ec;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.04em;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    transition: all 0.2s ease;
}

.nav-link-active {
    background: #111c2d;
    color: #fff;
    box-shadow: 0 12px 24px rgba(17, 28, 45, 0.16);
}

.nav-link-idle {
    color: #6b7280;
    background: transparent;
}

.nav-link-idle:hover {
    background: #f8fafc;
    color: #111c2d;
}

.section-title {
    color: #111827;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: #9ca3af !important;
    font-size: 9px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-top: 4px !important;
}

.status-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 1px solid;
}

.status-success {
    background: var(--ds-success-soft);
    color: var(--ds-success-text);
    border-color: #bbf7d0;
}

.field-label {
    display: block;
    color: #6b7280;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
}

.account-theme .field-input {
    display: block;
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #fbfcfd;
    color: #111827;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: all 0.2s ease;
}

.account-theme .field-input:focus {
    border-color: #cbd5e1;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.12);
}

.error-text {
    margin-top: 8px;
    color: var(--ds-danger-text);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 18px;
    background: #111c2d;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    transition: all 0.2s ease;
    box-shadow: 0 14px 28px rgba(17, 28, 45, 0.16);
}

.primary-btn:hover {
    background: #1b2a41;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 18px;
    background: #f3f4f6;
    color: #111827;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    transition: all 0.2s ease;
}

.secondary-btn:hover {
    background: #e5e7eb;
}

@media (max-width: 1023px) {
    .side-panel { position: static; }
    .page-title { font-size: 30px; }
}

@media (max-width: 767px) {
    .page-title { font-size: 26px; }
    .avatar { width: 82px; height: 82px; font-size: 32px; }
}

/* ==== PROFILE EDIT PAGE END ==== */

/* Auth Specific Fixes */
.remember-check {
    accent-color: #111c2d;
    cursor: pointer;
}

.auth-title {
    color: #111827;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-align: center;
}

.auth-kicker {
    color: #9ca3af;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    text-align: center;
    margin-top: 8px;
}