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

/* ===== Reset ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: #f5f5f5;
    color: #111;
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Buttons - 40px radius ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: #000;
    color: #fff;
    border-color: #000;
}
.btn-primary:hover {
    background: transparent;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-whatsapp {
    background: #000;
    color: #fff;
    border-color: #000;
}
.btn-whatsapp:hover {
    background: transparent;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-sm { padding: 0.6rem 1.5rem; font-size: 0.85rem; }

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.label {
    display: inline-block;
    color: #666;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #000;
    letter-spacing: -1px;
}

/* ===== Liquid Glass Navbar ===== */
.navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    min-width: 320px;
}

.nav-glass {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a,
.navbar.scrolled .cart-toggle,
.navbar.scrolled .mobile-menu-btn {
    color: #000;
}

.navbar.scrolled .cart-count {
    background: #000;
    color: #fff;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    transition: color 0.3s;
}

.logo i {
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.navbar.scrolled .nav-links a {
    color: rgba(0,0,0,0.6);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: #000;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-toggle {
    position: relative;
    cursor: pointer;
    color: #fff;
    font-size: 1rem;
    transition: all 0.2s;
}

.cart-toggle:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -6px; right: -8px;
    background: #fff;
    color: #000;
    font-size: 0.6rem;
    font-weight: 800;
    width: 17px; height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar.scrolled .cart-count {
    background: #000;
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s;
}

/* ===== Hero - Normal Colors ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    animation: slowZoom 25s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 1.5rem;
    animation: fadeUp 1.2s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.8);
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeUp 1.2s ease 0.2s both;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
    color: #fff;
    animation: fadeUp 1.2s ease 0.4s both;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    font-weight: 400;
    animation: fadeUp 1.2s ease 0.6s both;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1.2s ease 0.8s both;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeUp 1.2s ease 1s both;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* ===== Products ===== */
.products {
    padding: 5rem 0;
    background: #f5f5f5;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: #000;
}

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

.product-image {
    height: 180px;
    overflow: hidden;
    background: #eee;
}

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

.product-info {
    padding: 1.25rem;
}

.product-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.3rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 1rem;
}

.add-to-cart {
    width: 100%;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 0.7rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: 'Inter', sans-serif;
}

.add-to-cart:hover {
    background: transparent;
    color: #000;
    transform: scale(1.02);
}


/* ===== Products Toolbar & Pagination ===== */
.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: -1rem 0 1.5rem;
    padding: 0 0.25rem;
}

.products-count,
.products-per-page {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.products-per-page {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255,255,255,0.7);
    border: 1px solid #e5e5e5;
    border-radius: 40px;
    padding: 0.55rem 0.9rem;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.page-btn {
    min-width: 42px;
    height: 42px;
    padding: 0 0.85rem;
    border-radius: 40px;
    border: 1px solid #e5e5e5;
    background: rgba(255,255,255,0.78);
    color: #000;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.page-btn:hover:not(:disabled),
.page-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.page-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.page-dots {
    color: #888;
    font-weight: 800;
    padding: 0 0.2rem;
}

/* ===== About ===== */
.about {
    padding: 5rem 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #000;
    margin: 0.5rem 0 1rem;
    letter-spacing: -1px;
}

.about-text > p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.about-features div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
}

.about-features i {
    color: #000;
    font-size: 0.9rem;
}

.about-img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.about-img img {
    width: 100%;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.03);
}

/* ===== Steps ===== */
.steps-section {
    padding: 5rem 0;
    background: #f5f5f5;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
}

.step-icon {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px; height: 24px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.step > i {
    font-size: 1.6rem;
    color: #000;
    margin: 0.5rem 0 0.75rem;
    display: block;
}

.step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.2rem;
}

.step p {
    font-size: 0.8rem;
    color: #888;
}

.step-line {
    width: 50px;
    height: 1px;
    background: #ccc;
    flex-shrink: 0;
}

/* ===== Location ===== */
.location {
    padding: 5rem 0;
    background: #fff;
}

.location-box {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.loc-info {
    background: #000;
    color: #fff;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.loc-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.loc-info h3 i {
    color: #fff;
}

.loc-info p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.loc-info .btn {
    margin-top: 1.5rem;
    align-self: flex-start;
    background: #fff;
    color: #000;
    border-color: #fff;
}

.loc-info .btn:hover {
    background: transparent;
    color: #fff;
}

.loc-map {
    min-height: 350px;
}

.loc-map iframe {
    width: 100%; height: 100%;
    min-height: 350px;
    border: none;
    display: block;
}

/* ===== Enhanced Contact ===== */
.contact {
    padding: 5rem 0;
    background: #f5f5f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

/* Contact Info Card */
.contact-info-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid #e5e5e5;
}

.contact-info-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.5rem;
}

