/* 
 * TDK Menu 3D — NEW MINIMALIST DESIGN SYSTEM
 * Palette: Black (#050510), White (#FFFFFF), Blue (#7CD4DE)
 */

 :root {
    --tdk-bg: #0d0d0d;
    --tdk-card: #0d0d0d;
    --tdk-accent: #7cd4de;
    --tdk-white: #ffffff;
    --tdk-text-dim: #a0a0b0;
    --tdk-glass: rgba(255, 255, 255, 0.03);
    --tdk-border: rgba(255, 255, 255, 0.08);
    --tdk-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --tdk-radius-lg: 24px;
    --tdk-radius-md: 16px;
    --tdk-font: 'Outfit', 'Inter', sans-serif;
}

body {
    background-color: #0d0d0d;
    margin: 0;
    padding: 0;
}

.tdk-menu-3d-wrap {
    background: #0d0d0d;
    color: var(--tdk-white);
    font-family: var(--tdk-font);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    padding-bottom: 100px;
}

.tdk-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ======= HERO ======= */
.tdk-hero-minimal {
    padding: 80px 0 40px;
    text-align: center;
    background: transparent;
}

.tdk-main-title {
    font-size: clamp(60px, 12vw, 140px);
    font-weight: 900;
    margin: 0;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: var(--tdk-white);
}

.tdk-hero-subtitle {
    font-size: 18px;
    color: var(--tdk-accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 20px;
}

.tdk-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.tdk-hero-stat-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--tdk-white);
}

.tdk-hero-stat-label {
    font-size: 12px;
    color: var(--tdk-text-dim);
    letter-spacing: 0.1em;
}

/* ======= BANNERS ======= */
.tdk-banners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 40px 0;
}

.tdk-banner-card {
    height: 300px;
    border-radius: var(--tdk-radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--tdk-border);
    transition: transform 0.4s ease;
}

.tdk-banner-card:hover {
    transform: translateY(-5px);
}

.tdk-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    filter: brightness(0.6);
}

.tdk-banner-card:hover .tdk-banner-bg {
    transform: scale(1.05);
}

.tdk-banner-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tdk-banner-sub {
    color: var(--tdk-accent);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tdk-banner-title {
    font-size: 36px;
    font-weight: 800;
    margin: 5px 0;
    color: var(--tdk-white);
}

.tdk-banner-title span {
    display: block;
    -webkit-text-stroke: 1px var(--tdk-white);
    color: transparent;
}

/* ======= SEARCH BAR ======= */
.tdk-search-bar-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--tdk-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--tdk-border);
    padding: 12px 24px;
    border-radius: var(--tdk-radius-lg);
    margin: 40px 0;
}

.tdk-search-input-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.tdk-icon-search {
    width: 20px;
    color: var(--tdk-accent);
}

#tdkSearchInput {
    background: transparent;
    border: none;
    color: var(--tdk-white);
    font-size: 16px;
    width: 100%;
    outline: none;
}

.tdk-filter-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tdk-select-wrapper select {
    background: transparent;
    border: none;
    color: var(--tdk-white);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    outline: none;
}

.tdk-count-badge {
    background: var(--tdk-accent);
    color: var(--tdk-bg);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
}

/* ======= CATEGORIES (MODERN CIRCLE STYLE) ======= */
.tdk-categories-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0 15px;
    scrollbar-width: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    user-select: none;
}

.tdk-categories-scroll:active { cursor: grabbing; }
.tdk-categories-scroll::-webkit-scrollbar { display: none; }

