:root {
    --purple: #7c3aed;
    --pink: #ec4899;
    --orange: #f97316;
    --yellow: #facc15;
    --green: #22c55e;
    --blue: #2563eb;
    --dark: #111827;
    --text: #1f2937;
    --muted: #6b7280;
    --white: #ffffff;
    --soft: #fff7ed;
    --border: #f3e8ff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(236, 72, 153, .12), transparent 30%),
        radial-gradient(circle at top right, rgba(124, 58, 237, .14), transparent 35%),
        #fff7ed;
}

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

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.top-campaign {
    background: linear-gradient(90deg, var(--purple), var(--pink), var(--orange), var(--yellow));
    color: white;
    text-align: center;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 800;
}

.site-header {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
    color: var(--dark);
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(236, 72, 153, .15);
    box-shadow: 0 12px 30px rgba(124, 58, 237, .12);
}

.nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.brand-image {
    width: 74px;
    height: 74px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.brand strong {
    display: block;
    font-size: 19px;
    color: var(--dark);
}

.brand small {
    color: var(--pink);
    font-size: 12px;
    font-weight: 800;
}

.menu {
    display: flex;
    align-items: center;
    gap: 18px;
}

.menu a {
    color: var(--dark);
    font-size: 14px;
    font-weight: 800;
}

.menu a:hover {
    color: var(--pink);
}

.admin-link {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white !important;
    padding: 10px 15px;
    border-radius: 999px;
}

.cart-link {
    background: #111827;
    color: white !important;
    padding: 10px 15px;
    border-radius: 999px;
}

.cart-link span {
    background: var(--yellow);
    color: #111827;
    padding: 3px 8px;
    border-radius: 999px;
    margin-left: 5px;
}

.hero {
    position: relative;
    overflow: hidden;
    color: white;
    padding: 95px 0;
}

.hero-fancy {
    background:
        linear-gradient(135deg, #7c3aed 0%, #ec4899 45%, #f97316 100%);
}

.blob {
    position: absolute;
    border-radius: 999px;
    filter: blur(3px);
    opacity: .55;
}

.blob-1 {
    width: 280px;
    height: 280px;
    background: #facc15;
    top: -70px;
    right: 8%;
}

.blob-2 {
    width: 220px;
    height: 220px;
    background: #22c55e;
    bottom: -70px;
    left: 6%;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 38px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 10px 16px;
    background: rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.38);
    color: white;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.03;
    margin: 0 0 18px;
    text-shadow: 0 8px 28px rgba(0,0,0,.18);
}

.hero p {
    color: rgba(255,255,255,.92);
    font-size: 18px;
    line-height: 1.7;
    max-width: 760px;
}

.hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-sale-card {
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 34px;
    padding: 32px;
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 70px rgba(0,0,0,.2);
}

.sale-label {
    background: var(--yellow);
    color: #111827;
    padding: 8px 13px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 13px;
}

.hero-sale-card h3 {
    font-size: 30px;
    margin: 22px 0 10px;
}

.sale-price {
    margin-top: 20px;
    background: white;
    color: var(--pink);
    padding: 14px;
    border-radius: 18px;
    font-weight: 900;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    border-radius: 16px;
    padding: 13px 19px;
    font-weight: 900;
    transition: .2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--yellow);
    color: #111827;
    box-shadow: 0 14px 35px rgba(250, 204, 21, .35);
}

.btn-glow {
    background: white;
    color: var(--purple);
    box-shadow: 0 14px 35px rgba(255,255,255,.22);
}

.btn-secondary {
    background: #f3f4f6;
    color: #111827;
}

.btn-small {
    padding: 10px 14px;
    border-radius: 12px;
    background: #111827;
    color: white;
    font-size: 13px;
}

