@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    --primary: #c59b27;
    --primary-hover: #b3891f;
    --primary-light: #fef7e7;
    --primary-glow: rgba(197, 155, 39, 0.25);
    --secondary: #18181b;
    --secondary-light: #27272a;
    --accent: #d4af37;
    --wa-green: #25d366;
    --wa-hover: #1ebd5a;
    --tg-blue: #0088cc;
    --tg-hover: #0077b5;
    --bg-body: #fafaf9;
    --bg-card: #ffffff;
    --border-color: #e7e5e4;
    --border-focus: #c59b27;
    --text-main: #1c1917;
    --text-muted: #78716c;
    --text-light: #a8a29e;
    --danger: #ef4444;
    --success: #10b981;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 28px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 20px rgba(197, 155, 39, 0.2);
    --font-heading: 'Cinzel', serif, Georgia;
    --font-body: 'Plus Jakarta Sans', sans-serif, -apple-system, BlinkMacSystemFont;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

*::-webkit-scrollbar,
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

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

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

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.site-header {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 16px;
}

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

.brand-logo {
    height: 44px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    border-radius: 0;
    border: none;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--secondary);
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-btn-header {
    background: var(--secondary);
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.cart-btn-header:hover {
    background: var(--primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

.cart-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.cart-badge {
    background: var(--primary);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 800;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-btn-header:hover .cart-badge {
    background: #ffffff;
    color: var(--secondary);
}

.banner-section {
    padding: 20px 0 10px;
}

.carousel-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--secondary);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 1200 / 450;
    max-height: 420px;
    overflow: hidden;
}

@media (max-width: 640px) {
    .carousel-slide {
        aspect-ratio: 1200 / 450;
        max-height: none;
    }
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(4px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .carousel-nav-btn {
        display: none !important;
    }
}

.carousel-nav-btn:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.carousel-nav-btn.prev {
    left: 12px;
}

.carousel-nav-btn.next {
    right: 12px;
}

.carousel-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    width: 24px;
    background: var(--primary);
}

.filter-section {
    padding: 16px 0 24px;
    position: sticky;
    top: 68px;
    background: rgba(250, 250, 249, 0.95);
    backdrop-filter: blur(10px);
    z-index: 90;
    border-bottom: 1px solid rgba(231, 229, 228, 0.6);
}

.filter-grid-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 640px) {
    .filter-grid-row {
        grid-template-columns: 1.6fr 1fr;
        gap: 14px;
        align-items: center;
    }
}

.search-box-wrapper {
    position: relative;
    margin-bottom: 0;
}

.search-input {
    width: 100%;
    padding: 12px 16px 12px 46px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border-color);
    background: #ffffff;
    font-size: 0.92rem;
    color: var(--text-main);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
    pointer-events: none;
}

.clear-search-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    display: none;
    padding: 4px;
}

.clear-search-btn.active {
    display: block;
}

.category-select-wrapper {
    position: relative;
    width: 100%;
}

.category-select {
    width: 100%;
    padding: 12px 40px 12px 18px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border-color);
    background-color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.category-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.category-select-wrapper::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--primary);
    pointer-events: none;
}

.products-section {
    padding-bottom: 80px;
    flex-grow: 1;
}

.section-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.products-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

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

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 155, 39, 0.4);
}

.card-img-box {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f4f4f5;
    overflow: hidden;
    cursor: pointer;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .card-img-box img {
    transform: scale(1.05);
}

.zoom-hint-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(24, 24, 27, 0.7);
    backdrop-filter: blur(4px);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    opacity: 0.85;
    transition: var(--transition);
}

.product-card:hover .zoom-hint-badge {
    opacity: 1;
    background: var(--primary);
    color: var(--secondary);
}

.stock-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-sm);
}

.stock-tag.in-stock {
    background: rgba(16, 185, 129, 0.9);
    color: #ffffff;
}

.stock-tag.low-stock {
    background: rgba(245, 158, 11, 0.95);
    color: #ffffff;
}

.stock-tag.out-stock {
    background: rgba(239, 68, 68, 0.95);
    color: #ffffff;
}

.card-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .card-body {
        padding: 16px;
    }
}

.card-category {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--primary-hover);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em;
}

@media (min-width: 768px) {
    .card-title {
        font-size: 1rem;
    }
}

.card-price-wrap {
    margin-top: auto;
    margin-bottom: 12px;
}

.card-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-main);
    font-family: var(--font-body);
}

@media (min-width: 768px) {
    .card-price {
        font-size: 1.18rem;
    }
}

.card-action-wrap {
    margin-top: auto;
}

.btn-add-cart {
    width: 100%;
    background: var(--secondary);
    color: #ffffff;
    border: 1px solid var(--secondary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-cart:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
    transform: translateY(-1px);
}

.btn-add-cart:disabled {
    background: #e7e5e4;
    border-color: #e7e5e4;
    color: #a8a29e;
    cursor: not-allowed;
}

.qty-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary-light);
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-sm);
    overflow: hidden;
    width: 100%;
}