.tdk-cat-item {
    flex: 0 0 auto;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tdk-cat-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    padding: 4px;
    border: 2px solid transparent;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
    background: var(--tdk-black, #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tdk-cat-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.tdk-cat-logo {
    width: 70% !important;
    height: auto !important;
    border-radius: 0 !important;
    object-fit: contain !important;
}

.tdk-cat-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.tdk-cat-svg svg {
    width: 100%;
    height: 100%;
}

.tdk-cat-icon-img,
.tdk-cat-icon-color {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    display: block !important;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .tdk-cat-icon-img,
    .tdk-cat-icon-color {
        width: 45px !important;
        height: 45px !important;
    }
}

.tdk-cat-item:hover .tdk-cat-circle,
.tdk-cat-item.active .tdk-cat-circle {
    border-color: var(--tdk-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(124, 212, 222, 0.2);
}

.tdk-cat-name {
    font-size: 10px;
    font-weight: 700;
    color: var(--tdk-text-dim);
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100px;
    line-height: 1.3;
    margin: 0 auto;
    text-align: center;
}

.tdk-cat-item:hover .tdk-cat-name,
.tdk-cat-item.active .tdk-cat-name {
    color: var(--tdk-white);
}

/* ======= PRODUCTS GRID ======= */
.tdk-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.tdk-product-card {
    background: var(--tdk-card);
    border-radius: var(--tdk-radius-md);
    overflow: hidden;
    border: 1px solid var(--tdk-border);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.tdk-product-card:hover {
    transform: translateY(-10px);
    border-color: var(--tdk-accent);
    box-shadow: var(--tdk-shadow);
}

.tdk-product-image {
    height: 240px;
    overflow: hidden;
}

.tdk-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tdk-product-card:hover .tdk-product-image img {
    transform: scale(1.1);
}

.tdk-product-info {
    padding: 24px;
}

.tdk-product-cat {
    color: var(--tdk-accent);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tdk-product-name {
    font-size: 18px;
    font-weight: 700;
    margin: 8px 0;
    color: var(--tdk-white);
}

.tdk-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.tdk-product-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--tdk-white);
}

.tdk-btn-add {
    background: var(--tdk-white);
    color: var(--tdk-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tdk-btn-add:hover {
    background: var(--tdk-accent);
}

/* ======= MODAL SYSTEM ======= */
.tdk-modal-system {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: flex-start; /* Changed to allow scrolling when taller than screen */
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.tdk-modal-system.active { display: flex; }

.tdk-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.tdk-modal-window {
    position: relative;
    background: var(--tdk-bg);
    border: 1px solid var(--tdk-border);
    border-radius: var(--tdk-radius-lg);
    width: 100%;
    max-width: 1000px;
    margin: auto; /* Vertically center if smaller than viewport */
    z-index: 2;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.8);
}

.tdk-menu-3d-wrap button.tdk-modal-close-btn,
#tdkProductModalClose,
#tdkCheckoutClose {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    padding: 8px !important;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.tdk-menu-3d-wrap button.tdk-modal-close-btn:hover,
#tdkProductModalClose:hover,
#tdkCheckoutClose:hover {
    opacity: 1;
    background: transparent !important;
    background-color: transparent !important;
}

.tdk-modal-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.tdk-modal-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.tdk-modal-details {
    padding: 50px;
}

.tdk-modal-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
}

.tdk-modal-price-wrap {
    font-size: 24px;
    font-weight: 800;
    color: var(--tdk-white); /* White as requested */
    margin-top: 10px;
}

.tdk-modal-description {
    color: var(--tdk-text-dim);
    margin: 20px 0;
    font-size: 15px;
}

.tdk-variations-container {
    margin: 30px 0;
}

.tdk-variation-group label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    color: var(--tdk-text-dim);
}

.tdk-variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tdk-var-opt {
    padding: 10px 20px;
    border: 1px solid var(--tdk-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tdk-var-opt.active {
    background: var(--tdk-white);
    color: var(--tdk-bg);
    border-color: var(--tdk-white);
}

.tdk-qty-control {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 4px 8px;
    gap: 0;
}

.tdk-qty-btn {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    border: none !important;
    background: transparent !important;
    color: var(--tdk-white) !important;
    font-size: 20px !important;
    cursor: pointer;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.tdk-qty-btn:hover {
    background: rgba(255,255,255,0.1) !important;
}

.tdk-qty-control input {
    width: 36px;
    text-align: center;
    background: transparent !important;
    border: none !important;
    color: var(--tdk-white) !important;
    font-weight: 700;
    font-size: 16px;
    padding: 0 !important;
    -moz-appearance: textfield;
}

.tdk-qty-control input::-webkit-outer-spin-button,
.tdk-qty-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.tdk-btn-add-cart {
    flex: 1;
    background: var(--tdk-accent);
    color: var(--tdk-bg);
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tdk-btn-add-cart:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(124, 212, 222, 0.3);
}

/* ======= FLOATING BAR ======= */
.tdk-floating-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
}

.tdk-float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    background: rgba(0,0,0,0.4) !important;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.tdk-float-btn:hover {
    transform: scale(1.1);
    background: rgba(0,0,0,0.6) !important;
}

.tdk-float-btn.cart {
    background: rgba(0,0,0,0.4) !important;
    color: var(--tdk-white) !important;
}

.tdk-float-btn.cart svg {
    stroke: var(--tdk-white);
}

.tdk-float-btn.top {
    background: rgba(0,0,0,0.4) !important;
    color: var(--tdk-white) !important;
    opacity: 0;
    pointer-events: none;
    display: flex;
    transition: all 0.4s ease;
}

.tdk-float-btn.top.active {
    opacity: 1;
    pointer-events: auto;
}

.tdk-float-btn.top svg {
    stroke: var(--tdk-white);
}

#tdkCartCount {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--tdk-accent);
    color: var(--tdk-bg);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ======= MOBILE RESPONSIVE ======= */
/* ======= REVEAL ANIMATIONS ======= */
.tdk-reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.tdk-reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ======= SKELETON LOADING ======= */
.tdk-product-skeleton {
    background: var(--tdk-card);
    border-radius: var(--tdk-radius-md);
    padding: 24px;
    border: 1px solid var(--tdk-border);
    height: 380px;
}

.tdk-skel-img {
    height: 200px;
    background: var(--tdk-glass);
    border-radius: var(--tdk-radius-md);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.tdk-skel-line {
    height: 15px;
    background: var(--tdk-glass);
    border-radius: 4px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.tdk-skel-line.w60 { width: 60%; }

.tdk-skel-img::after, .tdk-skel-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: tdk-shimmer 1.5s infinite;
}

@keyframes tdk-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ======= TOAST NOTIFICATION ======= */
.tdk-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translate(-50%, 20px);
    background: var(--tdk-white);
    color: var(--tdk-bg);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    z-index: 11000;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.tdk-toast.active {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* ======= CHECKOUT MODAL ======= */
.checkout-window {
    max-width: 650px;
}

.checkout-body {
    display: block;
}

.tdk-checkout-content {
    padding: 40px;
    width: 100%;
}

@media (max-width: 768px) {
    .checkout-window {
        border-radius: 16px !important;
        margin: 8px auto;
    }
    .tdk-checkout-content { padding: 24px 20px; }
    .tdk-form-grid { grid-template-columns: 1fr !important; }
    .tdk-form-item.full { grid-column: span 1; }
}

.tdk-checkout-content h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

.tdk-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tdk-form-item.full {
    grid-column: span 2;
}

.tdk-form-item label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--tdk-text-dim);
}

.tdk-form-item input,
.tdk-form-item select,
.tdk-form-item textarea {
    width: 100%;
    background: var(--tdk-glass);
    border: 1px solid var(--tdk-border);
    padding: 12px;
    border-radius: 8px;
    color: var(--tdk-white);
    outline: none;
    font-family: inherit;
}

.tdk-form-item textarea { height: 80px; resize: none; }

.tdk-coupon-input {
    display: flex;
    gap: 10px;
}

.tdk-coupon-input button {
    background: var(--tdk-accent);
    color: var(--tdk-bg);
    border: none;
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
}

.tdk-checkout-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--tdk-border);
}

.tdk-checkout-totals {
    margin-bottom: 30px;
}

.tdk-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--tdk-text-dim);
}