.btn-cart {
    background: linear-gradient(135deg, var(--pink), var(--orange));
    color: white;
    box-shadow: 0 12px 28px rgba(236, 72, 153, .28);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.btn-big {
    margin-right: 8px;
}

.btn-full {
    width: 100%;
    margin-top: 12px;
}

.category-strip {
    margin-top: -28px;
    position: relative;
    z-index: 3;
}

.strip-grid {
    background: white;
    border-radius: 24px;
    box-shadow: 0 18px 55px rgba(124, 58, 237, .18);
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.strip-grid div {
    background: linear-gradient(135deg, #fff7ed, #fdf2f8);
    padding: 14px;
    border-radius: 18px;
    text-align: center;
    font-weight: 900;
    color: #7c2d12;
}

.section {
    padding: 68px 0;
}

.section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 28px;
}

.mini-title {
    color: var(--pink);
    font-weight: 900;
}

.section-title h2 {
    font-size: 36px;
    margin: 6px 0 0;
    color: #111827;
}

.section-title a {
    color: var(--purple);
    font-weight: 900;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.product-card {
    position: relative;
    background: white;
    border: 1px solid rgba(236,72,153,.12);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(124, 58, 237, .12);
}

.fancy-card {
    transition: .25s;
}

.fancy-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(236, 72, 153, .22);
}

.ribbon {
    position: absolute;
    z-index: 4;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    color: #111827;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.product-image {
    height: 260px;
    background:
        radial-gradient(circle at top right, rgba(236,72,153,.22), transparent 35%),
        linear-gradient(135deg, #fdf2f8, #fff7ed);
    display: grid;
    place-items: center;
    color: var(--pink);
    font-size: 46px;
    font-weight: 900;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-body {
    padding: 21px;
}

.category {
    display: inline-block;
    background: #fdf2f8;
    color: var(--pink);
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px;
}

.product-body h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.product-price {
    font-size: 24px;
    font-weight: 900;
    color: var(--purple);
    margin: 0 0 18px;
}

.product-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.colorful-features {
    background:
        linear-gradient(135deg, #111827, #581c87);
    color: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-grid div {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    padding: 25px;
    border-radius: 24px;
}

.feature-grid p {
    color: rgba(255,255,255,.78);
}

.page-head {
    color: white;
    padding: 64px 0;
}

.fancy-page-head {
    background:
        radial-gradient(circle at right, rgba(250,204,21,.34), transparent 25%),
        linear-gradient(135deg, var(--purple), var(--pink), var(--orange));
}

.page-head h1 {
    font-size: 46px;
    margin: 12px 0 10px;
}

.page-head p {
    color: rgba(255,255,255,.9);
}

.category-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.category-bar a {
    background: white;
    border: 1px solid rgba(236,72,153,.14);
    padding: 11px 17px;
    border-radius: 999px;
    color: var(--dark);
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(124,58,237,.08);
}

.category-bar a.active {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: start;
}

.detail-image {
    min-height: 470px;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    display: grid;
    place-items: center;
    color: var(--pink);
    font-size: 70px;
    font-weight: 900;
    box-shadow: 0 18px 55px rgba(124,58,237,.15);
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info {
    background: white;
    border-radius: 32px;
    padding: 35px;
    box-shadow: 0 18px 55px rgba(236,72,153,.12);
}

.colorful-detail {
    border: 2px solid rgba(236,72,153,.12);
}

.detail-info h1 {
    font-size: 40px;
    margin: 14px 0;
}

.price {
    font-size: 34px;
    font-weight: 900;
    color: var(--purple);
    margin-bottom: 18px;
}

.detail-info p {
    color: var(--muted);
    line-height: 1.8;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 24px;
    align-items: start;
}

.cart-box,
.cart-summary {
    background: white;
    border-radius: 28px;
    box-shadow: 0 18px 55px rgba(124,58,237,.12);
    padding: 24px;
}

.cart-summary {
    position: sticky;
    top: 110px;
}

.cart-summary h2 {
    margin-top: 0;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f3e8ff;
    padding: 15px 0;
}

.summary-line.total {
    font-size: 22px;
    color: var(--purple);
}

.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f3e8ff;
}

.cart-item-img {
    width: 90px;
    height: 90px;
    background: #fdf2f8;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: var(--pink);
    font-weight: 900;
    overflow: hidden;
}

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

.cart-item-info h3 {
    margin: 0 0 6px;
}

.cart-item-info p {
    margin: 0;
    color: var(--purple);
    font-weight: 900;
}

.qty-box {
    display: flex;
    align-items: center;
    gap: 9px;
    background: #fff7ed;
    padding: 8px;
    border-radius: 999px;
}

.qty-box button {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: var(--pink);
    color: white;
    font-weight: 900;
    cursor: pointer;
}

.cart-item-total {
    text-align: right;
}

.cart-item-total button {
    margin-top: 6px;
    border: 0;
    background: #fee2e2;
    color: #991b1b;
    padding: 7px 10px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
}

.empty-cart,
.empty {
    background: white;
    border: 2px dashed #f9a8d4;
    border-radius: 24px;
    padding: 34px;
    text-align: center;
    color: var(--muted);
}

.contact-box,
.form-card,
.table-card,
.stat-card {
    background: white;
    border-radius: 26px;
    box-shadow: 0 18px 55px rgba(124,58,237,.12);
    padding: 30px;
}

.footer {
    background: #111827;
    color: white;
    padding: 36px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.footer p {
    color: #d1d5db;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 15px 20px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(34,197,94,.35);
    z-index: 30;
}

.toast {
    position: fixed;
    right: 22px;
    bottom: 86px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    padding: 14px 18px;
    border-radius: 18px;
    font-weight: 900;
    box-shadow: 0 18px 50px rgba(124,58,237,.28);
    transform: translateY(20px);
    opacity: 0;
    transition: .25s;
    z-index: 50;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.flash-area {
    margin-top: 20px;
}

.flash {
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 10px;
    font-weight: 700;
}

.flash-success {
    background: #dcfce7;
    color: #166534;
}

.flash-danger {
    background: #fee2e2;
    color: #991b1b;
}

.admin-login-body {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange));
    display: grid;
    place-items: center;
}

.login-card {
    width: min(430px, calc(100% - 32px));
    background: white;
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.login-logo {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 18px;
}

.login-card label,
.form-card label {
    display: block;
    margin: 14px 0 8px;
    font-weight: 900;
}

.login-card input,
.form-card input,
.form-card textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #f3e8ff;
    border-radius: 14px;
    outline: none;
}

.login-card button {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    font-weight: 900;
    cursor: pointer;
}

.admin-head {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
    padding: 36px 0;
}

.admin-head-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.stat-card span {
    color: var(--muted);
}

.stat-card strong {
    display: block;
    font-size: 38px;
    margin-top: 8px;
    color: var(--purple);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 16px;
    border-bottom: 1px solid #f3e8ff;
    text-align: left;
}

th {
    background: #fdf2f8;
}

.status {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.status.active {
    background: #dcfce7;
    color: #166534;
}

.status.passive {
    background: #fee2e2;
    color: #991b1b;
}

.current-image img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
}

.check-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.check-label input {
    width: auto;
}

@media (max-width: 900px) {
    .hero-inner,
    .product-grid,
    .feature-grid,
    .detail-grid,
    .cart-layout,
    .stats-grid,
    .strip-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        height: auto;
        padding: 16px 0;
        flex-direction: column;
        gap: 16px;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
    }

    .qty-box,
    .cart-item-total {
        grid-column: span 2;
        justify-content: flex-start;
        text-align: left;
    }

    .footer-inner,
    .admin-head-inner,
    .section-title {
        flex-direction: column;
        align-items: flex-start;
    }
}

.btn-buy {
    background: linear-gradient(135deg, #111827, #7c3aed);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(17, 24, 39, .28);
}

.btn-buy:hover {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.product-actions .btn-buy {
    flex: 1;
}

.product-actions .btn-cart {
    flex: 1;
}


/* =========================================================
   FULL MOBILE RESPONSIVE FIX
   ========================================================= */

.mobile-menu-btn {
    display: none;
    border: 0;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: #ffffff;
    font-size: 24px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 900;
}

img {
    max-width: 100%;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

@media (max-width: 1100px) {
    .container {
        width: min(100% - 28px, 980px);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strip-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .top-campaign {
        font-size: 12px;
        line-height: 1.5;
        padding: 9px 14px;
    }

    .site-header {
        position: sticky;
        top: 0;
    }

    .nav {
        height: auto;
        min-height: 78px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0;
        position: relative;
    }

    .brand {
        max-width: calc(100% - 60px);
        gap: 9px;
    }

    .brand-image {
        width: 56px;
        height: 56px;
        flex: 0 0 auto;
    }

    .brand strong {
        font-size: 16px;
        white-space: nowrap;
    }

    .brand small {
        font-size: 11px;
    }

    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .menu {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 78px;
        width: 100%;
        background: #ffffff;
        border: 1px solid rgba(236,72,153,.15);
        border-radius: 0 0 24px 24px;
        box-shadow: 0 18px 48px rgba(17,24,39,.18);
        padding: 14px;
        z-index: 99;
    }

    .menu.menu-open {
        display: grid;
        gap: 10px;
    }

    .menu a {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 13px 14px;
        border-radius: 14px;
        background: #fff7ed;
        color: #111827;
    }

    .cart-link {
        background: linear-gradient(135deg, var(--purple), var(--pink)) !important;
        color: #ffffff !important;
    }

    .hero {
        padding: 58px 0 72px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.08;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-sale-card {
        padding: 24px;
        border-radius: 26px;
    }

    .hero-sale-card h3 {
        font-size: 24px;
    }

    .category-strip {
        margin-top: -22px;
    }

    .strip-grid {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .section {
        padding: 46px 0;
    }

    .section-title {
        display: block;
        margin-bottom: 22px;
    }

    .section-title h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-card {
        border-radius: 24px;
    }

    .product-image {
        height: 230px;
    }

    .product-body {
        padding: 18px;
    }

    .product-body h3 {
        font-size: 19px;
    }

    .product-price {
        font-size: 22px;
    }

    .product-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .product-actions .btn {
        width: 100%;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .page-head {
        padding: 44px 0;
    }

    .page-head h1 {
        font-size: 32px;
        line-height: 1.15;
    }

    .page-head p {
        font-size: 15px;
    }

    .category-bar {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .category-bar a {
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .detail-image {
        min-height: 300px;
        border-radius: 24px;
    }

    .detail-info {
        padding: 24px;
        border-radius: 24px;
    }

    .detail-info h1 {
        font-size: 30px;
    }

    .price {
        font-size: 28px;
    }

    .detail-info .btn {
        width: 100%;
        margin: 6px 0;
    }

    .cart-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cart-summary {
        position: static;
        order: -1;
    }

    .cart-item {
        grid-template-columns: 76px 1fr;
        gap: 12px;
        align-items: start;
        padding: 14px 0;
    }

    .cart-item-img {
        width: 76px;
        height: 76px;
        border-radius: 16px;
    }

    .cart-item-info h3 {
        font-size: 16px;
    }

    .qty-box {
        grid-column: 1 / -1;
        width: fit-content;
        margin-left: 88px;
    }

    .cart-item-total {
        grid-column: 1 / -1;
        text-align: left;
        margin-left: 88px;
    }

    .summary-line.total {
        font-size: 20px;
    }

    .footer {
        padding-bottom: 86px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 13px 16px;
        font-size: 14px;
    }

    .toast {
        left: 14px;
        right: 14px;
        bottom: 78px;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .container {
        width: calc(100% - 22px);
    }

    .brand-image {
        width: 50px;
        height: 50px;
    }

    .brand strong {
        font-size: 15px;
    }

    .brand small {
        font-size: 10px;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .menu {
        top: 72px;
    }

    .hero h1 {
        font-size: 31px;
    }

    .hero p {
        font-size: 14px;
    }

    .badge {
        font-size: 12px;
        padding: 8px 12px;
    }

    .product-image {
        height: 210px;
    }

    .page-head h1 {
        font-size: 29px;
    }

    .detail-image {
        min-height: 260px;
    }

    .cart-box,
    .cart-summary {
        padding: 18px;
        border-radius: 22px;
    }
}

/* Customer auth and account */
.auth-customer-wrap {
    display: flex;
    justify-content: center;
}

.customer-auth-card {
    width: min(100%, 520px);
    background: #ffffff;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .10);
    border: 1px solid rgba(236, 72, 153, .12);
}

.customer-auth-card h2 {
    margin: 0 0 8px;
}

.customer-auth-card p {
    color: #6b7280;
    margin-bottom: 22px;
}

.customer-auth-card label {
    display: block;
    font-weight: 900;
    margin: 14px 0 8px;
}

.customer-auth-card input {
    width: 100%;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 15px;
    padding: 14px;
    outline: none;
}

.customer-auth-card input:focus {
    background: #ffffff;
    border-color: #ec4899;
    box-shadow: 0 0 0 4px rgba(236, 72, 153, .08);
}

.auth-alt {
    margin-top: 18px;
    text-align: center;
    color: #6b7280;
    font-weight: 700;
}

.auth-alt a {
    color: #ec4899;
    font-weight: 900;
}

.social-login-box {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.social-btn {
    width: 100%;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    border-radius: 15px;
    padding: 13px;
    font-weight: 900;
}

.social-btn.disabled {
    opacity: .55;
    cursor: not-allowed;
}

.account-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.account-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .10);
    border: 1px solid rgba(236, 72, 153, .12);
}

.account-line,
.mini-cart-line {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 0;
}

.account-line span,
.mini-cart-line span {
    color: #6b7280;
    font-weight: 800;
}

.btn-full {
    width: 100%;
    margin-top: 14px;
}

.qty-box a {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    font-weight: 900;
    color: #111827;
}

.cart-item-total a {
    display: inline-flex;
    margin-top: 8px;
    color: #dc2626;
    font-weight: 900;
}

@media (max-width: 768px) {
    .account-grid {
        grid-template-columns: 1fr;
    }

    .customer-auth-card,
    .account-card {
        padding: 22px;
        border-radius: 22px;
    }
}


/* =========================================================
   CUSTOMER LOGIN / REGISTER PROFESSIONAL FIX
   ========================================================= */

.auth-customer-wrap {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
}

.customer-auth-card {
    width: min(100%, 560px) !important;
    background: #ffffff !important;
    border-radius: 30px !important;
    padding: 36px !important;
    box-shadow: 0 22px 70px rgba(15, 23, 42, .13) !important;
    border: 1px solid rgba(236, 72, 153, .14) !important;
}

.customer-auth-card form {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100% !important;
}

.customer-auth-card label {
    display: block !important;
    width: 100% !important;
    font-weight: 900 !important;
    color: #111827 !important;
    margin: 2px 0 0 !important;
}

.customer-auth-card input {
    display: block !important;
    width: 100% !important;
    min-height: 50px !important;
    border: 1px solid #e5e7eb !important;
    background: #f9fafb !important;
    border-radius: 16px !important;
    padding: 14px 16px !important;
    font-size: 15px !important;
    outline: none !important;
}

.customer-auth-card input:focus {
    background: #ffffff !important;
    border-color: #ec4899 !important;
    box-shadow: 0 0 0 4px rgba(236, 72, 153, .10) !important;
}

.customer-auth-card .btn,
.customer-auth-card button {
    width: 100% !important;
    min-height: 52px !important;
    border-radius: 999px !important;
    margin-top: 8px !important;
}

.customer-auth-card h2 {
    font-size: 28px !important;
    margin-bottom: 8px !important;
}

.customer-auth-card p {
    color: #6b7280 !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
}

.auth-alt {
    margin-top: 20px !important;
    text-align: center !important;
    color: #6b7280 !important;
    font-weight: 700 !important;
}

.auth-alt a {
    color: #ec4899 !important;
    font-weight: 900 !important;
}

@media (max-width: 768px) {
    .customer-auth-card {
        padding: 24px !important;
        border-radius: 24px !important;
    }
}

/* Checkout and orders */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 24px;
    align-items: start;
}

.checkout-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .10);
    border: 1px solid rgba(236, 72, 153, .12);
}

.checkout-card h2 {
    margin: 0 0 8px;
}

.checkout-card p {
    color: #6b7280;
    line-height: 1.6;
}

.checkout-card label {
    display: block;
    font-weight: 900;
    margin: 15px 0 8px;
}

.checkout-card input,
.checkout-card textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 15px;
    padding: 14px;
    outline: none;
    font-size: 15px;
}

.checkout-card input:focus,
.checkout-card textarea:focus {
    background: #ffffff;
    border-color: #ec4899;
    box-shadow: 0 0 0 4px rgba(236, 72, 153, .08);
}

.checkout-line {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
}

.checkout-line span {
    display: block;
    margin-top: 5px;
    color: #6b7280;
    font-size: 13px;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 2px solid #f1f5f9;
    font-size: 22px;
}

.customer-orders-list {
    display: grid;
    gap: 16px;
}

.customer-order-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 22px;
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 18px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .08);
    border: 1px solid rgba(236, 72, 153, .12);
}

.customer-order-card span {
    display: block;
    color: #6b7280;
    font-weight: 800;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-card {
        padding: 22px;
        border-radius: 22px;
    }

    .customer-order-card {
        grid-template-columns: 1fr;
    }
}

/* Checkout */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 24px;
    align-items: start;
}

.checkout-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .10);
    border: 1px solid rgba(236, 72, 153, .12);
}

.checkout-card h2 {
    margin: 0 0 8px;
}

.checkout-card p {
    color: #6b7280;
    line-height: 1.6;
}

.checkout-card label {
    display: block;
    font-weight: 900;
    margin: 15px 0 8px;
}

.checkout-card input,
.checkout-card textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 15px;
    padding: 14px;
    outline: none;
    font-size: 15px;
}

.checkout-card input:focus,
.checkout-card textarea:focus {
    background: #ffffff;
    border-color: #ec4899;
    box-shadow: 0 0 0 4px rgba(236, 72, 153, .08);
}

.checkout-line {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
}

.checkout-line span {
    display: block;
    margin-top: 5px;
    color: #6b7280;
    font-size: 13px;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 2px solid #f1f5f9;
    font-size: 22px;
}

@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-card {
        padding: 22px;
        border-radius: 22px;
    }
}

/* Order status badges */
.order-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .2px;
    white-space: nowrap;
    border: 1px solid transparent;
}

.status-new {
    background: #dcfce7;
    color: #166534;
    border-color: #86efac;
}

.status-preparing {
    background: #fef3c7;
    color: #92400e;
    border-color: #fcd34d;
}

.status-cargo {
    background: #dbeafe;
    color: #1e40af;
    border-color: #93c5fd;
}

.status-completed {
    background: #ede9fe;
    color: #5b21b6;
    border-color: #c4b5fd;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
    border-color: #fca5a5;
}

/* Checkout city/district select */
.checkout-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.checkout-card select {
    width: 100%;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 15px;
    padding: 14px;
    outline: none;
    font-size: 15px;
    min-height: 50px;
}

.checkout-card select:focus {
    background: #ffffff;
    border-color: #ec4899;
    box-shadow: 0 0 0 4px rgba(236, 72, 153, .08);
}

.checkout-card select:disabled {
    opacity: .65;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .checkout-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Personalization + checkout approvals */
.personalization-box,
.checkout-approval-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .08);
    border: 1px solid rgba(236, 72, 153, .12);
}

.personalization-box label,
.checkout-approval-box label {
    display: block;
    font-weight: 900;
    margin: 12px 0;
}

.personalization-box textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 15px;
    padding: 14px;
    outline: none;
}

.checkout-approval-box {
    margin: 18px 0;
}

.checkout-approval-box input {
    width: auto !important;
    margin-right: 8px;
}

/* =========================================================
   PROFESSIONAL HOME PAGE DESIGN
   ========================================================= */

.home-hero-pro {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 15% 20%, rgba(236, 72, 153, .24), transparent 32%),
        radial-gradient(circle at 85% 15%, rgba(249, 115, 22, .22), transparent 30%),
        linear-gradient(135deg, #12091f 0%, #32104f 42%, #111827 100%);
    color: #ffffff;
    padding: 90px 0;
}

.hero-blur {
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    opacity: .65;
}

.hero-blur-one {
    width: 240px;
    height: 240px;
    background: #ec4899;
    left: -80px;
    top: 90px;
}

.hero-blur-two {
    width: 280px;
    height: 280px;
    background: #f97316;
    right: -90px;
    bottom: 80px;
}

.hero-pro-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 56px;
    align-items: center;
}

