/* Base Styles & Variables - Light Theme */
:root {
    --primary-color: #0f172a;
    --primary-dark: #1e293b;
    --secondary-color: #f1f5f9;
    --accent-color: #2563eb;
    --bg-color: #f8fafc;
    --surface-color: #ffffff;
    --surface-light: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --gradient-1: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    --gradient-2: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --border-color: rgba(15, 23, 42, 0.1);
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: #ffffff;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
}

.logo-dot {
    color: var(--accent-color);
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:not(.btn):hover {
    color: var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--surface-color);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: var(--transition);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.close-menu-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 10rem 0 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(248, 250, 252, 0) 70%);
    z-index: -1;
}

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

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-categories {
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-categories span {
    color: var(--text-primary);
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/5;
}

.experience-card {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.exp-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.exp-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Features Section */
.features {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--surface-color);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Products Section */
.products {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.product-card {
    background: var(--surface-color);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.product-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Customization Section */
.customization {
    padding: 5rem 0;
}

.customization-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--surface-color);
    border-radius: 32px;
    padding: 4rem;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.customization-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0.05;
    z-index: 0;
}

.customization-content, .customization-stats {
    position: relative;
    z-index: 1;
}

.customization-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.customization-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.custom-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.custom-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.custom-list i {
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.custom-list strong {
    color: var(--text-primary);
}

.customization-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: rgba(241, 245, 249, 0.8);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.stat-box h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 5rem 0 8rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--surface-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.25rem;
}

.method-details h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.method-details p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

.contact-form {
    background: var(--surface-color);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Footer */
footer {
    background: var(--surface-color);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) minmax(220px, 1fr);
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 0;
    max-width: 360px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
}

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

.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 2rem;
}

.modal-content {
    background: var(--surface-color);
    width: 100%;
    max-width: 1000px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    max-height: calc(100vh - 3rem);
    overflow-y: auto;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    min-height: 0;
}

.modal-gallery,
.modal-info {
    min-width: 0;
}

.modal-gallery {
    padding: 2rem;
    background: var(--surface-light);
}

@media (max-width: 992px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }
    .modal-info {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .product-modal {
        padding: 0;
        align-items: flex-start;
        overflow-y: auto;
        overflow-x: hidden;
    }
    .modal-content {
        width: 100%;
        margin: 0;
        border-radius: 0;
        max-height: none;
        padding-top: 3.5rem;
    }
    .modal-gallery {
        padding: 1.25rem;
    }
    .modal-info {
        padding: 1.25rem;
    }
    .modal-info h2 {
        font-size: 1.85rem;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    .hero-container {
        gap: 2rem;
    }
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .customization-container {
        grid-template-columns: 1fr;
        padding: 3rem;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero {
        padding-top: 6rem;
        padding-bottom: 3rem;
        text-align: center;
        min-height: auto;
    }
    .hero-container {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.4rem;
    }
    .hero p {
        margin: 0 auto 2rem;
    }
    .hero-categories {
        justify-content: center;
    }
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-image-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }
    .hero-image {
        aspect-ratio: 4 / 5;
    }
    .features-container {
        grid-template-columns: 1fr;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .customization-stats {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-links {
        align-items: flex-start;
    }
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 2rem;
}

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

.modal-content {
    background: var(--surface-color);
    width: min(100%, 1000px);
    border-radius: 24px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    max-height: calc(100vh - 4rem);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.product-modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--surface-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.close-modal:hover {
    background: var(--accent-color);
    color: #fff;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.modal-gallery {
    padding: 2rem;
    background: var(--surface-light);
}

.main-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

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

.thumbnail-list {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.thumbnail-list::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    flex-shrink: 0;
}

.thumbnail.active {
    border-color: var(--accent-color);
}

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

.modal-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.modal-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.modal-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.modal-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

.feature-item i {
    color: var(--accent-color);
}

@media (max-width: 992px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }
    .modal-info {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .product-modal {
        padding: 0.75rem;
        align-items: flex-end;
        overflow-y: auto;
    }
    .modal-content {
        width: 100%;
        max-width: 100%;
        max-height: calc(100vh - 1.5rem);
        border-radius: 16px 16px 0 0;
        margin: 0;
        overflow-y: auto;
        overflow-x: hidden;
    }
    .close-modal {
        top: 0.75rem;
        right: 0.75rem;
        width: 36px;
        height: 36px;
    }
    .modal-gallery {
        padding: 1.25rem;
    }
    .modal-info {
        padding: 1.25rem;
        justify-content: flex-start;
        padding-bottom: 2rem;
    }
    .modal-info h2 {
        font-size: 1.8rem;
    }
    .main-image {
        aspect-ratio: 4 / 3;
    }
    .thumbnail {
        width: 64px;
        height: 64px;
    }
}

/* Make product cards clickable */
.product-card {
    cursor: pointer;
    position: relative;
}

/* Modern Clickable Indicator Styles */
.product-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5) 0%, transparent 40%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.product-card:hover .product-img-wrapper::after {
    opacity: 1;
}

.product-action-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-action-indicator {
    opacity: 1;
    transform: translateY(0);
}

.product-action-indicator i {
    transition: transform 0.3s ease;
}

.product-card:hover .product-action-indicator i {
    transform: translateX(6px);
}

/* Carousel Layout Styles */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 2rem 0;
}

.product-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide Firefox standard scrollbar */
    padding: 1.5rem 0.5rem;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

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

/* Card flex sizing */
.product-carousel .product-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: 320px;
    box-sizing: border-box;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.product-carousel .product-card:hover {
    transform: translateY(-8px);
}

@media (max-width: 1024px) {
    .product-carousel .product-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .product-carousel {
        gap: 1.5rem;
    }
    .product-carousel .product-card {
        flex: 0 0 85%;
        min-width: 260px;
    }
    .carousel-nav-btn {
        display: none !important; /* Touch swipe on mobile */
    }
}

/* Nav Buttons Styles */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.carousel-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.3);
}

.prev-btn {
    left: -23px;
}

.next-btn {
    right: -23px;
}

/* Carousel dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* WhatsApp Order Button Specific Styling */
.wa-order-btn {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: white !important;
    font-weight: 600 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.wa-order-btn:hover {
    background-color: #128C7E !important;
    border-color: #128C7E !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4) !important;
    transform: translateY(-2px) !important;
}

/* Add custom WhatsApp color to dynamic product modal button */
#modalInquireBtn.wa-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    width: 100%;
}

/* Extra small devices tweaks */
@media (max-width: 480px) {
    .container { padding: 0 1rem; }

    /* Hero: tighter typography and hide floating card to avoid overlap */
    .hero h1 { font-size: 1.9rem; }
    .hero p { font-size: 1rem; max-width: none; }
    .hero-actions { gap: 0.5rem; }
    .hero-actions .btn { width: 100%; }
    .experience-card {
        display: block;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        padding: 1rem 1.25rem;
        width: auto;
        max-width: 90%;
    }
    .exp-number {
        font-size: 1.6rem;
    }
    .exp-text {
        font-size: 0.75rem;
    }

    /* Carousel: make cards wider so one is visible at a time */
    .product-carousel .product-card { flex: 0 0 95%; min-width: 220px; }

    /* Modal: use full-screen bottom sheet style for smaller screens */
    .product-modal {
        align-items: flex-end;
        padding: 0;
        overflow-y: auto;
    }
    .modal-content {
        width: 100%;
        min-height: auto;
        max-width: 100%;
        max-height: calc(100vh - 1rem);
        border-radius: 12px 12px 0 0;
        margin: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .modal-gallery {
        padding: 1rem;
    }
    .modal-info {
        padding: 1rem;
    }
    .main-image { aspect-ratio: 1 / 1; border-radius: 8px; }
    .thumbnail { width: 56px; height: 56px; }
    .close-modal { top: 0.5rem; right: 0.5rem; }

    /* Navbar and mobile menu spacing */
    .navbar { padding: 0.75rem 0; }
    .logo-image { height: 44px; }

    /* Footer spacing */
    .footer-container { gap: 1.25rem; }
}