.tdk-total-row.main {
    font-size: 20px;
    font-weight: 800;
    color: var(--tdk-white);
    margin-top: 15px;
}

.tdk-btn-finish {
    width: 100%;
    background: #25d366; /* WhatsApp Green */
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tdk-btn-finish:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* ======= GOOGLE FONTS ======= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800;900&display=swap');

/* ======= THEME OVERRIDE — KILL RED BUTTONS ======= */
.tdk-menu-3d-wrap button,
.tdk-menu-3d-wrap .button,
.tdk-menu-3d-wrap input[type="submit"],
.tdk-menu-3d-wrap a.button {
    background-color: var(--tdk-accent) !important;
    color: var(--tdk-bg) !important;
    border: none !important;
    border-color: var(--tdk-accent) !important;
}

.tdk-menu-3d-wrap button:hover,
.tdk-menu-3d-wrap .button:hover {
    background-color: var(--tdk-white) !important;
    color: var(--tdk-bg) !important;
}



.tdk-qty-btn,
.tdk-qty-btn:hover {
    background: transparent !important;
    color: var(--tdk-white) !important;
}

.tdk-item-remove,
.tdk-item-remove:hover {
    background: transparent !important;
    color: #ff5e5e !important;
}

.tdk-btn-finish,
.tdk-btn-finish:hover {
    background: #25d366 !important;
    color: #fff !important;
}

.tdk-float-btn.top,
.tdk-float-btn.top:hover {
    background: rgba(255,255,255,0.05) !important;
    color: var(--tdk-white) !important;
}

/* ======= CART AS CENTERED MODAL ======= */
.tdk-side-cart {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
}

.tdk-side-cart.active {
    display: flex;
}

.tdk-cart-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.tdk-cart-panel {
    position: relative;
    width: 500px;
    max-width: 92vw;
    max-height: 85vh;
    background: var(--tdk-bg);
    border: 1px solid var(--tdk-border);
    border-radius: var(--tdk-radius-lg);
    display: flex;
    flex-direction: column;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    overflow: hidden;
}

.tdk-cart-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--tdk-border);
}