.contact-info-card > p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #f5f5f5;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.contact-detail:hover {
    border-color: #000;
    background: #fff;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.cd-icon {
    width: 44px; height: 44px;
    background: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.cd-text {
    display: flex;
    flex-direction: column;
}

.cd-label {
    font-size: 0.75rem;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cd-value {
    font-size: 0.95rem;
    color: #000;
    font-weight: 600;
}

/* Action Cards */
.contact-action-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.action-card:hover {
    border-color: #000;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.ac-icon {
    width: 56px; height: 56px;
    background: #000;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.whatsapp-card .ac-icon {
    background: #25d366;
}

.call-card .ac-icon {
    background: #000;
}

.action-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.4rem;
}

.action-card p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.action-card .btn {
    width: 100%;
}


/* ===== Standalone Pages ===== */
.page-hero {
    min-height: 48vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: #000;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.14), transparent 35%),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08), transparent 35%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 8rem 1.5rem 3rem;
}

.page-hero h1 {
    font-size: 3.4rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255,255,255,0.68);
    font-size: 1.05rem;
}

.page-section {
    padding: 5rem 0;
}

.about-page-grid,
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.page-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.page-card h2,
.page-card h3 {
    color: #000;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.page-card p {
    color: #666;
    margin-bottom: 1rem;
}

.page-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.page-list div,
.page-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 1rem;
    font-weight: 700;
    color: #000;
}

