﻿/* Home2 Modern Styles - Inspired by Premium Beverage Sites */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Updated Color Palette - More premium and modern */
    --primary-dark: #1a1a2e;
    --primary-blue: #16213e;
    --accent-gold: #e94560;
    --accent-orange: #f39c12;
    --success-green: #27ae60;
    --warning-red: #e74c3c;
    --text-white: #ffffff;
    --text-light: #ecf0f1;
    --text-gray: #7f8c8d;
    --text-dark: #2c3e50;
    --bg-light: #f8f9fa;
    --bg-section: #ffffff;
    --border-color: #e9ecef;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 5px 25px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

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

/* Additional Styles for Better Navigation and Sections */
.section-title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Image Error Handling Styles */
.product-image img[src*="data:image/svg+xml"] {
    background-color: #f8f9fa;
    border: 1px dashed #dee2e6;
    opacity: 0.8;
    filter: grayscale(0.3);
}

.product-image img {
    transition: opacity 0.3s ease;
}

.product-image img:not([src*="data:image/svg+xml"]):not([src=""]) {
    opacity: 1;
}

.section-title-link:hover {
    color: var(--accent-gold);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 1px;
}

/* Make product sections have white background */
.product-section {
    background: var(--bg-section);
    padding: 4rem 0;
    margin: 0;
}

.product-section.dark-section {
    background: var(--bg-light);
}