.tdk-cart-top h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--tdk-white);
}

.tdk-cart-top button {
    background: none !important;
    width: auto !important;
    height: auto !important;
    color: var(--tdk-white) !important;
    font-size: 20px;
    padding: 4px !important;
    opacity: 0.7;
}

.tdk-cart-top button:hover {
    opacity: 1;
    background: none !important;
}

.tdk-cart-content,
#tdkCartItems {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.tdk-cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--tdk-border);
    align-items: center;
}

.tdk-cart-item img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.tdk-item-info {
    flex: 1;
}

.tdk-item-info h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--tdk-white);
}

.tdk-item-price {
    color: var(--tdk-accent);
    font-weight: 700;
    font-size: 14px;
    margin-top: 4px;
}

.tdk-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.tdk-item-qty button {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    font-size: 14px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.tdk-item-qty span {
    font-weight: 700;
    color: var(--tdk-white);
}

.tdk-item-remove {
    font-size: 18px;
    cursor: pointer;
    padding: 5px !important;
    width: auto !important;
    height: auto !important;
}

.tdk-empty-cart {
    text-align: center;
    color: var(--tdk-text-dim);
    padding: 60px 20px;
    font-size: 16px;
}

.tdk-cart-summary,
#tdkCartFooter {
    padding: 24px;
    border-top: 1px solid var(--tdk-border);
}

.tdk-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 800;
    color: var(--tdk-white);
    margin-bottom: 8px;
}

.tdk-summary-usd {
    text-align: right;
    color: var(--tdk-text-dim);
    font-size: 14px;
    margin-bottom: 20px;
}

.tdk-btn-checkout {
    width: 100%;
    padding: 18px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
}

