:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --accent-color: #ffeee6;
    --eye-icon-color: #ffdccc;
    --gray-bg: #fafafa;
    --transition: cubic-bezier(0.25, 1, 0.5, 1);
}

.password-field-wrapper {
    position: relative;
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--eye-icon-color);
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: #ffbba0;
    transform: translateY(-50%) scale(1.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* OMNI GLOBAL CUSTOM SCROLLBAR - HYPER COMPATIBLE */
html, body {
    scrollbar-width: thin !important;
    scrollbar-color: #ffdccc #ffffff !important;
}

/* Chrome, Edge, Safari, Opera */
::-webkit-scrollbar {
    width: 14px !important;
    background: #ffffff !important;
}

::-webkit-scrollbar-track {
    background: #ffffff !important;
}

::-webkit-scrollbar-thumb {
    background-color: #ffdccc !important;
    background-image: linear-gradient(180deg, #ffdccc 0%, #ffcba5 100%) !important;
    border-radius: 20px !important;
    border: 3px solid #ffffff !important;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05) !important;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffbba0 !important;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden !important;
}

.material-icons-round {
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* OMNI Side-Dock System */
.side-dock {
    position: fixed;
    top: 50vh !important;
    transform: translateY(-50%) !important;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 22px 14px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-dock.hidden-dock {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) scale(0.9);
    pointer-events: none;
}

.side-dock:hover {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    padding: 28px 14px;
}

.left-dock { left: 30px; }
.right-dock { right: 30px; }

.dock-brand {
    width: 48px;
    height: 48px;
    color: #ffb999;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dock-brand span {
    font-size: 2.22rem;
}

.dock-brand:hover {
    transform: scale(1.1);
    color: #000;
}

.dock-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.dock-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
}

.dock-item .dock-cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #ff4444;
    color: #fff;
    font-size: 7px;
    font-weight: 900;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1.5px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.dock-item span, .dock-item i {
    font-size: 1.5rem;
}

.dock-item:hover {
    background: #000;
    color: #fff;
    transform: scale(1.2) translateY(-3px);
}

.dock-item.active {
    background: #ffb999;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255,185,153,0.4);
}

.dock-item.whatsapp { color: #25D366; }
.dock-item.instagram { color: #E4405F; }
.dock-item.facebook { color: #1877F2; }

.dock-item.whatsapp:hover { background: #25D366; color: #fff; }
.dock-item.instagram:hover { background: #E4405F; color: #fff; }
.dock-item.facebook:hover { background: #1877F2; color: #fff; }

/* Tooltips */
.dock-item::after {
    content: attr(title);
    position: absolute;
    background: #333;
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.left-dock .dock-item::after { left: 60px; }
.right-dock .dock-item::after { right: 60px; }

.dock-item:hover::after {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1200px) {
    .side-dock { display: none; }
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.4s var(--transition), background-color 0.4s var(--transition), border-bottom 0.4s var(--transition), box-shadow 0.4s var(--transition);
    padding: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.announcement-bar {
    background-color: var(--text-color);
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    min-height: 38px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    z-index: 1001;
    overflow: hidden;
}

.announcement-bar span {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideDownFade 5s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes slideDownFade {
    0% { transform: translateY(-50px); opacity: 0; filter: blur(5px); }
    8% { transform: translateY(0); opacity: 1; filter: blur(0); }
    92% { transform: translateY(0); opacity: 1; filter: blur(0); }
    100% { transform: translateY(50px); opacity: 0; filter: blur(5px); }
}

header.scrolled {
    background-color: rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    top: -38px; /* Hide announcement bar using top instead of transform */
}

header.scrolled .header-container {
    padding: 8px 40px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -1px;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:hover {
    color: #444;
    border-color: var(--accent-color);
}

.nav-links .buy-link {
    background-color: var(--accent-color);
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    margin-left: 30px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.nav-links .buy-link:hover {
    background-color: #ffda9c;
    color: #000;
    transform: translateY(-2px);
}

/* Profile Dropdown Styling */
.profile-dropdown-container {
    position: relative;
    display: inline-block;
    margin-left: 30px;
}

.profile-trigger {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 20px;
    transition: background 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.profile-trigger:hover, .profile-dropdown-container.active .profile-trigger {
    background: rgba(0,0,0,0.06);
}

.profile-trigger .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1);
}

.profile-dropdown-container.active .arrow {
    transform: rotate(180deg);
}

.profile-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 240px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    padding: 12px;
    display: none;
    flex-direction: column;
    z-index: 9999;
}

.profile-dropdown-container.active .profile-dropdown-menu {
    display: flex;
}

.profile-dropdown-menu a {
    text-decoration: none;
    color: #444;
    padding: 12px 16px !important;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin-left: 0 !important;
    transition: all 0.2s ease;
    border: none !important;
}

.profile-dropdown-menu a:hover {
    background: var(--accent-color) !important;
    color: #000 !important;
    transform: translateX(5px);
}

.profile-dropdown-menu hr {
    margin: 8px 0;
    border: none;
    border-bottom: 1px solid #f0f0f0;
}

.profile-dropdown-menu .logout-link {
    color: #d32f2f !important;
}

.profile-dropdown-menu .logout-link:hover {
    background: #fff5f5 !important;
}

/* Base Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    background-color: var(--text-color);
    color: var(--bg-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 40px;
    font-size: 1.05rem;
    transition: background-color 0.3s ease, transform 0.3s var(--transition);
    border: 2px solid var(--text-color);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-pulse {
    animation: pulse 2s infinite ease-in-out;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
}

.btn-pulse:hover {
    animation: none;
}

/* Typography elements */
h1 {
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--transition);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sections */
section {
    padding: 120px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding-top: 160px;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 650px; /* Increased to allow the headline text to stay on one line */
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 40px;
    max-width: 480px;
}

.price-tag {
    font-size: 2.4rem;
    font-weight: 700;
    margin-right: 30px;
    display: inline-block;
    vertical-align: middle;
}

.hero-price {
    display: flex;
    align-items: center;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    right: -40px;
}

.slider-container {
    position: relative;
    width: 700px;
    height: 500px;
    max-width: 120%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out, transform 0.1s linear;
}

.hero-image.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 10;
}

.slider-controls {
    position: absolute;
    bottom: -20px;
    right: 40px;
    display: flex;
    gap: 15px;
    z-index: 20;
}

.slider-btn {
    background-color: var(--text-color);
    color: var(--bg-color);
    border: 2px solid var(--text-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.slider-btn:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Features */
.features {
    padding-top: 80px;
}

.feature-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.feature-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 100%;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 40px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06), 0 3px 10px rgba(0,0,0,0.03);
    border: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.04);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Deep Dive Area */
.deep-dive {
    padding-top: 40px;
}

.split-feature {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.split-feature.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 1.85rem;
    margin-bottom: 15px;
    line-height: 1.2;
    white-space: nowrap;
}

.split-text .subtitle {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 25px;
    background-color: var(--text-color);
    display: inline-block;
    padding: 8px 18px;
    border-radius: 8px;
    line-height: 1;
    width: fit-content;
    white-space: nowrap;
}

.split-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.feature-list .material-icons-round {
    background-color: var(--accent-color);
    color: var(--text-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem !important;
    flex-shrink: 0;
}

.split-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.rounded-image {
    width: 100%;
    max-width: 550px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.rounded-image:hover {
    transform: scale(1.02);
}

/* Compare Section */
.compare {
    background-color: var(--text-color);
    color: var(--bg-color);
    max-width: none;
    padding: 160px 40px;
    text-align: center;
}

.compare-content {
    max-width: 800px;
    margin: 0 auto;
}

.compare h2 {
    color: var(--bg-color);
    margin-bottom: 40px;
}

.comparison-text {
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 30px;
}

.comparison-text strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Buy Section Module */
.buy-section {
    padding-bottom: 160px;
}

.product-module {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    background-color: #fff;
    border: none;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08), 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-module:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 35px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);
}

@keyframes productZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

.product-module-image {
    flex: 1;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-module-image img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
}

.product-image-zoom {
    animation: productZoom 12s infinite ease-in-out;
}

.product-module-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-module-details h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-desc {
    color: #555;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.color-selector {
    margin-bottom: 35px;
}

.color-selector span.color-label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
}

.color-selector span.color-label strong {
    color: var(--text-color);
    font-weight: 700;
    margin-left: 5px;
}

.color-options {
    display: flex;
    gap: 18px;
}

.color-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.color-swatch:hover {
    transform: scale(1.05);
}

.color-swatch.active {
    transform: scale(1.1);
    outline: 2px solid var(--text-color);
    outline-offset: 4px;
}

.swatch-black {
    background-color: #1c1c1e;
}

.swatch-white {
    background-color: #f5f5f7;
    border: 1px solid #d1d1d6;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.final-price {
    font-size: 2.2rem;
    font-weight: 700;
}

.product-checkout-btn {
    padding: 12px 28px;
    font-size: 1rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-checkout-btn .material-icons-round {
    font-size: 1.22rem;
}

/* Professional Footer */
.main-footer {
    background-color: #fafafa;
    padding: 100px 0 60px;
    margin-top: 120px;
    border-top: 1px solid #f0f0f0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
}

.brand-col .brand-tagline {
    font-size: 1rem;
    color: #666;
    margin-top: 25px;
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-color);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col h4 .material-icons-round {
    color: #ffdccc;
    font-size: 1.4rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
    transition: all 0.3s var(--transition);
    display: flex;
    align-items: center;
}

.footer-col ul li a .material-icons-round {
    color: #ffdccc;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--text-color);
}

.footer-col ul li a:hover .material-icons-round {
    color: var(--text-color);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4caf50;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    background: rgba(76, 175, 80, 0.05);
    padding: 12px 20px;
    border-radius: 12px;
    width: fit-content;
}

.footer-bottom {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 50px 40px 0;
    border-top: 1px solid #f0f0f0;
}

.footer-legal-notice {
    margin-bottom: 25px;
    width: 100%;
    text-align: center;
}

.footer-legal-notice p {
    font-size: 0.7rem;
    color: #bbb;
    line-height: 1.4;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
}

.footer-copyright p {
    font-size: 0.95rem;
    color: #888;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col h4 {
        margin-bottom: 15px;
    }
}

/* OMNI Professional Responsive System */
.mobile-only {
    display: none !important;
}

.mobile-hide {
    display: inline !important;
}

@media (max-width: 968px) {
    .mobile-only { display: block !important; }
    .mobile-hide { display: none !important; }
    
    header {
        padding: 0;
        width: 100vw !important;
        /* Removed overflow: hidden to allow menu visibility */
    }

    .announcement-bar {
        font-size: 0.75rem !important;
        padding: 8px 10px !important;
        line-height: 1.3;
    }

    .announcement-bar span {
        animation: none !important;
        display: block !important;
        text-align: center;
        width: 100%;
    }

    .header-container {
        padding: 10px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .logo {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 85%;
        max-width: 310px;
        height: 100vh;
        height: 100dvh;
        background: #fff;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: 90px 25px 40px;
        box-shadow: -15px 0 45px rgba(0,0,0,0.15);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        transform: translateX(105%);
        visibility: hidden;
        display: flex !important;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links a {
        margin: 0 !important;
        font-size: 1.15rem !important;
        font-weight: 700;
        width: 100%;
        border-bottom: 1px solid #f8f8f8;
        padding: 18px 10px !important;
        display: flex !important;
        align-items: center;
        gap: 12px;
        color: #000;
    }

    .cart-trigger {
        margin-left: 0 !important;
        order: 2;
    }

    #mobile-menu-toggle {
        order: 3;
        margin-left: 15px;
    }

    .logo {
        order: 1;
        flex: 1;
    }

    /* Hero Responsive */
    h1 { 
        font-size: clamp(2.2rem, 8vw, 2.8rem); 
        letter-spacing: -1.5px;
        line-height: 1.15;
    }
    .hero { 
        flex-direction: column !important; 
        text-align: center; 
        padding-top: 160px;
        padding-bottom: 60px;
    }
    .hero-content { 
        margin-bottom: 40px; 
        padding: 0 20px;
    }
    .hero-price { justify-content: center; }
    .hero-image-wrapper { 
        position: relative !important;
        right: auto !important;
        left: auto !important;
        width: 100vw !important;
        max-width: 100vw !important;
        transform: none !important;
        height: auto !important;
        aspect-ratio: 16 / 11;
        margin: 30px 0 0 !important;
        display: block !important;
        padding: 0 !important;
        overflow: hidden;
    }

    .slider-container {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .hero-image { 
        width: 100%; 
        height: 100%;
        object-fit: cover !important; /* Uniform view for same size look */
        border-radius: 40px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        max-width: 100% !important;
        background: #fff;
        transform: scale(0.98);
        transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
    }

    .hero-image.active {
        transform: scale(1);
    }

    .slider-controls {
        bottom: 25px !important;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        width: 100%;
        gap: 20px;
        z-index: 30;
    }

    .slider-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
        background: rgba(0,0,0,0.85) !important;
        backdrop-filter: blur(5px);
        border: none !important;
        color: #fff !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
    }

    .product-module { flex-direction: column !important; }
    .product-module-image { height: 350px !important; width: 100% !important; }
    .product-module-content { width: 100% !important; padding: 40px 20px !important; }
}

@media (max-width: 600px) {
    h1 { font-size: 2.1rem !important; }
    h2 { font-size: 1.7rem !important; }
    
    .hero-content p { font-size: 1rem; }
    
    .split-feature, .split-feature.reverse { 
        flex-direction: column !important; 
        text-align: center; 
        gap: 30px; 
        padding: 40px 20px !important;
    }
    
    .feature-list { display: inline-block; text-align: left; }
    
    .product-bottom { 
        flex-direction: column !important; 
        gap: 20px; 
        align-items: center !important;
        text-align: center;
    }

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

/* Page Transition Effects */
@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-transition {
    animation: pageFadeIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Form Popup Effect */
@keyframes formPopIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.form-animate {
    animation: formPopIn 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--text-color);
    color: var(--bg-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.scroll-top-btn .material-icons-round {
    font-size: 2.2rem;
}

/* Footer Icons Styling */
.footer-col h4 .material-icons-round {
    color: #ffdccc !important;
    font-size: 1.4rem;
    vertical-align: middle;
    margin-right: 12px;
}

.footer-col ul li a .material-icons-round {
    font-size: 1.1rem;
    vertical-align: middle;
    margin-right: 8px;
    color: #888;
}

.footer-col ul li a:hover .material-icons-round {
    color: #ffdccc;
}
/* Loading Spinner Effect for Buttons */
.btn-primary.loading, .btn-checkout.loading, .checkout-btn.loading, .product-checkout-btn.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
    opacity: 0.8;
}

.btn-primary.loading .material-icons-round,
.btn-checkout.loading .material-icons-round,
.checkout-btn.loading .material-icons-round,
.product-checkout-btn.loading .material-icons-round {
    visibility: hidden;
}

.btn-primary.loading::after, .btn-checkout.loading::after, .checkout-btn.loading::after, .product-checkout-btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s ease-in-out infinite;
    z-index: 2;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Global Reusable Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    z-index: 200000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 45px;
    border-radius: 32px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    position: relative;
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 38px;
    height: 38px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #666;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: #000;
    color: #fff;
}

/* Professional Status Badges & Admin Badges */
.status-badge, .badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Default / Pending / Processing -> ORANGE */
.status-badge, .status-badge.pending, .badge.pending { 
    background: #fff3e0; 
    color: #ef6c00; 
}

/* Shipped / Out for Delivery / Delivered -> GREEN */
.status-badge.shipped, .badge.shipped,
.status-badge.delivered, 
.status-badge.out-for-delivery { 
    background: #e8f5e9; 
    color: #2e7d32; 
}

/* Canceled -> RED */
.status-badge.canceled, .badge.canceled { 
    background: #ffebee; 
    color: #d32f2f; 
}

/* Tracking Timeline */
.tracking-timeline {
    margin: 35px auto 0;
    position: relative;
    padding-left: 35px;
    max-width: 400px;
    text-align: left;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: #eee;
}

.timeline-item {
    position: relative;
    padding-bottom: 25px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -30px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    z-index: 2;
}

.timeline-item.active::after {
    border-color: #000;
    background: #000;
}

.timeline-item h4 { margin: 0 0 5px 0; font-size: 0.95rem; }
.timeline-item p { margin: 0; font-size: 0.85rem; color: #666; }

/* Premium View Order Button */
.view-order-btn {
    background: #ffdccc;
    color: #000;
    border: none;
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    outline: none;
    box-shadow: 0 4px 15px rgba(255, 221, 204, 0.4);
    white-space: nowrap;
    min-width: max-content;
}

.view-order-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.view-order-btn .material-icons-round {
    font-size: 1.2rem;
}

/* Global Toast */
#toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 10000;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

#toast.active { transform: translateX(-50%) translateY(0); }
#toast .material-icons-round { color: #ffdccc; font-size: 1.2rem; }

/* Review Success notification */
#reviewSuccessToast {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    background: #fff;
    border-left: 5px solid #4caf50;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    max-width: 90vw;
}

#reviewSuccessToast.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.toast-icon-box {
    width: 40px;
    height: 40px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
/* OMNI Cart Drawer System */
#cart-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    z-index: 99998;
    opacity: 0;
    transition: opacity 0.4s ease;
}

#cart-overlay.active {
    display: block !important;
    opacity: 1;
}

#cart-drawer {
    position: fixed;
    top: 0 !important;
    bottom: 0 !important;
    right: -100%;
    width: 450px;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    background: #fff;
    z-index: 99999;
    transition: right 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -20px 0 60px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden !important;
}

#cart-drawer.active {
    right: 0 !important;
}

.cart-header {
    padding: 25px 30px;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    flex-shrink: 0;
}

.cart-title-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-icon-wrapper {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon-wrapper .material-icons-round {
    font-size: 1.4rem;
    color: #000;
}

.cart-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #000;
}

.cart-close-btn {
    background: rgba(0,0,0,0.05);
    border: none;
    cursor: pointer;
    color: #000;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cart-close-btn:hover {
    background: rgba(0,0,0,0.1);
    transform: rotate(90deg);
}

#cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.empty-icon {
    font-size: 4rem !important;
    color: #000;
    opacity: 0.1;
    margin-bottom: 20px;
}

.empty-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.discover-btn {
    margin-top: 25px;
    background: #000;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

.discover-btn .material-icons-round {
    font-size: 1.3rem;
}

.discover-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

#cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
    -webkit-overflow-scrolling: touch;
}
.cart-footer {
    padding: 30px;
    border-top: 1px solid #f1f1f1;
    background: #fff;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-summary-card {
    background: #fdfdfd;
    border: 1px solid #f2f2f2;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.cart-summary-row .label,
.cart-summary-row .value {
    flex-shrink: 1;
    min-width: 0;
}

.cart-summary-row .label {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.cart-summary-row .value {
    font-weight: 700;
    font-size: 1.15rem;
    color: #000;
}

.shipping-badge {
    color: #2e7d32;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.checkout-btn {
    width: 100% !important;
    height: 60px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    background: #000 !important;
    color: #fff !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
}

.cart-trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #777;
    width: 100%;
}

.cart-trust-badge .material-icons-round {
    font-size: 1.2rem;
    color: #2e7d32;
}

.cart-trust-badge span:last-child {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Responsive Cart adjustments */
@media (max-width: 768px) {
    #cart-drawer {
        width: 100vw !important;
        max-width: 100vw !important;
        right: -100vw !important;
        left: auto !important;
        box-shadow: none !important;
        height: 100vh !important;
        height: 100dvh !important;
        top: 0 !important;
        bottom: 0 !important;
    }
    
    #cart-drawer.active {
        right: 0 !important;
        left: 0 !important;
    }

    /* Refined Drawer Header for Mobile */
    .cart-header {
        padding: 15px 20px !important;
        min-height: 70px;
    }

    .cart-title {
        font-size: 1.05rem;
    }

    .cart-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .cart-close-btn {
        width: 34px;
        height: 34px;
    }

    #cart-items-container {
        padding: 24px 20px !important;
    }

    .cart-footer {
        padding: 20px !important;
        padding-bottom: calc(45px + env(safe-area-inset-bottom)) !important;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.03);
        gap: 15px;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .cart-summary-card {
        padding: 15px;
        border-radius: 20px;
    }

    .checkout-btn {
        height: 56px !important;
        font-size: 1rem !important;
        letter-spacing: -0.2px;
    }

    .checkout-btn span:not(.material-icons-round) {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .cart-trust-badge span:last-child {
        font-size: 0.75rem;
    }
}

.cart-trigger {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    color: #000;
    font-weight: 600;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.cart-trigger:hover {
    opacity: 0.7;
    transform: translateY(-1px);
}

.cart-trigger .material-icons-round {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.cart-trigger:hover .material-icons-round {
    transform: scale(1.1);
}

#cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff4444;
    color: #fff;
    font-size: 0.65rem;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-trigger:hover #cart-count {
    transform: scale(1.1) translateY(-2px);
}

/* End Cart Styles */

/* OMNI Product Specs Grid */
.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.spec-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: #444;
    background: #f5f5f7;
    border: 1px solid #e5e5ea;
    padding: 8px 12px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.spec-tag:hover {
    background: #fff;
    border-color: #000;
    transform: translateY(-2px);
}

.spec-tag .material-icons-round {
    font-size: 1rem;
}

.spec-tag span:not(.material-icons-round) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 600px) {
    .product-specs {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .spec-tag {
        padding: 6px 10px;
        font-size: 0.72rem;
    }
    .spec-tag .material-icons-round {
        font-size: 0.9rem;
    }
}

/* OMNI Smart Home Essentials Showcase */
.showcase-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.showcase-header {
    margin-bottom: 50px;
    text-align: center;
}

.showcase-header h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
}

.showcase-header p {
    color: #86868b;
    font-size: 1.25rem;
    font-weight: 500;
}

.product-carousel-wrapper {
    position: relative;
    padding: 20px 0 60px;
}

.product-carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    padding: 20px;
    margin: -20px;
}

.product-carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.product-card {
    flex: 0 0 400px;
    background: #f5f5f7;
    border-radius: 28px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: default;
}

.product-card:hover {
    transform: scale(1.02) translateY(-10px);
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.product-card-image {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 30px;
    transition: transform 0.5s ease;
}

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

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.product-card .product-subtitle {
    font-size: 0.95rem;
    color: #86868b;
    margin-bottom: 20px;
    font-weight: 500;
}

.product-card .product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 25px;
}

.product-card .add-to-cart-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.product-card .add-to-cart-btn:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-2px);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.carousel-nav-btn {
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.carousel-nav-btn .material-icons-round {
    font-size: 1.8rem;
}

.carousel-nav-btn:hover {
    background-color: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    transform: scale(1.1) translateY(-3px);
}

.dock-item svg {
    width: 20px;
    height: 20px;
    display: block;
}

@media (max-width: 968px) {
    .product-card {
        flex: 0 0 320px;
        padding: 30px;
    }
    .product-card-image {
        width: 220px;
        height: 220px;
    }
    .showcase-header h2 {
        font-size: 2.2rem;
    }
}
@keyframes dockBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