/* Category navigation improvements */
.category-nav {
    background: var(--bg-section);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.category-item {
    background: var(--bg-section);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.category-item:hover {
    background: var(--bg-light);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Enhanced page styling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Better section spacing */
.product-section {
    background: #ffffff;
    padding: 3rem 0;
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
}

.product-section.dark-section {
    background: #fafbfc;
}

/* Category hero sections */
.category-hero {
    padding: 6rem 0 4rem 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.category-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.category-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.category-info i {
    font-size: 4rem;
    color: var(--accent-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.category-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.category-hero p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    max-width: 600px;
}

/* Search Results Styles */
.search-results-header {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.search-results-header h2 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.search-results-header h2 i {
    color: var(--accent-gold);
    margin-right: 0.5rem;
}

.search-results-header p {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.clear-search {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent-gold);
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.clear-search:hover {
    background: var(--accent-gold);
    color: white;
    text-decoration: none;
}

.category-stats {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.category-stats span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Category filter section */
.category-filter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.category-filter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.subcategory-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn.active {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.filter-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sort-controls select {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    backdrop-filter: blur(10px);
}

.sort-controls select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
}

.sort-controls select option {
    background: var(--primary-dark);
    color: white;
}

/* Category products section */
.category-products {
    padding: 3rem 0 5rem 0;
    background: #f8f9fa;
    min-height: 70vh;
}

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

/* Products grid for category pages - Simplified for performance */
.products-scroll-wrapper {
    position: relative;
}

.products-scroll-wrapper .scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.products-scroll-wrapper .scroll-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.products-scroll-wrapper .scroll-btn.prev {
    left: -60px;
}

.products-scroll-wrapper .scroll-btn.next {
    right: -60px;
}

.category-products .products-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.category-products .products-scroll::-webkit-scrollbar {
    display: none;
}

.category-products .product-card-v2 {
    flex: 0 0 auto;
    width: 320px;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.category-products .product-card-v2 img {
    transform: translateZ(0);
    backface-visibility: hidden;
}

@media (max-width: 479px) {
    .products-scroll-wrapper .scroll-btn {
        display: none;
    }
    
    .category-products .products-scroll {
        gap: 1rem;
        padding-left: 1rem;
    }
    
    .category-products .product-card-v2 {
        width: calc(85vw - 1rem);
        max-width: 340px;
    }
}

/* View all button */
.view-all-btn {
    background: var(--accent-gold);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #d63384;
    transform: translateY(-2px);
}

/* Search Dropdown Styles */
.search-container {
    position: relative;
}

.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: var(--shadow-medium);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-result-item {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-result-item:hover {
    background: var(--bg-light);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item.no-results {
    color: var(--text-gray);
    cursor: default;
    justify-content: center;
}

.search-result-item.no-results:hover {
    background: white;
}

.search-result-item.view-all {
    background: var(--bg-light);
    color: var(--accent-gold);
    font-weight: 500;
    justify-content: center;
}

.search-result-item.view-all:hover {
    background: var(--accent-gold);
    color: white;
}

.result-info {
    flex: 1;
}

.result-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.result-category {
    font-size: 0.875rem;
    color: var(--accent-gold);
    margin-bottom: 0.25rem;
}

.result-description {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.result-price {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.search-result-item mark {
    background: #fff3cd;
    color: #856404;
    padding: 0 2px;
    border-radius: 2px;
}

/* White text styling for specific section titles */
.slide-text h1 span,
.section-title-link:has(i.fa-beer),
.section-title-link:has(i.fa-cocktail),
.section-title-link:has(i.fa-burn) {
    color: white !important;
}

/* Alternative approach for better browser compatibility */
.slide-text h1 span {
    color: white !important;
}

a[href="beer.php"].section-title-link,
a[href="rtd.php"].section-title-link,
a[href="cigarettes.php"].section-title-link {
    color: white !important;
}

/* About Page Styles */
.about-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23a)"/><circle cx="800" cy="300" r="100" fill="url(%23a)"/><circle cx="600" cy="700" r="200" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.brand-highlight {
    background: linear-gradient(135deg, var(--accent-gold), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    font-size: 2rem;
    color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    animation: float 6s ease-in-out infinite;
}

.float-item:nth-child(1) {
    top: 20%;
    left: -10%;
    animation-delay: -1s;
}

.float-item:nth-child(2) {
    top: 60%;
    right: -10%;
    animation-delay: -3s;
}

.float-item:nth-child(3) {
    bottom: 20%;
    left: 10%;
    animation-delay: -5s;
}

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

/* Our Story Section */
.our-story {
    padding: 6rem 0;
    background: white;
}

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

.section-label {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.story-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.story-timeline {
    position: relative;
    padding-left: 3rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.75rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: var(--accent-gold);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--accent-gold);
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.story-quote {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
}

.story-quote blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.story-quote cite {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.story-visual .image-gallery {
    position: relative;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-thumbs {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-thumbs img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-thumbs img:hover {
    transform: scale(1.1);
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.values-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.values-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

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

.value-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
    margin-bottom: 2rem;
}

.icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), #ffd700);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon-bg i {
    font-size: 2rem;
    color: white;
}

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

.value-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
}

.card-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-gold), transparent);
    opacity: 0.1;
    border-radius: 0 20px 0 100px;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: white;
}

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

.team-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.team-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

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

.team-member {
    position: relative;
}

.member-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-card:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.member-overlay .social-links {
    display: flex;
    gap: 1rem;
}

.member-overlay .social-links a {
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.member-overlay .social-links a:hover {
    background: white;
    color: var(--accent-gold);
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.mission-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.mission-header .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mission-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.mission-content {
    position: relative;
    z-index: 2;
}

.mission-text-container {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-text {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
}

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

.mission-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon i {
    font-size: 1.8rem;
    color: white;
}

.mission-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Visit Section */
.visit-section {
    padding: 6rem 0;
    background: white;
}

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

.visit-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.visit-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.visit-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.visit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-gold);
}

.visit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.visit-icon i {
    font-size: 2rem;
    color: white;
}

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

.visit-info p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hours-list {
    margin-bottom: 1.5rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item span:first-child {
    color: var(--text-dark);
    font-weight: 500;
}

.hour-item span:last-child {
    color: var(--text-gray);
}

.visit-link {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.visit-link:hover {
    background: #cc9900;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* About Page Responsive Styles */
@media (max-width: 1024px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 0 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .story-header h2,
    .values-header h2,
    .team-header h2,
    .mission-header h2,
    .visit-header h2 {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    /* Fix sections padding */
    .our-story,
    .our-values,
    .our-team,
    .our-mission,
    .visit-us {
        padding: 3rem 0;
    }
}

@media (max-width: 479px) {
    .about-hero {
        padding: 2.5rem 0 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-stats .stat-item {
        width: 100%;
        padding: 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-stats .stat-item:last-child {
        border-bottom: none;
    }
    
    .hero-stats .stat-number {
        font-size: 1.75rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.85rem;
    }
    
    .story-header h2,
    .values-header h2,
    .team-header h2,
    .mission-header h2,
    .visit-header h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .story-header p,
    .values-header p,
    .team-header p,
    .mission-header p,
    .visit-header p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .story-text,
    .value-card,
    .team-member,
    .mission-item {
        padding: 1.5rem;
    }
    
    .value-card h3,
    .mission-item h3 {
        font-size: 1.25rem;
    }
    
    .team-member h4 {
        font-size: 1.15rem;
    }
    
    /* Fix sections padding for mobile */
    .our-story,
    .our-values,
    .our-team,
    .our-mission,
    .visit-us {
        padding: 2.5rem 0;
    }
    
    .visit-link {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        text-align: center;
    }
}
    .mission-header h2,
    .visit-header h2 {
        font-size: 2rem;
    }
    
    .our-story,
    .values-section,
    .team-section,
    .mission-section,
    .visit-section {
        padding: 4rem 0;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
    
    .mission-card,
    .visit-card {
        padding: 2rem 1.5rem;
    }
    
    .visit-header p {
        font-size: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
    }
    
    .story-timeline {
        padding-left: 2rem;
    }
}

/* Search Results Section */
.search-results-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.search-results-section .section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.search-results-section .section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.clear-search-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.clear-search-link:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Products grid for search results - 3 columns */
.products-grid-category {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tablet: 2 items per row */
@media (max-width: 1024px) and (min-width: 769px) {
    .products-grid-category {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile: 1 item per row */
@media (max-width: 768px) {
    .products-grid-category {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
}

/* Search input enhancements */
.search-container input {
    border-radius: 8px 8px 0 0;
}

.search-container input:focus + .search-dropdown,
.search-dropdown:hover {
    display: block;
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE DESIGN
   Modern approach with better breakpoints
   ======================================== */

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .category-hero {
        padding: 4.5rem 0 3.5rem 0;
    }
    
    .category-hero h1 {
        font-size: 3rem;
    }
    
    .category-hero p {
        font-size: 1.15rem;
    }
    
    .filter-controls {
        gap: 1.5rem;
    }
    
    .subcategory-filters {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .product-section {
        padding: 2.5rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Tablet Portrait (480px - 767px) */
@media (max-width: 767px) and (min-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
    
    /* Category Pages */
    .category-hero {
        padding: 3.5rem 0 2.5rem 0;
        text-align: center;
    }
    
    .category-hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .category-hero p {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    
    .category-info {
        flex-direction: column;
        gap: 2rem;
    }
    
    .category-info i {
        font-size: 3.5rem;
    }
    
    .category-stats {
        padding: 0.85rem 1.75rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    /* Filters */
    .category-filter-section {
        padding: 1.75rem 0;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .subcategory-filters {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .filter-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        flex: 0 0 auto;
    }
    
    .sort-controls {
        justify-content: center;
    }
    
    .sort-controls select {
        padding: 0.75rem 1.25rem;
        min-width: 180px;
        font-size: 0.9rem;
    }
    
    /* Products */
    .category-products {
        padding: 2.5rem 0;
    }
    
    .product-section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    /* Navigation */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Search */
    .search-dropdown {
        left: -1rem;
        right: -1rem;
    }
    
    .result-description {
        font-size: 0.85rem;
    }
}

/* Mobile (320px - 479px) - Complete Redesign */
@media (max-width: 479px) {
    /* Base */
    .container {
        padding: 0 1rem;
    }
    
    /* Category Hero - Mobile Optimized */
    .category-hero {
        padding: 3rem 0 2rem 0;
        text-align: center;
    }
    
    .category-hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .category-hero p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .category-info {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .category-info i {
        font-size: 3rem;
    }
    
    .category-stats {
        padding: 0.75rem 1rem;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .stat-item {
        width: 100%;
        padding: 0.75rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Filters - Mobile Stack */
    .category-filter-section {
        padding: 1.5rem 0;
        background: white;
        border-radius: 16px;
        margin: 1rem 0;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
    }
    
    .subcategory-filters {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .filter-btn {
        width: 100%;
        padding: 1rem;
        font-size: 0.95rem;
        border-radius: 12px;
        justify-content: center;
        text-align: center;
    }
    
    .filter-btn.active {
        background: var(--gradient-primary);
        color: white;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }
    
    .sort-controls {
        width: 100%;
        justify-content: stretch;
    }
    
    .sort-controls label {
        display: none;
    }
    
    .sort-controls select {
        width: 100%;
        padding: 1rem;
        font-size: 0.95rem;
        border-radius: 12px;
        background: white;
        border: 2px solid var(--border-color);
    }
    
    /* Products Section */
    .category-products {
        padding: 2rem 0;
    }
    
    .product-section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Mobile Navigation - Complete Redesign */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-brand h1 {
        font-size: 1.5rem;
    }
    
    .nav-brand span {
        font-size: 0.75rem;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .cart-wrapper {
        order: 2;
        scale: 0.9;
    }
    
    .cart-text small {
        font-size: 0.7rem;
    }
    
    .cart-text strong {
        font-size: 0.85rem;
    }
    
    /* Header Mobile */
    .header {
        padding: 1rem 0;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .logo h1 {
        font-size: 1.25rem;
    }
    
    /* Search Mobile */
    .search-container {
        width: 100%;
        order: 3;
    }
    
    .search-box input {
        width: 100%;
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
        border-radius: 12px;
    }
    
    .search-dropdown {
        left: 0;
        right: 0;
        border-radius: 12px;
        margin-top: 0.5rem;
    }
    
    .search-result-item {
        padding: 1rem;
    }
    
    .result-name {
        font-size: 0.95rem;
    }
    
    .result-category {
        font-size: 0.8rem;
    }
    
    .result-description {
        display: none;
    }
    
    .result-price {
        font-size: 1.1rem;
    }
    
    /* Top Bar Mobile - Ultra Compact */
    .top-bar {
        padding: 0.35rem 0;
        font-size: 0.7rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .top-bar::-webkit-scrollbar {
        display: none;
    }
    
    .top-bar-content {
        flex-direction: row;
        gap: 0.75rem;
        text-align: left;
        white-space: nowrap;
        min-width: max-content;
        align-items: center;
    }
    
    .top-bar-left {
        gap: 0.75rem;
        flex-wrap: nowrap;
        justify-content: flex-start;
        flex-shrink: 0;
    }
    
    .top-bar-left span {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
    }
    
    .top-bar-left span i {
        font-size: 0.7rem;
    }
    
    .top-bar-right {
        gap: 0.5rem;
        flex-wrap: nowrap;
        justify-content: flex-end;
        margin-left: auto;
        flex-shrink: 0;
    }
    
    .contact-buttons {
        flex-direction: row;
        width: auto;
        gap: 0.5rem;
    }
    
    .contact-btn {
        width: auto;
        padding: 0.35rem 0.75rem;
        font-size: 0.7rem;
        justify-content: center;
        border-radius: 6px;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
    }
    
    .contact-btn i {
        font-size: 0.75rem;
    }
    
    .social-links {
        display: flex;
        gap: 0.35rem;
    }
    
    .social-links a {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-section:last-child {
        border-bottom: none;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .footer-link {
        font-size: 0.95rem;
        padding: 0.5rem;
    }
    
    /* Touch Optimization */
    button,
    a,
    .filter-btn,
    .nav-link {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Typography Mobile */
    body {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    h1 { font-size: 2rem; line-height: 1.2; }
    h2 { font-size: 1.5rem; line-height: 1.3; }
    h3 { font-size: 1.25rem; line-height: 1.4; }
    h4 { font-size: 1.1rem; line-height: 1.4; }
    
    /* Spacing Mobile */
    section {
        padding: 2rem 0;
    }
    
    /* Images Mobile */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Top Bar */
.top-bar {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-right a {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.top-bar-right a:hover {
    color: var(--accent-gold);
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-btn {
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.call-btn {
    background: transparent !important;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.call-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.whatsapp-btn {
    background: var(--primary-blue);
    color: var(--text-white);
    border: 1px solid var(--primary-blue);
}

.whatsapp-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-links a {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-2px);
}

/* Brand-specific social media colors */
.social-links a:nth-child(1):hover {
    background: #1877f2; /* Facebook blue */
}

.social-links a:nth-child(2):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); /* Instagram gradient */
}

.social-links a:nth-child(3):hover {
    background: #1da1f2; /* Twitter blue */
}

/* Navigation */
.navbar {
    background: var(--text-white);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}

.nav-brand h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    letter-spacing: -0.02em;
}

.nav-brand span {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.nav-center {
    flex: 1;
    max-width: 500px;
}

.search-container {
    position: relative;
    display: flex;
    background: var(--bg-light);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.search-container:focus-within {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.1);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.search-container input {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-container input:focus {
    padding-left: 1.75rem;
}

.search-container input::placeholder {
    transition: all 0.3s ease;
}

.search-container input:focus::placeholder {
    transform: translateX(5px);
    opacity: 0.5;
}

.search-container button {
    padding: 0.75rem 1.5rem;
    border: none;
    background: var(--accent-gold);
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-container button:hover {
    background: #d63447;
    transform: scale(1.05);
    box-shadow: inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.search-container button:active {
    transform: scale(0.95);
    transition: all 0.1s ease;
}

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

/* Page Navigation Dropdown - Mobile Only */
.page-nav-dropdown {
    position: relative;
    display: none; /* Hidden on desktop by default */
}

.nav-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ff6b7a 100%);
    border: none;
    color: var(--text-white);
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.nav-dropdown-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-dropdown-btn:active {
    transform: translateY(0) scale(1);
    transition: all 0.1s ease;
}

.nav-dropdown-btn.active {
    background: linear-gradient(135deg, #ff6b7a 0%, var(--accent-gold) 100%);
}

.nav-dropdown-btn i:first-child {
    font-size: 1rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-label {
    font-size: 0.875rem;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--bg-section);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1100; /* Above navbar */
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.nav-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.05) 0%, rgba(255, 107, 122, 0.05) 100%);
    padding-left: 1.5rem;
    transform: translateX(5px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown-item.active {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ff6b7a 100%);
    color: var(--text-white);
}

.dropdown-item.active:hover {
    background: linear-gradient(135deg, #ff6b7a 0%, var(--accent-gold) 100%);
    padding-left: 1.5rem;
}

.dropdown-item i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), #ff6b7a);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(233, 69, 96, 0.3);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-gold);
}

.cart-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.cart-wrapper:hover {
    background: var(--primary-dark);
    color: white;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 26, 46, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-icon {
    position: relative;
    font-size: 1.25rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-gold);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.cart-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.cart-text small {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Mobile Menu - Hidden by default on desktop */
.mobile-menu {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: var(--accent-gold);
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: white;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    background: linear-gradient(135deg, var(--bg-light), white);
}

.mobile-nav-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.mobile-nav-brand h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.mobile-nav-brand span {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 500;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(233, 69, 96, 0.1);
    color: var(--accent-gold);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--accent-gold);
    color: white;
    transform: rotate(90deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.mobile-nav-link {
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-nav-link:hover {
    background: rgba(233, 69, 96, 0.05);
    padding-left: 2rem;
    color: var(--accent-gold);
}

.mobile-nav-link.active {
    background: linear-gradient(90deg, rgba(233, 69, 96, 0.1), transparent);
    color: var(--accent-gold);
    font-weight: 600;
    border-left: 4px solid var(--accent-gold);
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--border-color);
    background: var(--bg-light);
}

.mobile-cart-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-gold), #ff6b7a);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
    transition: all 0.3s ease;
}

.mobile-cart-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.mobile-cart-link i {
    font-size: 1.25rem;
}

.mobile-cart-link strong {
    font-size: 1.15rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), #ff6b7a);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(233, 69, 96, 0.5);
}

.mobile-nav-link:hover::before {
    width: 100%;
}

.mobile-nav-link:hover {
    padding-left: 1rem;
    color: var(--accent-gold);
    transform: translateX(5px);
}

.mobile-nav-link:hover {
    color: var(--accent-gold);
    padding-left: 1rem;
}

.mobile-nav-link:hover::before {
    width: 100%;
}

.mobile-menu-footer {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cart-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.mobile-cart-link:hover {
    color: var(--accent-gold);
}

.mobile-cart-link i {
    font-size: 1.3rem;
}

/* Category Navigation */
.category-nav {
    background: var(--bg-section);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.category-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    min-width: 100px;
}

.category-item:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    color: var(--accent-gold);
}

.category-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.category-item span {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.category-item small {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.slide-text {
    color: white;
}

.slide-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.slide-text h1 span {
    display: block;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.slide-text p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.cta-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}\n
.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.cta-btn:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

.slide-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-products {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.floating-product {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    animation: float 6s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.floating-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-product:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.floating-product:hover::before {
    opacity: 1;
}

/* Category-specific colors */
.wine-icon {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.3) 0%, rgba(165, 42, 42, 0.3) 100%);
    border-color: rgba(139, 69, 19, 0.4);
    color: #F5DEB3;
}

.wine-icon:hover {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.6) 0%, rgba(165, 42, 42, 0.6) 100%);
    color: #FFE4B5;
    border-color: #CD853F;
}

.beer-icon {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.3) 0%, rgba(255, 140, 0, 0.3) 100%);
    border-color: rgba(255, 165, 0, 0.4);
    color: #FFF8DC;
}

.beer-icon:hover {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.6) 0%, rgba(255, 140, 0, 0.6) 100%);
    color: #FFFAF0;
    border-color: #DAA520;
}

.spirits-icon {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.3) 0%, rgba(160, 82, 45, 0.3) 100%);
    border-color: rgba(139, 69, 19, 0.4);
    color: #F5DEB3;
}

.spirits-icon:hover {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.6) 0%, rgba(160, 82, 45, 0.6) 100%);
    color: #FAEBD7;
    border-color: #A0522D;
}

.rtd-icon {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.3) 0%, rgba(255, 105, 180, 0.3) 100%);
    border-color: rgba(255, 20, 147, 0.4);
    color: #FFE4E1;
}

.rtd-icon:hover {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.6) 0%, rgba(255, 105, 180, 0.6) 100%);
    color: #FFF0F5;
    border-color: #FF1493;
}

.cigars-icon {
    background: linear-gradient(135deg, rgba(101, 67, 33, 0.3) 0%, rgba(139, 69, 19, 0.3) 100%);
    border-color: rgba(101, 67, 33, 0.4);
    color: #F5DEB3;
}

.cigars-icon:hover {
    background: linear-gradient(135deg, rgba(101, 67, 33, 0.6) 0%, rgba(139, 69, 19, 0.6) 100%);
    color: #FAEBD7;
    border-color: #654321;
}

.floating-product:nth-child(2) {
    animation-delay: -2s;
    margin-left: 3rem;
}

.floating-product:nth-child(3) {
    animation-delay: -4s;
    margin-right: 3rem;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
    }
}

/* Enhanced hover effect for floating products */
.floating-product:hover {
    animation-play-state: paused;
    cursor: pointer;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.slider-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.slider-controls button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

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

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Product Sections */
.product-section {
    padding: 4rem 0;
    background: var(--bg-section);
}

.product-section.dark-section {
    background: var(--primary-dark);
    color: var(--text-light);
}

.product-section.offers-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    color: white;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-controls {
    display: flex;
    gap: 1rem;
}

.scroll-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid currentColor;
    background: transparent;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-btn:hover {
    background: currentColor;
    color: var(--bg-section);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.scroll-btn:active {
    transform: scale(0.95) rotate(90deg);
    transition: all 0.1s ease;
}

.products-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
}

.products-scroll::-webkit-scrollbar {
    display: none;
}

/* Product Cards V2 */
.product-card-v2 {
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.dark-section .product-card-v2 {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offers-section .product-card-v2 {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-card-v2:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-badge,
.discount-badge,
.featured-badge,
.stock-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card-v2:hover .product-badge,
.product-card-v2:hover .discount-badge,
.product-card-v2:hover .featured-badge,
.product-card-v2:hover .stock-badge {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.featured-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    top: 3rem;
}

.stock-badge {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    top: 5.25rem;
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #10b981, #059669);
}

.product-badge.offer {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    animation: pulseGlow 2s infinite;
}

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

@keyframes pulseGlow {
    0% { 
        transform: scale(1); 
        box-shadow: 0 2px 10px rgba(239, 68, 68, 0.3);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 4px 20px rgba(239, 68, 68, 0.6);
    }
    100% { 
        transform: scale(1); 
        box-shadow: 0 2px 10px rgba(239, 68, 68, 0.3);
    }
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: transparent;
}

.product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-image img {
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    mix-blend-mode: multiply;
}

/* Hide broken images */
.product-image img[src=""],
.product-image img:not([src]) {
    display: none;
    opacity: 0;
    visibility: hidden;
}

/* When image fails to load, hide it completely */
.product-image.image-error {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image.image-error::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
}

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

/* Special styling for beverage bottle images */
.product-image img[src*="bottle"], 
.product-image img[src*="wine"], 
.product-image img[src*="beer"], 
.product-image img[src*="spirit"], 
.product-image img[src*="rtd"] {
    height: 85%;
    width: auto;
    max-width: 80%;
    object-fit: contain;
}

.product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-v2:hover .product-actions {
    opacity: 1;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: var(--accent-gold);
    color: white;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.action-btn:active {
    transform: scale(0.95);
    transition: all 0.1s ease;
}

.product-info {
    padding: 1.5rem 1.5rem 1.75rem;
    color: var(--text-dark);
}

.dark-section .product-info,
.offers-section .product-info {
    color: var(--text-light);
}

.product-category {
    font-size: 0.8rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-category:hover {
    letter-spacing: 1.2px;
    transform: translateX(3px);
    text-shadow: 0 2px 8px rgba(233, 69, 96, 0.3);
}

.product-info h3,
.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-name a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: var(--accent-gold);
}

.product-info p,
.product-description {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.stars {
    display: flex;
    gap: 1px;
}

.stars i {
    color: #e5e7eb;
    font-size: 0.8rem;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stars i.filled {
    color: #fbbf24;
}

.stars i:hover,
.stars i.filled:hover {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.5));
}

.rating span {
    font-size: 0.8rem;
    color: #6b7280;
    margin-left: 0.25rem;
}

.price-section,
.product-price-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-price-discounted {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.product-card-v2:hover .current-price {
    transform: scale(1.1);
    text-shadow: 0 2px 10px rgba(233, 69, 96, 0.3);
}

.original-price {
    font-size: 0.95rem;
    text-decoration: line-through;
    color: #9ca3af;
}

.product-price-regular,
.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.discount-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.offer-name {
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 600;
    margin-top: 0.25rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.view-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    background: white;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.view-btn:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.view-btn:active {
    transform: translateY(-1px) scale(1);
    transition: all 0.1s ease;
}

.quick-add-btn,
.add-to-cart-btn {
    width: 45px;
    height: 45px;
    padding: 0;
    border: none;
    background: linear-gradient(135deg, var(--accent-gold), #e6b800);
    color: white;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-add-btn:hover,
.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #e6b800, #cc9900);
    transform: translateY(-3px) scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.quick-add-btn:active,
.add-to-cart-btn:active {
    transform: translateY(-1px) scale(1);
    transition: all 0.1s ease;
}

.add-to-cart {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    background: linear-gradient(135deg, var(--accent-gold), #e6b800);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, #e6b800, #cc9900);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.add-to-cart:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    transition: all 0.1s ease;
}

.add-to-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Product Details - Alcohol and Origin */
.product-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: #6b7280;
    flex-wrap: wrap;
}

.product-details span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.product-details i {
    color: var(--accent-gold);
    font-size: 0.85rem;
}

/* Features Showcase */
.features-showcase {
    padding: 3rem 0;
    background: var(--bg-light);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(233, 69, 96, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: var(--gradient-dark);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: white;
    font-size: 1rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    padding: 1rem 2rem;
    border: none;
    background: var(--accent-gold);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #d63447;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.contact-info i {
    color: var(--accent-gold);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-center {
        display: none;
    }
    
    .slide-text h1 {
        font-size: 3rem;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .top-bar-left {
        gap: 1rem;
    }
    
    .nav-right .nav-links {
        display: none;
    }
    
    /* Show page navigation dropdown on mobile only */
    .page-nav-dropdown {
        display: inline-block;
    }
    
    /* Page navigation dropdown mobile styles */
    .nav-dropdown-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .dropdown-label {
        font-size: 0.8rem;
    }
    
    .nav-dropdown-btn i:first-child {
        font-size: 0.9rem;
    }
    
    .nav-dropdown-menu {
        min-width: 180px;
        right: 0;
    }
    
    .dropdown-item {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
    
    .dropdown-item:hover {
        padding-left: 1.25rem;
    }
    
    .dropdown-item.active:hover {
        padding-left: 1.25rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .category-items {
        gap: 1rem;
    }
    
    .category-item {
        min-width: 80px;
        padding: 0.75rem 0.5rem;
    }
    
    /* Hero section mobile fixes */
    .hero-slider {
        height: 50vh;
        min-height: 400px;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 1rem;
    }
    
    .slide-text {
        order: 1;
        padding: 0 1rem;
    }
    
    .slide-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .slide-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-image {
        order: 2;
        margin-top: 1rem;
    }
    
    .floating-products {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .floating-product {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin: 0.25rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .products-scroll {
        gap: 1rem;
    }
    
    .product-card-v2 {
        min-width: 280px;
    }
    
    .product-image {
        height: 240px;
        padding: 0.75rem;
    }
    
    .product-image img {
        height: 85%;
        max-width: 85%;
        min-height: 160px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .nav-brand h1 {
        font-size: 1.5rem;
    }
    
    .cart-text {
        display: none;
    }
    
    /* Hero section mobile fixes for small screens */
    .hero-slider {
        height: 45vh;
        min-height: 350px;
    }
    
    .slide {
        padding: 1rem 0;
    }
    
    .slide-content {
        padding: 0.5rem;
        gap: 1.5rem;
    }
    
    .slide-text {
        padding: 0 0.5rem;
    }
    
    .slide-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .slide-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .floating-products {
        gap: 0.75rem;
        margin-top: 0.5rem;
    }
    
    .floating-product {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .product-image {
        height: 220px;
        padding: 0.5rem;
    }
    
    .product-image img {
        min-height: 140px;
    }
    
    .product-info {
        padding: 1rem 1.25rem 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
.products-scroll::-webkit-scrollbar {
    height: 6px;
}

.products-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.products-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 3px;
}

.products-scroll::-webkit-scrollbar-thumb:hover {
    background: #d63447;
}

/* Loading animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Cart Animation */
.cart-bounce {
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Cart Notifications */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.cart-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.cart-notification.success {
    background: #10b981;
}

.cart-notification.error {
    background: #ef4444;
}

/* Modern Cart Summary Styles */
.cart-summary {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.cart-summary h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.summary-details {
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1rem;
}

.summary-row span {
    color: var(--text-dark);
}

.summary-row .amount {
    font-weight: 600;
    color: var(--accent-gold);
}

.summary-row .shipping-cost {
    color: #10b981;
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
    margin: 1rem 0;
}

.total-row {
    border-top: 2px solid #f0f0f0;
    padding-top: 1rem !important;
    margin-top: 1rem;
}

.total-label, .final-label {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
}

.total-amount, .final-amount {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: var(--accent-gold) !important;
}

.free-shipping-notice {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.free-shipping-notice i {
    margin-right: 0.5rem;
}

/* Modern Action Buttons */
.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.clear-btn {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #6c757d;
    border: 2px solid #dee2e6;
}

.clear-btn:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    color: #495057;
    border-color: #adb5bd;
}

.checkout-btn {
    background: linear-gradient(135deg, var(--accent-gold), #e6b800);
    color: white;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #e6b800, #cc9900);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.checkout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.checkout-btn:hover::before {
    left: 100%;
}

/* Security Info */
.security-info {
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    margin-top: 1rem;
}

.security-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: #6c757d;
    text-align: center;
}

.security-item i {
    font-size: 1rem;
    color: var(--accent-gold);
}

/* Modern Place Order Button */
.place-order-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-gold), #e6b800);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2rem;
}

.place-order-btn:hover {
    background: linear-gradient(135deg, #e6b800, #cc9900);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.place-order-btn:active {
    transform: translateY(0);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.place-order-btn:hover .btn-shine {
    left: 100%;
}

/* Payment Security Section */
.payment-security {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.payment-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.info-item i {
    width: 16px;
    color: var(--accent-gold);
    font-size: 1rem;
}

/* Total Divider */
.total-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    margin: 1rem 0;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cart-actions {
        gap: 0.75rem;
    }
    
    .action-btn {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .security-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .security-item {
        flex-direction: row;
        justify-content: center;
    }
    
    .payment-info {
        gap: 0.5rem;
    }
    
    .info-item {
        font-size: 0.85rem;
    }
}

/* Selection styles */
::selection {
    background: var(--accent-gold);
    color: white;
}

/* Enhanced Cart Functionality */
.cart-count.bounce {
    animation: cartBounce 0.5s ease-out;
}

@keyframes cartBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.cart-wrapper {
    text-decoration: none;
    color: inherit;
}

.cart-wrapper:hover {
    text-decoration: none;
}

/* Staff Orders Styles */
.staff-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
}

.login-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.login-header h1 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.login-header p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.login-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--accent-gold);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background: #d63447;
}

.login-footer {
    margin-top: 2rem;
}

.login-footer a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
}

.error-message {
    background: #ffe6e6;
    color: #e74c3c;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.success-message {
    background: #e8f5e8;
    color: #27ae60;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.staff-orders {
    padding: 2rem 0;
    min-height: 100vh;
    background: var(--bg-light);
}

.orders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.header-left h1 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.header-left p {
    color: var(--text-gray);
}

.stats-summary {
    display: flex;
    gap: 2rem;
    margin-right: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

.logout-btn {
    background: var(--warning-red);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.logout-btn:hover {
    background: #c0392b;
}

.orders-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

/* All Orders - Blue */
.filter-btn[onclick="filterOrders('all')"] {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.filter-btn[onclick="filterOrders('all')"]:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f5582 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Pending - Orange */
.filter-btn[onclick="filterOrders('pending')"] {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
}

.filter-btn[onclick="filterOrders('pending')"]:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* Processing - Purple */
.filter-btn[onclick="filterOrders('processing')"] {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
}

.filter-btn[onclick="filterOrders('processing')"]:hover {
    background: linear-gradient(135deg, #8e44ad 0%, #7d3c98 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.4);
}

/* Completed - Green */
.filter-btn[onclick="filterOrders('completed')"] {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
}

.filter-btn[onclick="filterOrders('completed')"]:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #16a085 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

/* Cancelled - Red */
.filter-btn[onclick="filterOrders('cancelled')"] {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.filter-btn[onclick="filterOrders('cancelled')"]:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Active state enhancement */
.filter-btn.active {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.3);
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    min-width: 250px;
}

.search-box i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
}

.no-orders {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 10px;
}

.no-orders-icon {
    font-size: 4rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.order-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.order-info h3 {
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.order-date {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-processing {
    background: #cce5ff;
    color: #004085;
}

.status-completed {
    background: #d1ecf1;
    color: #0c5460;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 1rem;
}

.customer-details h4,
.order-items h4,
.order-notes h4 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.customer-details p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.items-list {
    max-height: 200px;
    overflow-y: auto;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
}

.item-details {
    flex: 1;
}

.item-name {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
}

.item-qty {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.item-price {
    font-weight: 600;
    color: var(--accent-gold);
}

.order-total {
    text-align: right;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.order-notes {
    grid-column: 1 / -1;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.order-notes p {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    font-style: italic;
}

.order-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.status-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-controls select {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: white;
    cursor: pointer;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.call-btn {
    background: var(--success-green);
    color: white;
}

.call-btn:hover {
    background: #219a52;
}

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

.email-btn:hover {
    background: #e67e22;
}

/* ==================== CART PAGE STYLES ==================== */
.cart-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cart-header h1 {
    margin: 0;
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-header h1 i {
    color: var(--accent-gold);
    font-size: 1.75rem;
}

.continue-shopping {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.continue-shopping:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
    width: 100%;
}

.cart-items {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: block;
    visibility: visible;
    min-height: 200px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transition: all 0.3s ease;
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: var(--accent-gold);
}

.item-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart-item:hover .item-image img {
    transform: scale(1.05);
}

.item-details {
    flex: 1;
}

.item-details h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
}

.item-category {
    color: var(--accent-gold);
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
}

.item-description {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.4;
    font-size: 0.9rem;
}

.item-price {
    text-align: center;
}

.unit-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    padding: 0.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--accent-gold);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.qty-btn:hover {
    background: var(--accent-orange);
    transform: scale(1.1);
}

.qty-input {
    width: 60px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 6px;
    padding: 0.5rem;
    font-weight: 600;
    background: white;
}

.item-total {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.item-actions {
    display: flex;
    align-items: center;
}

.remove-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #dc3545;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: #c82333;
    transform: scale(1.1);
}

.cart-summary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    position: sticky;
    top: 2rem;
}

.cart-summary h3 {
    margin: 0 0 1.5rem 0;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.summary-details {
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.summary-row:last-child {
    border-bottom: none;
}

.amount {
    font-weight: 600;
    color: var(--text-dark);
}

.shipping-cost {
    color: var(--success-green);
}

.free-shipping-notice {
    background: linear-gradient(135deg, var(--success-green) 0%, #28a745 100%);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.summary-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    margin: 1rem 0;
    border-radius: 2px;
}

.total-row {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem !important;
    margin: 1rem -1rem 0 -1rem;
    border-radius: 12px;
    border: none !important;
}

.total-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* ==========================================
   NEW SIMPLE MOBILE NAVIGATION
   ========================================== */

/* Mobile Navigation Button - COMPLETELY HIDDEN ON DESKTOP */
.mobile-nav-btn {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
    background: var(--accent-gold);
    color: var(--text-dark);
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 999;
}

.mobile-nav-btn:hover {
    background: #c5a742;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.mobile-nav-btn i {
    margin-right: 8px;
}

/* Mobile Dropdown Menu */
.mobile-nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

.mobile-nav-dropdown.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 1rem 0;
}

.mobile-nav-list li {
    margin: 0;
}

.mobile-nav-list a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.mobile-nav-list a:hover,
.mobile-nav-list a:focus {
    background: var(--accent-gold);
    color: white;
    padding-left: 2rem;
    border-left: 4px solid var(--primary-dark);
}

.mobile-nav-list a:last-child {
    border-bottom: none;
}

.mobile-nav-list .mobile-cart-btn {
    background: var(--primary-dark);
    color: white;
    margin: 1rem 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-bottom: none;
}

.mobile-nav-list .mobile-cart-btn:hover {
    background: #2c3e50;
    padding-left: 1rem;
    border-left: none;
}

/* Page Content Retraction When Mobile Menu Active */
body.mobile-menu-active {
    overflow: hidden;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-nav-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .nav-center {
        display: none !important;
    }
    
    .nav-content {
        position: relative;
    }
    
    .navbar {
        position: relative;
        z-index: 1001;
    }
}

/* DESKTOP - Ensure button is completely disabled */
@media (min-width: 769px) {
    .mobile-nav-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        cursor: default !important;
    }
    
    .mobile-nav-dropdown {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

@media (max-width: 480px) {
    .mobile-nav-btn {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .mobile-nav-list a {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    min-height: 60px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.clear-btn {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    border: 2px solid transparent;
    order: 2;
}

.clear-btn:hover {
    background: linear-gradient(135deg, #5a6268 0%, #343a40 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

.checkout-btn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    color: white;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    order: 1;
    font-size: 1.2rem;
    min-height: 70px;
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.checkout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.checkout-btn:hover::before {
    left: 100%;
}

.security-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.security-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.05);
}

.security-item i {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.security-item span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-gray);
}

.empty-cart {
    text-align: center;
    background: white;
    padding: 4rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.empty-cart-icon {
    font-size: 4rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-cart h2 {
    margin: 0 0 1rem 0;
    color: var(--text-dark);
    font-size: 2rem;
}

.empty-cart p {
    margin: 0 0 2rem 0;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.start-shopping-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.start-shopping-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
}

/* Responsive Design for Cart */
@media (max-width: 1024px) {
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .item-quantity {
        justify-content: center;
    }
    
    .security-info {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* Responsive Design for Staff Orders */
@media (max-width: 768px) {
    .orders-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .stats-summary {
        margin-right: 0;
    }
    
    .orders-filters {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-buttons {
        flex-wrap: wrap;
    }
    
    .search-box input {
        min-width: 200px;
    }
    
    .order-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .order-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .action-buttons {
        justify-content: center;
    }
}

/* Contact Buttons Styles */
.contact-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.call-btn {
    background: var(--accent-gold);
    color: var(--text-dark);
    border-color: var(--accent-gold);
}

.call-btn:hover {
    background: transparent;
    color: var(--accent-gold);
    transform: translateY(-1px);
}

.whatsapp-btn {
    background: var(--primary-blue);
    color: var(--text-white);
    border-color: var(--primary-blue);
}

.whatsapp-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.contact-buttons-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-btn, .footer-whatsapp-btn {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-contact-btn {
    background: var(--accent-gold);
    color: var(--text-dark);
}

.footer-contact-btn:hover {
    background: #c5a742;
    transform: translateX(3px);
}

.footer-whatsapp-btn {
    background: #25d366;
    color: white;
}

.footer-whatsapp-btn:hover {
    background: #1ea952;
    transform: translateX(3px);
}

.contact-buttons-visit {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.visit-contact-btn {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.visit-contact-btn.call-btn {
    background: var(--accent-gold);
    color: var(--text-dark);
}

.visit-contact-btn.call-btn:hover {
    background: #c5a742;
    transform: translateY(-2px);
}

.visit-contact-btn.whatsapp-btn {
    background: #25d366;
    color: white;
}

.visit-contact-btn.whatsapp-btn:hover {
    background: #1ea952;
    transform: translateY(-2px);
}

.location-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive adjustments for contact buttons */
@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .visit-contact-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

}


/* Mobile Navigation Fix */
@media (max-width: 768px) {
    .nav-content {
        padding: 0 1rem;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-right .nav-links {
        display: none !important;
    }
    
    .cart-wrapper {
        display: flex !important;
        margin-left: auto;
    }
    
    .cart-text small {
        display: none;
    }
    
    .cart-text strong {
        font-size: 0.9rem;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1001;
    }
    
    /* Mobile menu overlay */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }
    
    .mobile-menu.active {
        transform: translateX(0);
    }
}

/* ============================================
   ADVANCED ANIMATIONS & MICRO-INTERACTIONS
   ============================================ */

/* Shimmer effect for loading states */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Shake animation for errors */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

/* Smooth fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth slide in from right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

/* Smooth scale in animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scale-in {
    animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Ripple effect for buttons */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
}

.ripple-effect:active::after {
    animation: ripple 0.6s ease-out;
}

/* Smooth button press effect */
.btn-press:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Glow on hover effect */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(233, 69, 96, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(233, 69, 96, 0.6),
                    0 0 30px rgba(233, 69, 96, 0.4);
    }
}

.glow-hover:hover {
    animation: glow 2s ease-in-out infinite;
}

/* Smooth rotate animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotate-animation {
    animation: rotate 2s linear infinite;
}

/* Heartbeat animation for favorites */
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(0.9);
    }
    20%, 40%, 60% {
        transform: scale(1.1);
    }
    50%, 70% {
        transform: scale(1.05);
    }
}

.heartbeat {
    animation: heartbeat 1.3s ease-in-out;
}

/* Smooth elastic bounce */
@keyframes elasticBounce {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.25);
    }
    40% {
        transform: scale(0.95);
    }
    60% {
        transform: scale(1.1);
    }
    80% {
        transform: scale(0.98);
    }
    100% {
        transform: scale(1);
    }
}

.elastic-bounce {
    animation: elasticBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Smooth swing animation */
@keyframes swing {
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.swing {
    transform-origin: top center;
    animation: swing 1s ease-in-out;
}

/* ============================================
   UTILITY CLASSES FOR SMOOTH INTERACTIONS
   ============================================ */

/* Smooth transitions for all interactive elements */
button,
a,
input,
textarea,
select {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Smooth hover lift */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Smooth hover scale */
.hover-scale {
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

/* Smooth hover glow */
.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.4);
}

/* Smooth hover brightness */
.hover-brightness:hover {
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

/* Click effect */
.click-shrink:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Smooth opacity transitions */
.fade {
    transition: opacity 0.3s ease;
}

.fade:hover {
    opacity: 0.8;
}

/* Smooth rotation on hover */
.hover-rotate:hover {
    transform: rotate(5deg);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Smooth border grow */
.border-grow {
    position: relative;
}

.border-grow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateX(-50%);
}

.border-grow:hover::after {
    width: 100%;
}

/* Smooth background slide */
.bg-slide {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bg-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.bg-slide:hover::before {
    left: 100%;
}

/* Enhanced focus states for accessibility */
*:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Smooth disabled state */
button:disabled,
input:disabled,
select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* End of enhancements */