.hero-mini-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff7ed;
    font-weight: 900;
    letter-spacing: .2px;
    margin-bottom: 22px;
}

.hero-pro-content h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .98;
    letter-spacing: -2.4px;
    font-weight: 950;
}

.hero-pro-content h1 span {
    display: block;
    background: linear-gradient(90deg, #f9a8d4, #fed7aa, #fde68a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-pro-content p {
    max-width: 670px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.8;
}

.hero-pro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-primary-btn {
    background: linear-gradient(135deg, #ec4899, #f97316);
    color: #ffffff !important;
    border: 0;
    border-radius: 999px;
    padding: 15px 24px;
    box-shadow: 0 18px 38px rgba(236, 72, 153, .32);
    font-weight: 950;
}

.hero-secondary-btn {
    background: rgba(255, 255, 255, .12);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    padding: 15px 24px;
    font-weight: 950;
}

.hero-trust-row {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 18px;
    margin-top: 36px;
}

.hero-trust-row div {
    min-width: 126px;
    padding: 15px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
}

.hero-trust-row strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
}

.hero-trust-row span {
    display: block;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    margin-top: 4px;
    font-weight: 800;
}

.hero-pro-showcase {
    position: relative;
    min-height: 470px;
}

.showcase-card {
    position: relative;
    border-radius: 38px;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .24);
    backdrop-filter: blur(18px);
    box-shadow: 0 34px 80px rgba(0, 0, 0, .30);
}