.qty-btn {
    background: transparent;
    border: none;
    color: var(--secondary);
    font-weight: 800;
    font-size: 1.1rem;
    width: 32px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.qty-btn:hover:not(:disabled) {
    background: var(--primary);
    color: #ffffff;
}

.qty-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.qty-value {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--secondary);
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border-color);
}

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

.empty-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}

.empty-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.floating-cart-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    width: calc(100% - 32px);
    max-width: 480px;
    background: var(--secondary);
    color: #ffffff;
    padding: 12px 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
    z-index: 95;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: 1px solid rgba(197, 155, 39, 0.4);
}

.floating-cart-bar.show {
    transform: translateX(-50%) translateY(0);
}

.floating-cart-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-badge {
    background: var(--primary);
    color: var(--secondary);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: var(--radius-full);
}

.floating-total {
    font-size: 0.95rem;
    font-weight: 700;
}

.floating-cart-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 16px;
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-modal-content {
    background: #18181b;
    color: #ffffff;
    border-radius: var(--radius-lg);
    max-width: 720px;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: var(--transition);
}

.modal-backdrop.active .lightbox-modal-content {
    transform: scale(1);
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-title {
    font-size: 1rem;
    font-weight: 700;
    color: #f4f4f5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 12px;
}

.lightbox-close-btn {
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #ffffff;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.lightbox-close-btn svg {
    display: block;
    width: 16px;
    height: 16px;
}

.lightbox-close-btn:hover {
    background: var(--danger);
}

.lightbox-image-area {
    position: relative;
    width: 100%;
    height: 380px;
    background: #09090b;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    user-select: none;
    cursor: grab;
}

.lightbox-image-area.grabbing {
    cursor: grabbing;
}

.lightbox-image-area img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.15s ease-out;
    transform-origin: center center;
}

.zoom-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    background: #18181b;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.zoom-btn {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: none;
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.zoom-btn svg {
    display: block;
    width: 14px;
    height: 14px;
}

.zoom-btn-reset {
    width: auto !important;
    height: 34px;
    padding: 0 16px !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.4px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.zoom-btn:hover {
    background: var(--primary);
    color: var(--secondary);
}

.zoom-level-text {
    font-size: 0.82rem;
    color: #a1a1aa;
    font-weight: 700;
    min-width: 48px;
    text-align: center;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 250;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    z-index: 260;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 30px rgba(0,0,0,0.25);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-drawer-overlay.active .cart-drawer {
    transform: translateX(0);
}

.drawer-header {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafaf9;
}

.drawer-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.drawer-close-btn {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.drawer-close-btn:hover {
    background: #e7e5e4;
    color: var(--secondary);
}

.drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.cart-item-row {
    display: flex;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.cart-item-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: #f4f4f5;
    flex-shrink: 0;
}

.cart-item-details {
    flex-grow: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.cart-item-calc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.cart-item-subtotal {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-hover);
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}

.cart-stepper-mini {
    display: flex;
    align-items: center;
    background: #f4f4f5;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.cart-stepper-mini button {
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--secondary);
    transition: var(--transition);
}

.cart-stepper-mini button:hover:not(:disabled) {
    background: var(--primary);
    color: #ffffff;
}

.cart-stepper-mini button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.cart-stepper-mini span {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0 6px;
    min-width: 22px;
    text-align: center;
}

.cart-remove-btn {
    background: none;
    border: none;
    color: var(--danger);
    font-size: 0.72rem;
    cursor: pointer;
    padding: 2px 4px;
    font-weight: 600;
}

.cart-remove-btn:hover {
    text-decoration: underline;
}

.checkout-form-section {
    background: #fafaf9;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: 10px;
}

.form-section-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.form-control {
    width: 100%;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-color);
    background: #ffffff;
    font-size: 0.88rem;
    color: var(--text-main);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

textarea.form-control {
    resize: vertical;
    min-height: 65px;
}

.btn-location-auto {
    width: 100%;
    background: #ffffff;
    color: var(--primary-hover);
    border: 1.5px solid var(--primary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    margin-top: 6px;
    transition: var(--transition);
}

.btn-location-auto:hover {
    background: var(--primary-light);
}

.drawer-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border-color);
    background: #ffffff;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.summary-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
}

.summary-val {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary);
}

.checkout-btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-checkout {
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.btn-checkout.btn-whatsapp {
    background: var(--wa-green);
}

.btn-checkout.btn-whatsapp:hover {
    background: var(--wa-hover);
    transform: translateY(-2px);
}

.btn-checkout.btn-telegram {
    background: var(--tg-blue);
}

.btn-checkout.btn-telegram:hover {
    background: var(--tg-hover);
    transform: translateY(-2px);
}

.site-footer {
    background: var(--secondary);
    color: #d4d4d8;
    padding: 40px 0 24px;
    margin-top: auto;
    border-top: 2px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
    }
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.footer-desc {
    font-size: 0.85rem;
    color: #a1a1aa;
    line-height: 1.6;
}

.footer-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 18px;
    text-align: center;
    font-size: 0.78rem;
    color: #71717a;
}