.page-list i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-image {
    min-height: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

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

@media (max-width: 768px) {
    .page-hero h1 { font-size: 2.4rem; }
    .about-page-grid,
    .contact-page-grid { grid-template-columns: 1fr; }
    .page-card { padding: 1.5rem; }
}

/* ===== Footer ===== */
.footer {
    background: #000;
    color: #fff;
    padding: 3rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #fff;
    width: 16px;
    font-size: 0.8rem;
}

.footer-bottom {
    padding: 1.25rem 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links p {
    color: rgba(255,255,255,0.25);
    font-size: 0.8rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* ===== Cart ===== */
.cart-sidebar {
    position: fixed;
    top: 0; right: -400px;
    width: 380px;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 999;
    transition: right 0.35s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active { right: 0; }

.cart-header {
    padding: 1.25rem;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #888;
    cursor: pointer;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-cart:hover {
    background: #f5f5f5;
    color: #000;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
}

.cart-empty i {
    font-size: 2.5rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.cart-empty p {
    color: #888;
    margin-bottom: 1rem;
}

.cart-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.875rem;
    background: #f5f5f5;
    border-radius: 16px;
    margin-bottom: 0.5rem;
    border: 1px solid #e5e5e5;
    transition: all 0.2s;
}

.cart-item:hover {
    border-color: #000;
}

.cart-item img {
    width: 50px; height: 50px;
    object-fit: cover;
    border-radius: 10px;
    background: #ddd;
    flex-shrink: 0;
}

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

.cart-item-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: #000;
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 0.8rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.qty-row {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.qty-btn {
    width: 24px; height: 24px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.65rem;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.qty-val {
    font-weight: 700;
    font-size: 0.8rem;
    min-width: 20px;
    text-align: center;
}

.remove-btn {
    margin-left: auto;
    color: #000;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0.2rem;
    transition: transform 0.2s;
}

.remove-btn:hover {
    transform: scale(1.2);
    color: #c00;
}

.cart-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid #e5e5e5;
    background: #f5f5f5;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
}

.cart-total span:last-child {
    font-size: 1.2rem;
}

/* ===== Overlays ===== */
.cart-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.mobile-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

/* ===== Toast ===== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #000;
    color: #fff;
    padding: 0.875rem 1.5rem;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 1001;
    transition: all 0.4s ease;
    opacity: 0;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast i {
    color: #fff;
}

/* ===== Scrollbar ===== */
.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-track { background: transparent; }
.cart-items::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .location-box { grid-template-columns: 1fr; }
    .loc-map { min-height: 300px; }
    .loc-map iframe { min-height: 300px; }
    .hero h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .navbar {
        top: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
        transform: none;
        width: auto;
        min-width: 0;
    }

    .nav-glass {
        padding: 0.6rem 0.75rem;
        gap: 1rem;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.20);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    }

    .navbar.scrolled .nav-glass {
        background: rgba(255, 255, 255, 0.78);
        border-color: rgba(0, 0, 0, 0.08);
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.18);
        backdrop-filter: blur(14px) saturate(180%);
        -webkit-backdrop-filter: blur(14px) saturate(180%);
    }

    .navbar.scrolled .mobile-menu-btn {
        background: rgba(0, 0, 0, 0.06);
        border-color: rgba(0, 0, 0, 0.08);
    }

    .nav-links {
        position: fixed;
        top: 5.25rem;
        right: -110%;
        width: min(280px, calc(100vw - 1.5rem));
        height: auto;
        max-height: calc(100dvh - 6.25rem);
        overflow-y: auto;
        flex-direction: column;
        gap: 0.65rem;
        padding: 1rem;
        z-index: 1001;
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.14);
        backdrop-filter: blur(28px) saturate(180%);
        -webkit-backdrop-filter: blur(28px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.22);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }

    .nav-links.active {
        right: 0.75rem;
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0.85rem 1rem;
        border-radius: 18px;
        color: rgba(255, 255, 255, 0.88);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.10);
    }

    .nav-links a::after {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.75rem;
        opacity: 0.55;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: #fff;
        background: rgba(255, 255, 255, 0.18);
        border-color: rgba(255, 255, 255, 0.22);
    }

    .navbar.scrolled .nav-links {
        background: rgba(255, 255, 255, 0.86);
        border-color: rgba(0, 0, 0, 0.08);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
    }

    .navbar.scrolled .nav-links a {
        color: rgba(0, 0, 0, 0.72);
        background: rgba(255, 255, 255, 0.50);
        border-color: rgba(0, 0, 0, 0.06);
    }

    .navbar.scrolled .nav-links a:hover,
    .navbar.scrolled .nav-links a.active {
        color: #000;
        background: rgba(0, 0, 0, 0.06);
        border-color: rgba(0, 0, 0, 0.10);
    }

    .mobile-overlay {
        background: rgba(0, 0, 0, 0.28);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1rem; }

    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-img { order: -1; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .steps { flex-direction: column; gap: 1.5rem; }
    .step-line { width: 1px; height: 30px; }

    /* Keep cart panel below the liquid navbar on mobile */
    .cart-sidebar {
        top: 5.25rem;
        right: -100%;
        width: calc(100% - 1.5rem);
        height: calc(100vh - 6rem);
        height: calc(100dvh - 6rem);
        max-width: none;
        margin-right: 0.75rem;
        border-radius: 28px 28px 0 0;
        overflow: hidden;
        z-index: 999;
        box-shadow: 0 -10px 40px rgba(0,0,0,0.18);
    }
    .cart-sidebar.active { right: 0; }
    .cart-overlay {
        top: 5.25rem;
        height: calc(100vh - 5.25rem);
        height: calc(100dvh - 5.25rem);
        z-index: 998;
    }

    .contact-action-cards {
        flex-direction: row;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; letter-spacing: -1px; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
    .product-image { height: 120px; }
    .product-info { padding: 0.8rem; }
    .product-name { font-size: 0.78rem; line-height: 1.25; min-height: 2.1em; }
    .product-price { font-size: 0.95rem; margin-bottom: 0.65rem; }
    .add-to-cart { padding: 0.58rem 0.45rem; font-size: 0.72rem; }
    .products-toolbar { flex-direction: column; align-items: stretch; gap: 0.65rem; text-align: center; }
    .products-per-page { justify-content: center; }
    .pagination { gap: 0.3rem; }
    .page-btn { min-width: 36px; height: 36px; padding: 0 0.65rem; font-size: 0.85rem; }
    .about-features { grid-template-columns: 1fr; }
    .nav-glass { gap: 1rem; }
    .logo span { display: none; }
    .contact-action-cards { flex-direction: column; }
    .footer-bottom-links {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 360px) {
    .cart-item { flex-wrap: wrap; }
    .cart-item img { width: 45px; height: 45px; }
    .qty-row { width: 100%; justify-content: space-between; }
}

/* ===== PWA Install Button ===== */
.install-app-btn {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1100;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    border-radius: 40px;
    padding: 0.875rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.install-app-btn:hover {
    background: #fff;
    color: #000;
}
@media (max-width: 480px) {
    .install-app-btn {
        left: 1rem;
        right: 1rem;
        width: auto;
    }
}
