:root {
    --primary-color: #1e5fb3;
    --primary-dark: #114a91;
    --primary-light: #3a7ac5;
    --secondary-color: #e6f0fa;
    --accent-color: #ff6b35;
    --text-color: #333333;
    --text-light: #666666;
    --text-dark: #222222;
    --white: #ffffff;
    --light-gray: #f5f7f9;
    --mid-gray: #e1e5e9;
    --dark-gray: #c4c9cf;
    --border-color: #dfe3e7;
    --success-color: #2ecc71;
    --warning-color: #f1c40f;
    --error-color: #e74c3c;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --font-main: 'Roboto', 'Helvetica Neue', sans-serif;
    --font-heading: 'Montserrat', 'Arial', sans-serif;
    --font-size-base: 16px;
    --border-radius: 6px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --section-padding: 70px 0;
    --container-padding: 0 20px;
    --mountain-blue: #5d8cb3;
    --mountain-dark: #2c4f6e;
    --snow-white: #f9f9f9;
    --sunset-orange: #ff7d4d;
    --pine-green: #2b6e5d;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5em;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Progress Bar */
#reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 5px;
    background-color: rgba(0, 0, 0, 0.1);
}

#reading-progress {
    height: 100%;
    width: 0;
    background-color: var(--primary-color);
    transition: width 0.1s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

.primary-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

.tertiary-btn {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--mid-gray);
}