.main-showcase {
    padding: 38px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: rotate(2deg);
}

.showcase-logo-wrap {
    width: 220px;
    height: 220px;
    margin: 0 auto 24px;
    border-radius: 42px;
    background: rgba(255, 255, 255, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 26px 60px rgba(0,0,0,.25);
    overflow: hidden;
}

.showcase-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
}

.main-showcase h2 {
    text-align: center;
    margin: 0;
    font-size: 32px;
}

.main-showcase p {
    text-align: center;
    color: rgba(255,255,255,.78);
    line-height: 1.7;
    margin-bottom: 0;
}

.floating-mini-card {
    position: absolute;
    background: #ffffff;
    color: #111827;
    border-radius: 22px;
    padding: 16px 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.22);
    min-width: 150px;
}

.floating-mini-card span {
    display: block;
    color: #ec4899;
    font-size: 12px;
    font-weight: 950;
    margin-bottom: 4px;
}

.floating-mini-card strong {
    display: block;
    font-weight: 950;
}

.card-one {
    left: -20px;
    top: 70px;
}

.card-two {
    right: -12px;
    bottom: 60px;
}

.home-feature-strip {
    margin-top: -48px;
    position: relative;
    z-index: 3;
}

.feature-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-pill {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .10);
    border: 1px solid rgba(236, 72, 153, .12);
}