/* ======= CATEGORY EMOJI ======= */
.tdk-cat-emoji {
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* ======= FLOATING BAR SVG ======= */
.tdk-float-btn svg {
    width: 24px;
    height: 24px;
}

/* ======= NO RESULTS ======= */
.tdk-no-results {
    text-align: center;
    padding: 60px;
    color: var(--tdk-text-dim);
}

/* ======= MODAL FOOTER ======= */
.tdk-modal-footer {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 992px) {
    .tdk-modal-body { grid-template-columns: 1fr; }
    .tdk-modal-gallery img { min-height: 250px; height: 250px; }
    .tdk-modal-details { padding: 24px; }
    .tdk-banners-grid { grid-template-columns: 1fr; }
    .tdk-banner-card { height: 220px; }
}

@media (max-width: 768px) {
    .tdk-hero-stats { gap: 20px; }
    .tdk-hero-stat-num { font-size: 24px; }
    .tdk-search-bar-new { 
        flex-direction: column; 
        gap: 15px; 
        border-radius: 16px; 
        padding: 16px;
    }
    .tdk-hero-minimal { padding: 50px 0 30px; }
    .tdk-main-title { font-size: 60px; }
    .tdk-hero-subtitle { font-size: 14px; letter-spacing: 0.15em; }
    .tdk-products-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px; 
    }
    .tdk-product-image { height: 160px; }
    .tdk-product-info { padding: 16px; }
    .tdk-product-name { font-size: 14px; }
    .tdk-product-price { font-size: 16px; }
    .tdk-product-cat { font-size: 9px; }
    .tdk-btn-add { width: 32px; height: 32px; }
    .tdk-container { padding: 0 16px; }
    .tdk-cat-circle { width: 70px; height: 70px; }
    .tdk-cat-emoji { font-size: 28px; }
    .tdk-cat-name { font-size: 10px; }
    .tdk-categories-scroll { gap: 20px; }
    .tdk-floating-bar { bottom: 20px; }
    .tdk-float-btn { width: 50px; height: 50px; }
    .tdk-modal-window { border-radius: 16px; }
    .tdk-modal-details { padding: 20px; }
    .tdk-modal-header h2 { font-size: 22px; }
    .tdk-modal-price-wrap { font-size: 20px; }
    .tdk-form-grid { grid-template-columns: 1fr; }
    .tdk-form-item.full { grid-column: span 1; }
    .tdk-checkout-content { padding: 24px; }
    .tdk-banner-card { height: 180px; }
    .tdk-banner-title { font-size: 24px; }
    .tdk-banner-content { padding: 20px; }
}

@media (max-width: 480px) {
    .tdk-main-title { font-size: 48px; }
    .tdk-products-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 12px; 
    }
    .tdk-product-image { height: 140px; }
    .tdk-product-info { padding: 12px; }
    .tdk-product-name { font-size: 13px; }
    .tdk-product-price { font-size: 14px; }
    .tdk-product-footer { margin-top: 12px; }
    .tdk-banners-grid { gap: 12px; }
    .tdk-cart-panel { max-height: 90vh; border-radius: 16px; }
}

/* ======= SELECT / DROPDOWN DARK STYLING ======= */
.tdk-menu-3d-wrap select,
.tdk-modal-system select,
.tdk-side-cart select,
.tdk-form-item select {
    background: var(--tdk-bg) !important;
    color: var(--tdk-white) !important;
    border: 1px solid var(--tdk-border) !important;
    padding: 12px !important;
    border-radius: 8px !important;
    font-family: var(--tdk-font) !important;
    font-size: 14px !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237cd4de' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    cursor: pointer;
}

.tdk-menu-3d-wrap select option,
.tdk-modal-system select option,
.tdk-form-item select option {
    background: #0d0d1a !important;
    color: #ffffff !important;
    padding: 10px;
}

.tdk-menu-3d-wrap select:focus,
.tdk-form-item select:focus {
    outline: none;
    border-color: var(--tdk-accent) !important;
}

/* ======= VARIATION SELECTOR IN MODAL ======= */
.tdk-variation-select-group {
    margin: 20px 0;
}

.tdk-variation-select-group label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    color: var(--tdk-text-dim);
    text-transform: uppercase;
}

.tdk-variation-select-group select {
    width: 100%;
}

