/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c2c2c;
    --secondary-color: #666;
    --accent-color: #d4af37;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #ddd;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text-dark);
    overflow-x: hidden;
    background: url('./image folder/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: url('./image folder/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--secondary-color);
    text-align: center;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}


.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    text-shadow: 3px 3px 25px rgba(0, 0, 0, 0.7);
    text-align: center;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    font-size: 3rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-dots {
    display: none;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.scroll-text {
    display: none;
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-title-image {
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto 1rem auto;
    width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 10;
    background: transparent;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto;
}

/* Topics Section */
.topics-section {
    background: url('./image folder/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 2rem 0;
    padding: 4rem 0;
    border-radius: 20px;
}

.topics-slider-container {
    position: relative;
    overflow: hidden;
}

.topics-slider {
    display: flex;
    justify-content: center;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.topics-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.topics-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.topics-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

.topics-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.topics-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.topics-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.topic-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-1);
    transition: all 0.15s ease-out;
    flex: 0 0 300px;
    max-width: 300px;
}

.topic-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2);
    border-color: var(--accent);
}

.topic-image {
    height: 200px;
    overflow: hidden;
}

.topic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.topic-content {
    padding: 1.5rem;
}

.topic-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.topic-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.topic-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.topic-link:hover {
    color: var(--primary-color);
}

/* System/Pricing Section */
.system-section {
    background: url('./image folder/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 2rem 0;
    padding: 4rem 0;
    border-radius: 20px;
}

.system-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pricing-box {
    background: var(--bg-1);
    border: 1px solid var(--line);
    padding: 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow-1);
    transition: all 0.15s ease-out;
}

.pricing-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: black;
    margin-bottom: 1rem;
}

.pricing-box ul {
    list-style: none;
}

.pricing-box li {
    padding: 0.5rem 0;
    color: black;
    font-size: 0.95rem;
}

.pricing-box li.highlight {
    color: black;
    font-weight: 600;
    margin-top: 0.5rem;
}

.pricing-box li.note {
    font-size: 0.85rem;
    color: black;
    margin-top: 0.5rem;
}

/* Flavors Section */
.flavors-section {
    background: url('./image folder/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 2rem 0;
    padding: 4rem 0;
    border-radius: 20px;
}

.flavors-intro,
.fd-intro,
.bar-intro,
.interior-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.flavors-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.flavor-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.15s ease-out;
    box-shadow: var(--shadow-1);
    flex: 0 0 300px;
    max-width: 300px;
}

.flavor-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2);
    border-color: var(--accent);
}

.flavor-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flavor-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
}

.flavor-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 0.5rem;
}

.flavor-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.more-link-container {
    text-align: center;
    margin-top: 3rem;
}

