:root {
    --primary-cyan: #1100ff;
    --primary-blue: #10f;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #eeeeee;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition);
}

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

/* Header */
.header {
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

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

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

.logo-circle {
    width: 36px;
    height: 36px;
    background: var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.logo-text h1 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.logo-text p {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 0.5px;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.icon-btn {
    font-size: 20px;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    position: relative;
    height: 45vh;
    min-height: 350px;
    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: -1;
}

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

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 1;
}

.hero-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-call {
    background: var(--primary-cyan);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 210, 255, 0.4);
}

/* Info Cards */
.info-cards {
    padding: 30px 0;
    background: var(--bg-white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.info-card {
    background: var(--bg-white);
    padding: 20px 10px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    font-size: 20px;
    color: var(--primary-cyan);
    margin-bottom: 10px;
}

.info-card h3 {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-gray);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-card p {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.card-link {
    font-size: 12px;
    color: var(--primary-cyan);
    font-weight: 600;
}

/* Location Section */
.location-section {
    padding: 40px 0;
}

.section-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

.location-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper {
    position: relative;
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.map-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5) opacity(0.8);
}

.map-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ff3b30;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.3);
}

.map-marker.secondary {
    background: var(--primary-cyan);
    box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.3);
}

.btn-directions {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
}

.address-footer {
    padding: 15px 20px;
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

/* Photos Section */
.photos-section {
    padding: 40px 0;
    overflow: hidden;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.section-header p.subtitle {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.photo-marquee {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    background: var(--bg-light);
}

.marquee-content {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.photo-item {
    width: 320px;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

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

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Product Section */
.products-section {
    padding: 40px 0;
}

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

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-gray);
    position: relative;
}

.header-icons .dot {
    width: 6px;
    height: 6px;
    background: var(--primary-cyan);
    border-radius: 50%;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.product-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    padding: 15px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card.hidden {
    display: none;
}

.product-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.product-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #f0f0f0;
}

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

.product-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product-details h3 {
    font-size: 16px;
    font-weight: 700;
}

.stock-status {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.in-stock {
    background: #e8f5e9;
    color: #2e7d32;
}

.limited {
    background: #fff3e0;
    color: #ef6c00;
}

.out-of-stock {
    background: #ffebee;
    color: #c62828;
}

.price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-cyan);
    margin: 5px 0;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.check-link {
    font-size: 12px;
    color: var(--primary-cyan);
    font-weight: 700;
}

.btn-outline {
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 700;
    color: var(--text-gray);
}

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

/* Reviews */
.reviews-section {
    padding: 40px 0;
    background: var(--bg-light);
}

.overall-rating {
    font-size: 18px;
    font-weight: 800;
    color: #ff9500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.review-card {
    background: var(--bg-white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

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

.reviewer-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.reviewer-info h4 {
    font-size: 15px;
    font-weight: 700;
}

.reviewer-info .time {
    font-size: 11px;
    color: var(--text-gray);
}

.stars {
    color: #ff9500;
    font-size: 12px;
}

.review-text {
    font-size: 14px;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.5;
}

.btn-write-review {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    color: var(--primary-cyan);
    font-weight: 700;
    padding: 15px;
    font-size: 16px;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: #0a0a0a;
    color: white;
    text-align: center;
}

.footer-logo {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.footer h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.info-item i {
    color: var(--primary-cyan);
    font-size: 20px;
}

.info-item p {
    font-size: 14px;
    color: #aaaaaa;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.footer-bottom p {
    font-size: 12px;
    color: #666666;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-bottom .small {
    font-size: 10px;
    color: #444444;
    margin-top: 5px;
}

/* Floating FAB */
.fab-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-cyan);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.4);
    z-index: 999;
}

.fab-call:hover {
    transform: scale(1.1);
}

/* Responsiveness */
@media (max-width: 768px) {
    .photo-carousel {
        grid-template-columns: repeat(3, 200px);
    }

    .hero-text h2 {
        font-size: 36px;
    }
}

@media (min-width: 769px) {
    .info-grid {
        gap: 30px;
    }

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

    .reviews-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-info {
        flex-direction: row;
        justify-content: center;
        gap: 50px;
    }
}