/* ======= VARIATION PILLS ======= */
.tdk-variation-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.tdk-variation-pill {
    padding: 8px 18px;
    border: 1px solid var(--tdk-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--tdk-white);
    background: transparent;
}

.tdk-variation-pill:hover {
    border-color: var(--tdk-accent);
}

.tdk-variation-pill.active {
    background: var(--tdk-white) !important;
    color: var(--tdk-bg) !important;
    border-color: var(--tdk-white);
}

/* ======= GLOBAL OVERRIDES ======= */
.tdk-menu-3d-wrap * { box-sizing: border-box; }
.tdk-menu-3d-wrap a { color: var(--tdk-accent); text-decoration: none; }
.tdk-menu-3d-wrap img { max-width: 100%; }
.tdk-menu-3d-wrap svg { max-width: 100%; height: auto; }

/* ======= SEO HIDDEN ======= */
.tdk-seo-hidden { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; padding: 0 !important; margin: -1px !important; }

/* ======= HERO TITLE DISPLAY ======= */
.tdk-hero-title-display { font-size: clamp(60px,12vw,140px); font-weight: 900; color: var(--tdk-white); line-height: 0.9; letter-spacing: -0.03em; text-align: center; }

/* ======= ROUNDED HARMONY ======= */
.tdk-menu-3d-wrap input, .tdk-menu-3d-wrap textarea, .tdk-menu-3d-wrap select { border-radius: 50px !important; }
.tdk-menu-3d-wrap textarea { border-radius: 16px !important; }
.tdk-modal-window { border-radius: 24px !important; overflow: hidden; }
.tdk-cart-panel { border-radius: 24px !important; overflow: hidden; }
.tdk-banner-card { border-radius: 24px !important; }
.tdk-product-card { border-radius: 20px !important; }
.tdk-count-badge { border-radius: 50px !important; }
.tdk-coupon-input button { border-radius: 50px !important; }
.tdk-search-bar-new { border-radius: 50px !important; }

/* ======= CATEGORY TEXT CENTERED ======= */
.tdk-cat-item { text-align: center; min-width: 90px; max-width: 110px; }
.tdk-cat-name { display: block; text-align: center; width: 100%; margin-top: 8px; white-space: normal; overflow-wrap: normal; word-break: keep-all; font-size: 11px; line-height: 1.3; }