.more-link {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.more-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Food & Drink Section */
.food-drink-section {
    background: url('./image folder/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 2rem 0;
    padding: 4rem 0;
    border-radius: 20px;
}

/* Beverage Menu Toggle List Styles */
.beverage-menu {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.menu-category {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: #f8f9fa;
    color: var(--text-dark);
    transition: background 0.3s ease;
}

.category-header:hover {
    background: var(--accent-color);
    color: white;
}

.category-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.category-header.active .toggle-icon {
    transform: rotate(45deg);
}

.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.category-content.active {
    max-height: 2000px;
}

.subcategory {
    border-bottom: 1px solid #eee;
}

.subcategory:last-child {
    border-bottom: none;
}

.subcategory-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    background: #f8f9fa;
    transition: background 0.3s ease;
}

.subcategory-header:hover {
    background: #e9ecef;
}

.subcategory-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
}

.subcategory-header.active .toggle-icon {
    transform: rotate(45deg);
}

.subcategory-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.subcategory-content.active {
    max-height: 1000px;
}

.subcategory-content .menu-item {
    background: white;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.subcategory-content .menu-item:last-child {
    border-bottom: none;
}

.subcategory-content .menu-item:hover {
    background: #f8f9fa;
    transform: none;
}

.subcategory-content .menu-item:hover h5,
.subcategory-content .menu-item:hover .price {
    color: #666;
}

.subcategory-content .menu-item h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.subcategory-content .menu-item .price {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.menu-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.menu-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.menu-item .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
}

/* Interior Section */
.interior-section {
    background: url('./image folder/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 2rem 0;
    padding: 4rem 0;
    border-radius: 20px;
}

.interior-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.interior-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.interior-item:hover {
    transform: scale(1.03);
}

.interior-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #666 0%, #999 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Reservation CTA Section */
.reservation-cta {
    background: url('./image folder/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 2rem 0;
    padding: 4rem 0;
    border-radius: 20px;
}

.reservation-text {
    text-align: center;
    margin-bottom: 2rem;
}

.reservation-text p {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.cta-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
}

.line-btn {
    background: #00C300;
    color: white;
}

.line-btn:hover {
    background: #00A000;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 195, 0, 0.4);
}

.phone-btn {
    background: white;
    color: var(--text-dark);
}

.phone-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.online-btn {
    background: var(--accent-color);
    color: white;
}

.online-btn:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-icon {
    font-size: 2.5rem;
}

.cta-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

.cta-text strong {
    display: block;
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

/* Store Info Section */
.store-info {
    background: url('./image folder/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 2rem 0;
    padding: 4rem 0;
    border-radius: 20px;
}

.store-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.store-image {
    width: 100%;
    aspect-ratio: 4/3;
}

.store-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.store-front-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.google-map {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.store-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-icon {
    font-size: 1.5rem;
}

/* Sister Stores Section */
.sister-stores {
    background: url('./image folder/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 2rem 0;
    padding: 4rem 0;
    border-radius: 20px;
}

.stores-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.store-tab {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.store-tab:hover,
.store-tab.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.stores-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.store-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.store-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 2rem;
    position: relative;
}

.header-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.footer-logo h3 {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: var(--text-2);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.15s ease-out;
}

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

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

.policy-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: var(--accent-color);
}

.page-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 0.8rem 1.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.page-top.visible {
    opacity: 1;
    visibility: visible;
}

.page-top:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Flavor Details Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a4a4a 100%);
    padding: 80px 0 40px;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.flavor-details {
    background: url('./image folder/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}

.flavor-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.brand-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.brand-tab {
    padding: 1rem 2.5rem;
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.brand-tab:hover,
.brand-tab.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.brand-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.brand-content.active {
    display: block;
}

.brand-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.flavor-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.flavor-detail-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.flavor-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.flavor-detail-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flavor-detail-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.flavor-detail-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.flavor-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
}

.flavor-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    text-align: center;
}

.flavor-tag.popular {
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    color: white;
}

.flavor-tag.classic {
    background: linear-gradient(135deg, #4ecdc4, #44a3a3);
    color: white;
}

.flavor-tag.nicotine-free {
    background: linear-gradient(135deg, #95e1d3, #6fcf97);
    color: white;
}

.nicotine-free-info {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
    border-left: 4px solid #4caf50;
}

.nicotine-free-info p {
    color: #2e7d32;
    font-size: 1.05rem;
    margin: 0;
}

/* Mix Recommendations */
.mix-section {
    background: white;
    padding: 4rem 2rem;
    border-radius: 12px;
    margin-top: 4rem;
}

.mix-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

.mix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.mix-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.mix-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mix-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.mix-combo {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.mix-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.back-btn-container {
    text-align: center;
    margin-top: 4rem;
}

.back-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Enjoy Mazaj Section */
.enjoy-mazaj-section {
    background: url('./image folder/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 2rem 0;
    padding: 4rem 0;
    border-radius: 20px;
}

.enjoy-content {
    max-width: 900px;
    margin: 0 auto;
}

.enjoy-text {
    text-align: center;
    margin-bottom: 3rem;
}

.enjoy-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.enjoy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.enjoy-feature {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.enjoy-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.enjoy-feature .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.enjoy-feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.enjoy-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.enjoy-details-link {
    text-align: center;
}

.details-link {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.details-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Enjoy Details Page Styles */
.enjoy-details {
    background: url('./image folder/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}

/* Rules & Guidelines Section */
.rules-section {
    margin-bottom: 4rem;
}

.rules-container {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.rule-item {
    background: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0 8px 8px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rule-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.rule-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.rule-item p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.rule-item p:last-child {
    margin-bottom: 0;
}

.rules-conclusion {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
}

.rules-conclusion h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.rules-conclusion p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.rules-conclusion p:last-child {
    margin-bottom: 0;
}

.enjoy-section {
    background: white;
    padding: 4rem 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.enjoy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.enjoy-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.enjoy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.enjoy-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.enjoy-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.enjoy-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Steps Container */
.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateX(5px);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tip-card .tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.tip-card ul {
    list-style: none;
    padding: 0;
}

.tip-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.tip-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Health Info */
.health-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.health-notice,
.health-tips {
    padding: 2rem;
    border-radius: 12px;
}

.health-notice {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-left: 4px solid #f39c12;
}

.health-tips {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    border-left: 4px solid #17a2b8;
}

.health-notice h3,
.health-tips h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.health-notice h3 {
    color: #8b6914;
}

.health-tips h3 {
    color: #0c5460;
}

.health-notice ul,
.health-tips ul {
    list-style: none;
    padding: 0;
}

.health-notice li,
.health-tips li {
    padding: 0.5rem 0;
    color: #2c3e50;
    position: relative;
    padding-left: 1.5rem;
}

.health-notice li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

.health-tips li::before {
    content: '💡';
    position: absolute;
    left: 0;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background: var(--accent-color);
    color: white;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer {
    padding: 1.5rem;
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 4rem 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-btn.phone-btn {
    background: var(--accent-color);
    color: white;
}

.contact-btn.online-btn {
    background: var(--primary-color);
    color: white;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-text {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .beverage-menu {
        padding: 0 0.5rem;
    }
    
    .menu-category {
        margin-bottom: 0.5rem;
    }
    
    .category-header {
        padding: 1rem;
    }
    
    .category-header h3 {
        font-size: 1.1rem;
    }
    
    .subcategory-header {
        padding: 0.8rem 1rem;
    }
    
    .subcategory-header h4 {
        font-size: 1rem;
    }
    
    .subcategory-content .menu-item {
        padding: 0.8rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .subcategory-content .menu-item h5 {
        font-size: 0.9rem;
    }
    
    .subcategory-content .menu-item .price {
        font-size: 0.9rem;
        align-self: flex-end;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .store-details {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .slide-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-buttons {
        grid-template-columns: 1fr;
    }

    .topics-grid {
        grid-template-columns: 1fr;
    }

    .system-content {
        grid-template-columns: 1fr;
    }

    .stores-tabs {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .brand-tabs {
        flex-direction: column;
        align-items: center;
    }

    .brand-tab {
        width: 80%;
        max-width: 300px;
    }

    .flavor-detail-grid {
        grid-template-columns: 1fr;
    }

    .mix-grid {
        grid-template-columns: 1fr;
    }

    .enjoy-features {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .enjoy-grid {
        grid-template-columns: 1fr;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        align-self: center;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .health-info {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .enjoy-section {
        padding: 3rem 2rem;
    }

    .contact-section {
        padding: 3rem 2rem;
    }
}