.tertiary-btn:hover {
    background-color: var(--light-gray);
    color: var(--text-dark);
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.company-name h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.company-name p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

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

nav {
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    gap: 1.5rem;
}

.main-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.main-menu a:hover,
.main-menu a.active {
    color: var(--primary-color);
}

.main-menu a.active:after,
.main-menu a:hover:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

#cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.8rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--light-gray);
    padding: 0.75rem 0;
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumbs li:not(:last-child):after {
    content: '/';
    margin: 0 0.5rem;
    color: var(--dark-gray);
}

.breadcrumbs a {
    color: var(--text-light);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1551524559-8af4e6624178?ixlib=rb-1.2.1&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Advantages Section */
.advantages {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

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

.advantage-item {
    text-align: center;
    transition: var(--transition);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.advantage-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-item h3 {
    margin-bottom: 1rem;
}

.advantage-item p {
    color: var(--text-light);
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--text-light);
    font-size: 1rem;
}

.cta-container {
    text-align: center;
}

/* Detailed Info Section */
.detailed-info {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

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

.info-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.two-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Terminology Section */
.terminology {
    padding: var(--section-padding);
    background-color: var(--secondary-color);
}

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

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

.term-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.term-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Products Section */
.products {
    padding: var(--section-padding);
}

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

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

.product-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
}

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

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

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

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-features span {
    font-size: 0.9rem;
    color: var(--text-light);
    background-color: var(--light-gray);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.product-price {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.per-person {
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.product-actions .btn {
    flex: 1;
}

/* Product Detail Page */
.product-detail {
    padding: var(--section-padding);
}

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

.product-gallery {
    position: relative;
}

.main-image {
    height: 400px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.product-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.product-id {
    font-size: 0.9rem;
    color: var(--text-light);
}

.availability {
    font-weight: 600;
}

.in-stock {
    color: var(--success-color);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.feature {
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

.feature-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.feature-value {
    color: var(--text-dark);
}

.quantity-selector {
    margin-bottom: 1.5rem;
}

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

.quantity-controls {
    display: flex;
    align-items: center;
    width: fit-content;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.quantity-controls button {
    background: var(--light-gray);
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-controls button:hover {
    background: var(--mid-gray);
}

.quantity-controls input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

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

.action-buttons .btn {
    flex: 1;
}

.product-tabs {
    margin-bottom: 3rem;
}

.tab-headers {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.tab-header {
    padding: 1rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
}

.tab-header.active,
.tab-header:hover {
    color: var(--primary-color);
}

.tab-header.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-panel {
    display: none;
}

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

.tab-panel h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.tour-program {
    margin-top: 1.5rem;
}

.day {
    margin-bottom: 1.5rem;
}

.day h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.includes-list,
.not-includes-list {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.includes-list li,
.not-includes-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.includes-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.not-includes-list li:before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--error-color);
    font-weight: 700;
}

/* Related Products */
.related-products {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.related-products h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.related-product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.related-product-card:hover {
    transform: translateY(-10px);
}

.related-product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-product-card h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.1rem;
}

.related-product-card p {
    padding: 0 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.related-product-card .btn {
    margin: 0 1rem 1rem;
}

/* About Page */
.about-intro {
    padding: var(--section-padding);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-values {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

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

.value-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.value-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-section {
    padding: var(--section-padding);
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.team-member {
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: var(--box-shadow);
    max-width: 200px;
}

.team-member h3 {
    margin-bottom: 0.25rem;
}

.team-member p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.team-member p:nth-of-type(1) {
    font-weight: 600;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    color: var(--text-light);
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-color);
}

.certificates {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.certificates-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.certificates-text p {
    margin-bottom: 1.5rem;
}

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

.partner-logo {
    text-align: center;
}

.partner-logo svg {
    margin: 0 auto 0.75rem;
    color: var(--primary-color);
}

.partner-logo p {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(rgba(30, 95, 179, 0.9), rgba(30, 95, 179, 0.9)), url('https://images.unsplash.com/photo-1580752300992-559f8e0734e0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* Contact Page */
.contact-intro {
    padding: 70px 0 0;
    text-align: center;
}

.contact-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.contact-information {
    padding: 0 0 70px;
}

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

.contact-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-form-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.consent-checkbox {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.consent-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-links {
    padding: var(--section-padding);
}

.social-links h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.social-links > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.social-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.social-link-card:hover {
    transform: translateY(-10px);
    color: var(--white);
    background-color: var(--primary-color);
}

.social-link-icon {
    margin-bottom: 1rem;
}

.social-link-card span {
    font-weight: 500;
}

/* Cart Page */
.cart-section {
    padding: var(--section-padding);
}

.cart-empty {
    text-align: center;
    padding: 3rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

.cart-empty-icon {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.cart-empty h3 {
    margin-bottom: 1rem;
}

.cart-empty p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.cart-content {
    margin-bottom: 3rem;
}

.cart-table-container {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th,
.cart-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cart-table th {
    font-weight: 600;
    background-color: var(--light-gray);
}

.cart-table .product-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.cart-table .product-name {
    font-weight: 500;
}

.cart-table .quantity-controls {
    display: flex;
    align-items: center;
    width: fit-content;
}

.cart-table .remove-item {
    color: var(--error-color);
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1rem;
    transition: var(--transition);
}

.cart-table .remove-item:hover {
    color: var(--text-dark);
}

.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.cart-totals {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
}

.totals-row.total {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.cart-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
}

.upsell-section {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.upsell-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.upsell-section > p {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.upsell-product {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.upsell-product:hover {
    transform: translateY(-10px);
}

.upsell-product img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.upsell-product h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.1rem;
}

.upsell-product p {
    padding: 0 1rem;
    margin-bottom: 0.5rem;
}

.upsell-product .price {
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0 1rem;
}

.upsell-product .btn {
    margin: 0 1rem 1.5rem;
}

/* Checkout Page */
.checkout-section {
    padding: var(--section-padding);
}

.checkout-header {
    margin-bottom: 3rem;
}

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

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

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step.active .step-number,
.step.completed .step-number {
    background-color: var(--primary-color);
    color: var(--white);
}

.step-divider {
    width: 100px;
    height: 2px;
    background-color: var(--light-gray);
    margin: 0 1rem;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}

.checkout-form-container {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.form-section h3 {
    margin-bottom: 1.5rem;
}

.order-summary {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 100px;
}

.order-summary-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.order-summary-header h3 {
    margin-bottom: 0;
}

.order-summary-content {
    padding: 1.5rem;
}

.order-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

.order-item-name {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.order-item-details {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.9rem;
}

.order-totals {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.order-totals-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.order-totals-row.total {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.secure-checkout {
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
    color: var(--text-light);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/* Success Page */
.success-section {
    padding: var(--section-padding);
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.success-icon {
    margin-bottom: 2rem;
    color: var(--success-color);
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.success-details {
    text-align: left;
    margin-bottom: 3rem;
}

.success-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.after-booking {
    padding: var(--section-padding);
    background-color: var(--light-gray);
    text-align: center;
}

.after-booking h2 {
    margin-bottom: 3rem;
}

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

.prep-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.prep-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--mountain-dark);
    color: var(--white);
    padding: 4rem 0 1.5rem;
}

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

.footer-column h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-light);
}

.footer-column p {
    color: var(--mid-gray);
    margin-bottom: 1.5rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--mid-gray);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-column address {
    font-style: normal;
    color: var(--mid-gray);
}

.footer-column address p {
    margin-bottom: 0.75rem;
}

.footer-column address a {
    color: var(--mid-gray);
}

.footer-column address a:hover {
    color: var(--white);
}

.footer-column .social-icons {
    justify-content: flex-start;
}

.footer-column .social-icons a {
    color: var(--mid-gray);
}

.footer-column .social-icons a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--mid-gray);
    font-size: 0.9rem;
}

/* Cookies Notification */
.cookies-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem;
    display: none;
}

.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookies-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.cookies-content p {
    margin-bottom: 0;
}

.cookies-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookies-more {
    font-size: 0.9rem;
}

/* Notification */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    z-index: 1000;
    display: none;
    max-width: 300px;
    animation: slideIn 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification.success {
    border-left-color: var(--success-color);
}

.notification.error {
    border-left-color: var(--error-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-menu {
        display: none;
    }
    
    .main-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--white);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        z-index: 1000;
    }
    
    .main-menu.active li {
        width: 100%;
        text-align: center;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .company-name h1 {
        font-size: 1.3rem;
    }
    
    .company-name p {
        display: none;
    }
    
    .tab-header {
        padding: 0.75rem;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
    }
    
    .main-image {
        height: 300px;
    }
    
    .cart-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
