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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    color: white;
}

.header-top {
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 0;
}

.contact-info {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    font-size: 12px;
    font-weight: bold;
}

.flags {
    display: flex;
    gap: 8px;
}

.flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

/* Navigation Styles */
.navbar {
    padding: 15px 0;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0 auto;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4CAF50;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn, .user-btn, .cart-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.search-btn:hover, .user-btn:hover, .cart-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.buy-now-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buy-now-btn:hover {
    background: #45a049;
}

/* Main Content */
.main-content {
    position: relative;
}

/* Carousel Styles */
.carousel-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

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

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

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

.carousel-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
    color: white;
}

.date-badge {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.main-text h1 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 0.9;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main-text .highlight {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    font-weight: 900;
    text-stroke: 2px white;
    -webkit-text-stroke: 2px white;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.copyright {
    font-size: 12px;
    margin: 20px 0;
    opacity: 0.8;
}

.vacation-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.vacation-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Ticket Selection Section */
.ticket-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    padding: 40px 0;
    margin-top: -100px;
    position: relative;
    z-index: 30;
}

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

.ticket-form {
    display: flex;
    align-items: end;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.passport-select {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    min-width: 200px;
    cursor: pointer;
}

.visitor-counter {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.counter-btn {
    background: #f0f0f0;
    border: none;
    width: 40px;
    height: 48px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.counter-btn:hover {
    background: #e0e0e0;
}

.visitor-input {
    border: none;
    text-align: center;
    width: 60px;
    height: 48px;
    font-size: 16px;
    font-weight: bold;
}

.buy-ticket-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 48px;
}

.buy-ticket-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .main-text h1 {
        font-size: 2.5rem;
    }
    
    .ticket-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .carousel-content {
        left: 5%;
        right: 5%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .main-text h1 {
        font-size: 2rem;
    }
    
    .nav-actions {
        gap: 10px;
    }
    
    .buy-now-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}


/* Product Pages Styles */
.products-section {
    padding: 40px 20px;
    background-color: #f8f9fa;
    min-height: 80vh;
}

.products-section h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: bold;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-card h2 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-card p {
    color: #6c757d;
    margin-bottom: 10px;
    line-height: 1.5;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #e74c3c;
}

.current-price {
    color: #27ae60;
    font-size: 1.3rem;
}

.date-picker-container {
    margin-bottom: 15px;
}

.date-picker-container label {
    display: block;
    margin-bottom: 5px;
    color: #2c3e50;
    font-weight: 500;
}

.date-picker-container input[type="date"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.date-picker-container input[type="date"]:focus {
    outline: none;
    border-color: #3498db;
}

.half-price-option {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.half-price-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #3498db;
}

.half-price-option label {
    color: #2c3e50;
    font-weight: 500;
    cursor: pointer;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-selector label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 2px solid #3498db;
    background: white;
    color: #3498db;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #3498db;
    color: white;
}

.quantity-input {
    width: 60px;
    padding: 8px;
    text-align: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
}

.quantity-input:focus {
    outline: none;
    border-color: #3498db;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

/* Cart Sidebar Styles */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.cart-sidebar.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.cart-header h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart:hover {
    background: #f8f9fa;
    color: #e74c3c;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    gap: 15px;
}

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

.item-info {
    flex: 1;
}

.item-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 0.95rem;
    line-height: 1.3;
}

.item-details {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
}

.item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 80px;
}

.item-quantity {
    width: 50px;
    padding: 4px 8px;
    text-align: center;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    font-size: 0.9rem;
}

.item-price {
    font-weight: 600;
    color: #27ae60;
    font-size: 0.95rem;
}

.remove-item {
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item:hover {
    background: #c0392b;
}

.cart-total {
    border-top: 2px solid #e9ecef;
    padding-top: 20px;
    margin-top: auto;
}

.total-amount {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.checkout-btn {
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f4e79);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.empty-cart-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-cart p {
    font-size: 1.1rem;
    margin: 0;
}

/* Cart Button Badge */
.cart-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
}

/* Responsive Design for Cart Sidebar */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-sidebar.active {
        right: 0;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .item-controls {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-width: auto;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-section h1 {
        font-size: 2rem;
    }
    
    .cart-content {
        margin: 20px;
        padding: 20px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .item-controls {
        width: 100%;
        justify-content: space-between;
    }
}


/* New Sections Styles */

/* Highlights Section */
.highlights-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.highlights-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.highlights-section p {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.highlight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.highlight-card h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin: 20px 20px 10px;
    font-weight: 600;
}

.highlight-card p {
    color: #6c757d;
    margin: 0 20px 20px;
    line-height: 1.6;
    text-align: left;
}

.btn-highlight {
    display: inline-block;
    margin: 0 20px 20px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-highlight:hover {
    background: linear-gradient(135deg, #2980b9, #1f4e79);
    transform: translateY(-2px);
}

/* Events Section */
.events-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, transparent, #f3e5f5);
}

.events-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.events-section > .container > p {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.event-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-info {
    padding: 20px;
}

.event-info h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.event-details span {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-category {
    color: #3498db !important;
    font-weight: 500;
}

.event-info p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.btn-event {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-event:hover {
    background: linear-gradient(135deg, #2980b9, #1f4e79);
    transform: translateY(-2px);
}

/* Food and Attractions Sections */
.food-section, .attractions-section {
    padding: 60px 20px;
    background-color: white;
}

.attractions-section {
    background-color: #f8f9fa;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.section-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
}

.main-image {
    grid-row: 1 / 3;
}

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

.side-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-images img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.section-text h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.section-text p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.section-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #3498db;
    background: white;
    color: #3498db;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #3498db;
    color: white;
}

.btn-section {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-section:hover {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    transform: translateY(-2px);
}

/* Characters Section */
.characters-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.characters-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.characters-section p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.characters-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.characters-track {
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease;
}

.character-item {
    flex: 0 0 150px;
    text-align: center;
}

.character-item img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.character-item img:hover {
    transform: scale(1.1);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid white;
    background: transparent;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: white;
    color: #2c3e50;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-images {
        grid-template-columns: 1fr;
    }
    
    .main-image {
        grid-row: auto;
    }
    
    .side-images {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .side-images img {
        flex: 0 0 100px;
        height: 80px;
    }
    
    .characters-track {
        gap: 20px;
    }
    
    .character-item {
        flex: 0 0 100px;
    }
    
    .character-item img {
        width: 80px;
        height: 80px;
    }
    
    .highlights-section h2,
    .events-section h2,
    .section-text h2,
    .characters-section h2 {
        font-size: 2rem;
    }
}


/* Cart Styles */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.cart-btn {
    position: relative;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cart-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.cart-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-cart:hover {
    background-color: #e9ecef;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.empty-cart-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

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

.item-info {
    flex: 1;
}

.item-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.item-details {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.item-price {
    font-weight: 600;
    color: #27ae60;
    font-size: 1.1rem;
}

.item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-controls .quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.quantity-controls .quantity-btn:hover {
    background-color: #f8f9fa;
}

.quantity-display {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.remove-item {
    background: #e74c3c;
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.remove-item:hover {
    background-color: #c0392b;
}

.cart-total {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

#totalAmount {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.checkout-btn:hover {
    background-color: #229954;
}

/* Responsive cart styles */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}


/* Checkout Modal Styles */
.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

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

.checkout-content {
    position: relative;
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.checkout-header h2 {
    margin: 0;
    color: #333;
    font-size: 24px;
}

.close-checkout {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-checkout:hover {
    color: #333;
}

.checkout-body {
    padding: 30px;
}

.order-summary {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.order-summary h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 18px;
}

.order-items {
    margin-bottom: 15px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

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

.item-name {
    flex: 1;
    font-weight: 500;
}

.item-quantity {
    margin: 0 15px;
    color: #666;
}

.item-price {
    font-weight: 600;
    color: #27ae60;
}

.order-total {
    text-align: right;
    font-size: 18px;
    color: #333;
    padding-top: 10px;
    border-top: 2px solid #ddd;
}

.customer-form {
    margin-bottom: 30px;
}

.customer-form h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 18px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.payment-methods h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 18px;
}

.payment-options {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.payment-option {
    flex: 1;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option:hover {
    border-color: #007bff;
    background: #f8f9fa;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option input[type="radio"]:checked + label {
    color: #007bff;
}

.payment-option input[type="radio"]:checked {
    border-color: #007bff;
    background: transparent;
}

.payment-option.selected {
    border-color: #007bff;
    background: transparent;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    margin: 0;
}

.payment-icon {
    font-size: 24px;
}

.payment-info {
    flex: 1;
}

.payment-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.payment-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 4px;
}

.payment-discount {
    color: #27ae60;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.payment-total {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.card-details {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.installments {
    margin-top: 20px;
}

.installments label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.installments select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.checkout-footer {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding: 20px 30px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #545b62;
}

/* PIX Modal Styles */
.pix-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

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

.pix-content {
    position: relative;
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pix-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.pix-header h2 {
    margin: 0;
    color: #333;
    font-size: 24px;
}

.close-pix {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pix-body {
    padding: 30px;
    text-align: center;
}

.pix-info {
    margin-bottom: 30px;
}

.pix-info h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 18px;
}

.pix-qr {
    margin-bottom: 30px;
}

.qr-placeholder {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.qr-code {
    width: 200px;
    height: 200px;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: white;
}

.qr-pattern {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: 
        linear-gradient(90deg, #333 50%, transparent 50%),
        linear-gradient(#333 50%, transparent 50%);
    background-size: 20px 20px;
    opacity: 0.3;
}

.qr-center {
    background: white;
    padding: 10px;
    border: 2px solid #333;
    font-weight: bold;
    z-index: 1;
    position: relative;
}

.pix-code {
    margin-bottom: 30px;
}

.pix-code label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.code-container {
    display: flex;
    gap: 10px;
}

.code-container input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: monospace;
    font-size: 12px;
}

.copy-btn {
    padding: 12px 20px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.copy-btn:hover {
    background: #218838;
}

.pix-instructions {
    text-align: left;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.pix-instructions h4 {
    margin: 0 0 15px 0;
    color: #333;
}

.pix-instructions ol {
    margin: 0;
    padding-left: 20px;
}

.pix-instructions li {
    margin-bottom: 8px;
    color: #666;
}

.payment-timer {
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    text-align: center;
}

.payment-timer p {
    margin: 0;
    color: #856404;
    font-weight: 600;
}

.pix-footer {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding: 20px 30px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

/* Processing Modal */
.processing-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
    align-items: center;
    justify-content: center;
}

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

.processing-content {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.processing-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.processing-content h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.processing-content p {
    margin: 0;
    color: #666;
}

/* Confirmation Modal */
.confirmation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10003;
    align-items: center;
    justify-content: center;
}

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

.confirmation-content {
    position: relative;
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.confirmation-header {
    text-align: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid #eee;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.confirmation-header h2 {
    margin: 0;
    color: #28a745;
    font-size: 24px;
}

.confirmation-body {
    padding: 30px;
}

.order-info {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.order-info h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 18px;
}

.order-info p {
    margin: 8px 0;
    color: #666;
}

.next-steps {
    margin-bottom: 30px;
}

.next-steps h4 {
    margin: 0 0 15px 0;
    color: #333;
}

.next-steps ul {
    margin: 0;
    padding-left: 20px;
}

.next-steps li {
    margin-bottom: 8px;
    color: #666;
}

.contact-info {
    padding: 20px;
    background: transparent;
    border-radius: 8px;
    text-align: center;
}

.contact-info p {
    margin: 5px 0;
    color: #333;
}

.confirmation-footer {
    text-align: center;
    padding: 20px 30px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-content {
        width: 95%;
        margin: 20px;
    }
    
    .checkout-body {
        padding: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .payment-options {
        flex-direction: column;
    }
    
    .checkout-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .code-container {
        flex-direction: column;
    }
    
    .copy-btn {
        width: 100%;
    }
}



/* Checkout Page Styles */
.checkout-main {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.checkout-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.checkout-container h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 2.5em;
}

.checkout-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .checkout-sections {
        grid-template-columns: 1fr 1fr;
    }
}

.order-summary-section, .customer-details-section, .payment-method-section {
    background-color: #fefefe;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.checkout-sections h2 {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.8em;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.order-items {
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

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

.item-name {
    font-weight: bold;
    color: #333;
    flex-grow: 1;
}

.item-quantity {
    color: #777;
    margin-left: 10px;
}

.item-price {
    font-weight: bold;
    color: #007bff;
    margin-left: 15px;
}

.item-details {
    font-size: 0.9em;
    color: #888;
    margin-top: 5px;
    line-height: 1.4;
}

.order-total {
    text-align: right;
    font-size: 1.5em;
    color: #333;
    padding-top: 15px;
    border-top: 2px solid #eee;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    background-color: #f0f8ff;
    border: 1px solid #cceeff;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    background-color: #e6f7ff;
    border-color: #99ddff;
}

.payment-option input[type="radio"] {
    margin-right: 15px;
    transform: scale(1.2);
}

.payment-option label {
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.place-order-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

.place-order-btn:hover {
    background-color: #218838;
}

.place-order-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}



/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

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

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-icon {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.notification-message {
    font-weight: 500;
}

/* Cart Sidebar Styles */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background-color: #f8f9fa;
}

.cart-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.5em;
}

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.close-cart:hover {
    background-color: #e9ecef;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.empty-cart-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

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

.item-info {
    flex: 1;
}

.item-name {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.item-details {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.4;
}

.item-price {
    font-weight: bold;
    color: #007bff;
}

.item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-controls .quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.2s ease;
}

.quantity-controls .quantity-btn:hover {
    background-color: #f8f9fa;
    border-color: #007bff;
}

.quantity-display {
    min-width: 30px;
    text-align: center;
    font-weight: bold;
}

.remove-item {
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.remove-item:hover {
    background-color: #c82333;
}

.cart-total {
    padding: 20px;
    border-top: 1px solid #eee;
    background-color: #f8f9fa;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.2s ease;
}

.checkout-btn:hover {
    background-color: #0056b3;
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-btn {
    position: relative;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.cart-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        width: auto;
    }
}


/* Additional Checkout Styles */
.total-breakdown {
    text-align: right;
}

.subtotal, .discount {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 5px;
}

.discount {
    color: #28a745;
    font-weight: bold;
}

.final-total {
    font-size: 1.2em;
    color: #333;
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 10px;
}

.back-to-cart-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.back-to-cart-btn:hover {
    background-color: #5a6268;
}

.order-item .item-info {
    flex: 1;
}

.order-item .item-details small {
    color: #888;
    font-size: 0.85em;
}

/* Form validation styles */
.form-group input:invalid {
    border-color: #dc3545;
}

.form-group input:valid {
    border-color: #28a745;
}

/* Payment method enhanced styles */
.payment-option input[type="radio"]:checked + label {
    color: #007bff;
    font-weight: bold;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .checkout-container {
        padding: 20px;
        margin: 10px;
    }
    
    .checkout-container h1 {
        font-size: 2em;
    }
    
    .order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .item-quantity, .item-price {
        align-self: flex-end;
    }
}


/* Security and Payment Styles */
.security-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.security-badges {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #28a745;
    font-weight: 600;
    font-size: 0.9em;
}

.security-badge svg {
    color: #28a745;
}

.security-text {
    text-align: center;
    color: #6c757d;
    font-size: 0.9em;
    margin: 0;
    font-style: italic;
}

/* Enhanced Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.payment-option {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.payment-option:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option input[type="radio"]:checked + label {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.payment-option input[type="radio"]:checked + label .payment-icon svg {
    color: white;
}

.payment-option label {
    display: block;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.payment-method-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-icon {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-option input[type="radio"]:checked + label .payment-icon {
    background: rgba(255, 255, 255, 0.2);
}

.payment-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.payment-title {
    font-weight: bold;
    font-size: 1.1em;
}

.payment-discount {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9em;
}

.payment-option input[type="radio"]:checked + label .payment-discount {
    color: #90ee90;
}

.payment-description {
    color: #6c757d;
    font-size: 0.85em;
}

.payment-option input[type="radio"]:checked + label .payment-description {
    color: rgba(255, 255, 255, 0.8);
}

/* PIX Option Special Styling */
.pix-option input[type="radio"]:checked + label {
    background: linear-gradient(135deg, #00d4aa 0%, #00a085 100%);
}

/* Accepted Cards */
.accepted-cards {
    margin-bottom: 25px;
}

.accepted-cards h4 {
    color: #495057;
    margin-bottom: 12px;
    font-size: 1em;
}

.card-brands {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.card-brand {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.8em;
    font-weight: bold;
    color: #495057;
    min-width: 60px;
    text-align: center;
    transition: all 0.2s ease;
}

.card-brand:hover {
    border-color: #007bff;
    transform: translateY(-1px);
}

.card-brand.visa {
    color: #1a1f71;
    border-color: #1a1f71;
}

.card-brand.mastercard {
    color: #eb001b;
    border-color: #eb001b;
}

.card-brand.elo {
    color: #ffcb05;
    border-color: #ffcb05;
    background: #000;
}

.card-brand.amex {
    color: #006fcf;
    border-color: #006fcf;
}

/* Security Guarantee */
.security-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.guarantee-icon {
    background: #28a745;
    color: white;
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-text strong {
    color: #28a745;
    display: block;
    margin-bottom: 5px;
}

.guarantee-text p {
    color: #6c757d;
    font-size: 0.9em;
    margin: 0;
    line-height: 1.4;
}

/* Enhanced Place Order Button */
.place-order-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    padding: 18px 30px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
}

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

.place-order-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Mobile Responsive for Security Elements */
@media (max-width: 768px) {
    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .security-badge {
        justify-content: center;
    }
    
    .payment-method-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .card-brands {
        justify-content: center;
    }
    
    .security-guarantee {
        flex-direction: column;
        text-align: center;
    }
}


/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin-top: 60px;
}

.trust-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 50px;
    font-size: 2.5em;
    font-weight: 700;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.trust-icon {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.trust-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 600;
}

.trust-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95em;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 0;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ecf0f1;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.5em;
    color: #3498db;
}

.footer-section p {
    margin-bottom: 10px;
    color: #bdc3c7;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    font-size: 1.5em;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: scale(1.2);
}

.security-badges-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.security-badge-footer {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9em;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #95a5a6;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

/* Mobile Responsive for Trust and Footer */
@media (max-width: 768px) {
    .trust-section {
        padding: 60px 0;
    }
    
    .trust-section h2 {
        font-size: 2em;
        margin-bottom: 40px;
    }
    
    .trust-grid {
        gap: 30px;
    }
    
    .trust-item {
        padding: 30px 20px;
    }
    
    .trust-icon {
        width: 60px;
        height: 60px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}



/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: left 0.3s ease;
        z-index: 1000;
        margin: 0;
        padding: 0;
        display: flex !important;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        list-style: none;
    }
    
    .nav-menu a {
        font-size: 24px;
        font-weight: 600;
        color: white;
        text-decoration: none;
        padding: 15px 30px;
        border-radius: 10px;
        transition: all 0.3s ease;
        display: block;
        text-align: center;
        min-width: 200px;
    }
    
    .nav-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #4CAF50;
        transform: translateY(-2px);
    }
    
    .nav-container {
        position: relative;
        z-index: 1001;
    }
}

@media (max-width: 480px) {
    .nav-menu a {
        font-size: 20px;
        min-width: 180px;
    }
    
    .mobile-menu-btn {
        width: 25px;
        height: 25px;
    }
    
    .mobile-menu-btn span {
        height: 2px;
    }
}