.feature-pill > span {
    width: 48px;
    height: 48px;
    border-radius: 17px;
    background: linear-gradient(135deg, #fdf2f8, #fff7ed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-pill strong {
    display: block;
    color: #111827;
    font-weight: 950;
}

.feature-pill p {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.products-showcase-section {
    padding-top: 90px;
}

.section-head-pro {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 28px;
}

.section-head-pro h2 {
    margin: 10px 0 8px;
    font-size: clamp(30px, 4vw, 46px);
    color: #111827;
    letter-spacing: -1.2px;
}

.section-head-pro p {
    margin: 0;
    color: #64748b;
    font-weight: 700;
}

.view-all-link {
    white-space: nowrap;
    color: #ec4899;
    font-weight: 950;
    text-decoration: none;
}

.home-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card-pro {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(15, 23, 42, .10);
    border: 1px solid rgba(236, 72, 153, .10);
    transition: .25s ease;
}

.product-card-pro:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 75px rgba(15, 23, 42, .15);
}

.product-image-pro {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #fdf2f8, #fff7ed);
    overflow: hidden;
}

.product-image-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image-pro {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
    font-weight: 950;
    color: #ec4899;
}

.product-tag-pro,
.product-stock-tag {
    position: absolute;
    top: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    box-shadow: 0 10px 22px rgba(0,0,0,.12);
}

.product-tag-pro {
    left: 14px;
    background: #ec4899;
    color: white;
}

.product-stock-tag {
    right: 14px;
}

.product-stock-tag.ok {
    background: #dcfce7;
    color: #166534;
}

.product-stock-tag.low {
    background: #fef3c7;
    color: #92400e;
}

.product-stock-tag.out {
    background: #fee2e2;
    color: #991b1b;
}

.product-body-pro {
    padding: 22px;
}

.product-category-pro {
    display: inline-flex;
    background: #f8fafc;
    color: #64748b;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}

.product-body-pro h3 {
    margin: 0;
    color: #111827;
    font-size: 21px;
}

.product-body-pro p {
    min-height: 54px;
    color: #64748b;
    line-height: 1.6;
    font-weight: 700;
}

.product-bottom-pro {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-bottom-pro > strong {
    font-size: 24px;
    color: #ec4899;
    font-weight: 950;
}

.product-actions-pro {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 10px;
}

.detail-btn-pro,
.cart-btn-pro {
    min-height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 950;
    border: 0;
    cursor: pointer;
}

.detail-btn-pro {
    background: #f1f5f9;
    color: #111827;
}

.cart-btn-pro {
    background: linear-gradient(135deg, #ec4899, #f97316);
    color: #ffffff;
}

.cart-btn-pro.disabled {
    background: #e5e7eb;
    color: #64748b;
    cursor: not-allowed;
}

.empty-home-products {
    grid-column: 1 / -1;
    background: #ffffff;
    border-radius: 28px;
    padding: 38px;
    text-align: center;
    box-shadow: 0 18px 55px rgba(15, 23, 42, .10);
}

.home-cta-pro {
    padding: 70px 0;
}

.cta-pro-inner {
    background:
        radial-gradient(circle at 15% 20%, rgba(236, 72, 153, .26), transparent 30%),
        linear-gradient(135deg, #111827, #4c1d95);
    color: #ffffff;
    border-radius: 36px;
    padding: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    overflow: hidden;
}

.cta-pro-inner h2 {
    margin: 10px 0;
    font-size: clamp(28px, 4vw, 44px);
}

.cta-pro-inner p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-weight: 700;
}

@media (max-width: 1050px) {
    .hero-pro-grid,
    .home-products-grid,
    .feature-strip-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-pro-showcase {
        min-height: 390px;
    }
}

@media (max-width: 760px) {
    .home-hero-pro {
        padding: 70px 0 90px;
        min-height: auto;
    }

    .hero-pro-grid,
    .home-products-grid,
    .feature-strip-grid {
        grid-template-columns: 1fr;
    }

    .hero-pro-content h1 {
        letter-spacing: -1.4px;
    }

    .hero-trust-row {
        grid-template-columns: 1fr;
    }

    .main-showcase {
        min-height: auto;
        transform: none;
    }

    .floating-mini-card {
        position: static;
        margin-top: 12px;
    }

    .section-head-pro,
    .cta-pro-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-image-pro {
        height: 230px;
    }

    .home-feature-strip {
        margin-top: -36px;
    }
}

/* =========================================================
   PROFESSIONAL TOP NAVIGATION
   ========================================================= */

.site-header-pro {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, .85);
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
}

.nav-pro-wrap {
    min-height: 78px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
}

.brand-pro {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #111827;
}

.brand-pro img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .10);
}

.brand-pro strong {
    display: block;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -.3px;
}

.brand-pro span {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: #64748b;
    font-weight: 800;
}

.main-nav-pro {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.main-nav-pro a {
    text-decoration: none;
    color: #334155;
    font-weight: 900;
    padding: 11px 14px;
    border-radius: 999px;
    transition: .2s ease;
}

.main-nav-pro a:hover {
    background: #fdf2f8;
    color: #ec4899;
}

.nav-actions-pro {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.cart-link-pro,
.nav-login-btn,
.nav-register-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 950;
    white-space: nowrap;
    transition: .2s ease;
}

.cart-link-pro {
    gap: 8px;
    padding: 10px 14px;
    color: #111827;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.cart-link-pro span {
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: #ec4899;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.nav-login-btn {
    padding: 10px 16px;
    color: #ec4899;
    background: #fdf2f8;
    border: 1px solid rgba(236, 72, 153, .18);
}

.nav-register-btn {
    padding: 10px 18px;
    color: #ffffff;
    background: linear-gradient(135deg, #ec4899, #f97316);
    box-shadow: 0 12px 28px rgba(236, 72, 153, .22);
}

.cart-link-pro:hover,
.nav-login-btn:hover,
.nav-register-btn:hover {
    transform: translateY(-1px);
}

@media (max-width: 980px) {
    .nav-pro-wrap {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .main-nav-pro {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .nav-actions-pro {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }
}

@media (max-width: 560px) {
    .brand-pro img {
        width: 46px;
        height: 46px;
    }

    .brand-pro strong {
        font-size: 16px;
    }

    .main-nav-pro a,
    .cart-link-pro,
    .nav-login-btn,
    .nav-register-btn {
        font-size: 13px;
        min-height: 38px;
        padding: 9px 12px;
    }
}

/* Contact clean page */
.contact-clean-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-clean-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 18px 55px rgba(15, 23, 42, .10);
    border: 1px solid rgba(236, 72, 153, .12);
}

.contact-clean-card h2 {
    color: #111827;
    margin: 12px 0 10px;
    font-size: 28px;
}

.contact-clean-card p {
    color: #64748b;
    line-height: 1.7;
    font-weight: 700;
}

.contact-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fdf2f8, #fff7ed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.contact-mail-link {
    display: inline-flex;
    margin-top: 14px;
    color: #ec4899;
    font-size: 20px;
    font-weight: 950;
    text-decoration: none;
}

.contact-mail-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-clean-grid {
        grid-template-columns: 1fr;
    }

    .contact-clean-card {
        padding: 24px;
        border-radius: 24px;
    }

    .contact-mail-link {
        font-size: 17px;
        word-break: break-word;
    }
}


/* =========================================================
   PRODUCT CARD READABILITY FINAL FIX
   ========================================================= */

.product-card,
.product-card-pro {
    background: #ffffff !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    box-shadow: 0 18px 55px rgba(15, 23, 42, .10) !important;
    border: 1px solid rgba(226, 232, 240, .9) !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
}

.product-image,
.product-image-pro {
    position: relative !important;
    width: 100% !important;
    height: 310px !important;
    background: #f8fafc !important;
    overflow: hidden !important;
    flex: 0 0 auto !important;
}

.product-image img,
.product-image-pro img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.product-body,
.product-body-pro,
.product-info,
.product-content {
    position: relative !important;
    background: #ffffff !important;
    padding: 22px !important;
    color: #111827 !important;
    z-index: 2 !important;
    min-height: auto !important;
    height: auto !important;
}

.product-body h3,
.product-body-pro h3,
.product-info h3,
.product-content h3,
.product-title {
    color: #111827 !important;
    font-size: 20px !important;
    line-height: 1.3 !important;
    font-weight: 950 !important;
    margin: 8px 0 10px !important;
    text-shadow: none !important;
}

.product-body p,
.product-body-pro p,
.product-info p,
.product-content p,
.product-desc {
    color: #64748b !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    font-weight: 700 !important;
    margin: 0 0 14px !important;
    text-shadow: none !important;
}

.product-category,
.product-category-pro {
    display: inline-flex !important;
    background: #fdf2f8 !important;
    color: #db2777 !important;
    padding: 7px 12px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    margin-bottom: 8px !important;
}

.product-price,
.product-bottom-pro > strong,
.product-body strong,
.product-body-pro strong {
    color: #7c3aed !important;
    font-size: 26px !important;
    font-weight: 950 !important;
    line-height: 1.2 !important;
    text-shadow: none !important;
}

.product-bottom,
.product-bottom-pro {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    margin-top: 12px !important;
}

.product-actions,
.product-actions-pro {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
}

.product-actions a,
.product-actions button,
.product-actions-pro a,
.product-actions-pro button,
.detail-btn-pro,
.cart-btn-pro,
.buy-btn,
.cart-btn {
    min-height: 52px !important;
    border-radius: 15px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 14px !important;
    font-weight: 950 !important;
    line-height: 1.25 !important;
    text-decoration: none !important;
    border: 0 !important;
    padding: 10px 12px !important;
    white-space: normal !important;
}

.detail-btn-pro,
.product-actions a:first-child {
    background: #111827 !important;
    color: #ffffff !important;
}

.cart-btn-pro,
.product-actions a:nth-child(2) {
    background: linear-gradient(135deg, #ec4899, #f97316) !important;
    color: #ffffff !important;
}

.product-actions a:nth-child(3),
.buy-btn {
    background: linear-gradient(135deg, #312e81, #7c3aed) !important;
    color: #ffffff !important;
}

.cart-btn-pro.disabled,
.product-actions button:disabled,
.product-actions-pro button:disabled {
    background: #e5e7eb !important;
    color: #64748b !important;
    cursor: not-allowed !important;
}

.product-tag,
.product-tag-pro,
.product-stock-tag {
    z-index: 4 !important;
}

/* Görsel üzerine yazı binmesini engelle */
.product-card * {
    text-shadow: none !important;
}

.product-card .product-body,
.product-card-pro .product-body-pro {
    transform: none !important;
    margin-top: 0 !important;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .product-image,
    .product-image-pro {
        height: 260px !important;
    }

    .product-actions,
    .product-actions-pro {
        grid-template-columns: 1fr !important;
    }

    .product-actions a,
    .product-actions button,
    .product-actions-pro a,
    .product-actions-pro button {
        width: 100% !important;
    }

    .product-body,
    .product-body-pro,
    .product-info,
    .product-content {
        padding: 18px !important;
    }

    .product-price,
    .product-bottom-pro > strong {
        font-size: 24px !important;
    }
}
