/* Theme 6: Modern Minimal */
/* Mobile-first design with clean spacing and subtle shadows */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8f1e7;
    color: #0a0a0a;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header Section */
.header {
    background-color: #ffffff;
    padding: 24px 20px;
    text-align: center;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #f0f0f0;
}

.header-content {
    max-width: 100%;
}

.header-logo {
    max-width: 90px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.header-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.5px;
}

/* Banner Carousel Section */
.banner-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 16px 0;
}

.banner-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.banner-slide {
    min-width: 100%;
    padding: 0 15px;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    aspect-ratio: 2/1;
    border: 1px solid #f0f0f0;
}

.banner-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 16px 15px 0 15px;
}

.banner-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    background-color: #0a0a0a;
    width: 20px;
    border-radius: 3px;
}

/* Section Titles */
.section-title {
    font-size: 14px;
    font-weight: 600;
    color: #0a0a0a;
    margin: 0;
    padding: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.categories-title {
    padding: 14px 15px 8px 15px;
}

.items-title {
    padding: 18px 15px 10px 15px;
    font-size: 13px;
}

/* Categories Section */
.categories-section {
    padding: 20px 15px 16px 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.categories-container {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-bottom: 5px;
}

.category-item {
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.category-item:active {
    opacity: 0.7;
}

.category-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background-color: #f8f8f8;
    border-radius: 24px;
    padding: 8px 16px 8px 8px;
    border: 1.5px solid transparent;
    transition: all 0.3s ease;
}

.category-item.active .category-content {
    background-color: #0a0a0a;
    border-color: #0a0a0a;
}

.category-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #ffffff;
}

.category-name {
    font-size: 14px;
    font-weight: 600;
    color: #0a0a0a;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.category-item.active .category-name {
    color: #ffffff;
}

/* Items Section */
.items-section {
    padding: 16px 15px 80px 15px;
}

.items-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.item-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: border-color 0.2s ease;
}

.item-card:active {
    border-color: #e0e0e0;
}

.item-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.item-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f3e9dd;
}

.item-details {
    padding: 16px;
}

.item-title {
    font-size: 19px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.item-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-price {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a0a;
}

/* Sticky Social Buttons - Right Side Minimal */
.floating-social {
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.social-btn {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease;
}

.social-btn:active {
    transform: scale(0.95);
}

.social-btn.whatsapp {
    background-color: #25D366;
    color: white;
}

.social-btn.phone {
    background-color: #007AFF;
    color: white;
}

.social-btn.facebook {
    background-color: #1877F2;
    color: white;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-btn.snapchat {
    background-color: #FFFC00;
    color: #000000;
}

.social-btn.tiktok {
    background-color: #000000;
    color: white;
}

/* Scrollbar styling */
.categories-section::-webkit-scrollbar {
    height: 3px;
}

.categories-section::-webkit-scrollbar-track {
    background: transparent;
}

.categories-section::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 2px;
}

@media (max-width: 480px) {
    
}