/* ======= TDK HEADER ======= */
.tdk-header { background: #050510; border-bottom: 1px solid rgba(255,255,255,0.08); position: sticky; top: 0; z-index: 9999; }
.tdk-header-inner { max-width: 1400px; margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.tdk-header-logo img { width: 70px; height: 70px; object-fit: contain; }
.tdk-header-logo a { display: block; }
.tdk-header-nav { display: flex; gap: 24px; }
.tdk-header-nav a { color: #fff; text-decoration: none; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.3s; font-family: var(--tdk-font); }
.tdk-header-nav a:hover { color: var(--tdk-accent); }
.tdk-header-wa { display: flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; font-family: var(--tdk-font); }
.tdk-header-wa strong { font-size: 13px; color: #fff; }
.tdk-header-wa small { font-size: 12px; color: #a0a0b0; }
.tdk-header-actions button { background: none !important; border: none !important; color: #fff !important; cursor: pointer; padding: 8px !important; }
.tdk-header-mobile { display: none; }
.tdk-hamburger { background: none !important; border: none !important; color: #fff !important; cursor: pointer; }
.tdk-mobile-nav { display: none; background: #0d0d0d; padding: 16px 24px; flex-direction: column; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.tdk-mobile-nav.active { display: flex; }
.tdk-mobile-nav a { color: #fff; text-decoration: none; font-size: 16px; font-weight: 600; padding: 8px 0; font-family: var(--tdk-font); }

@media (max-width: 992px) {
    .tdk-header-left, .tdk-nav-left, .tdk-nav-right { display: none; }
    .tdk-header-mobile { display: flex; }
    .tdk-header-inner { justify-content: space-between; }
}

/* ======= TDK FOOTER ======= */
.tdk-footer { background: #050510; border-top: 1px solid rgba(255,255,255,0.08); padding: 60px 24px 30px; color: #fff; font-family: var(--tdk-font); margin-top: 40px; }
.tdk-footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: start; }
.tdk-footer-col { display: flex; flex-direction: column; gap: 10px; }
.tdk-footer-col h4 { font-size: 16px; font-weight: 800; margin: 0 0 8px; color: #fff; }
.tdk-footer-col a { color: #a0a0b0; text-decoration: none; font-size: 14px; transition: color 0.3s; }
.tdk-footer-col a:hover { color: var(--tdk-accent); }
.tdk-footer-logo { text-align: center; align-self: center; }
.tdk-footer-logo img { width: 100px; height: 100px; object-fit: contain; }
.tdk-footer-bottom { max-width: 1200px; margin: 40px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; color: #a0a0b0; }
.tdk-footer-bottom a { color: var(--tdk-accent); text-decoration: none; }
.tdk-footer-social { display: flex; gap: 16px; }
.tdk-footer-social a { color: #a0a0b0; transition: color 0.3s; }
.tdk-footer-social a:hover { color: var(--tdk-accent); }

@media (max-width: 768px) {
    .tdk-footer-inner { grid-template-columns: 1fr; text-align: center; }
    .tdk-footer-bottom { flex-direction: column; text-align: center; }
}

/* ======= NEW EXACT HEADER ======= */
.tdk-header-exact {
    position: sticky;
    top: 0;
    z-index: 5000;
    background: #0d0d0d;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tdk-header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    padding: 0 40px;
}
.tdk-header-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tdk-header-contact .wa-icon {
    width: 40px;
    height: 40px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.tdk-header-contact .wa-icon svg { width: 20px; height: 20px; }
.tdk-header-contact .wa-text {
    display: flex;
    flex-direction: column;
}
.tdk-header-contact .wa-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ccc;
    text-transform: uppercase;
}
.tdk-header-contact .wa-phone {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}
.tdk-header-nav-block {
    display: flex;
    gap: 30px;
    align-items: center;
}
.tdk-header-nav-block a {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}
.tdk-header-nav-block a:hover { color: var(--tdk-accent); }
.tdk-header-logo-center img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
}
.tdk-header-logo-center img:hover { transform: scale(1.05); }
.tdk-header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}
.tdk-header-icons button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    position: relative;
    padding: 0;
}
.tdk-header-icons button svg { width: 22px; height: 22px; }
.tdk-cart-badge-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tdk-mobile-menu-btn { display: none; background: none; border: none; color: white; cursor: pointer; }

/* ======= NEW EXACT FOOTER ======= */
.tdk-footer-exact {
    background: #0d0d0d;
    padding: 80px 40px 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.tdk-footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
    text-align: center;
}
.tdk-footer-col-exact h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.tdk-footer-col-exact a {
    display: block;
    color: #aaa;
    font-size: 14px;
    margin-bottom: 15px;
    transition: color 0.3s;
}
.tdk-footer-col-exact a:hover { color: #fff; }
.tdk-footer-logo-col img {
    height: 140px;
    width: auto;
    filter: brightness(0) invert(1);
}
.tdk-footer-bottom-exact {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #888;
}
.tdk-footer-bottom-exact a { color: #7cd4de; }
.tdk-footer-social-exact {
    display: flex;
    gap: 15px;
}
.tdk-footer-social-exact a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}
.tdk-footer-social-exact a:hover {
    background: var(--tdk-accent);
    border-color: var(--tdk-accent);
    color: #000;
}
.tdk-footer-social-exact svg { width: 14px; height: 14px; }

@media (max-width: 992px) {
    .tdk-header-contact, .tdk-header-nav-block { display: none; }
    .tdk-mobile-menu-btn { display: block; }
    .tdk-footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .tdk-footer-bottom-exact { flex-direction: column; gap: 20px; text-align: center; }
}
