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

body {
    font-family: 'Noto Sans Thai', 'Sarabun', 'Arial', sans-serif;
    color: #1a1a1a;
    line-height: 1.8;
    background: #ffffff;
}

.minimal-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

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

.header-inner h1 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #1a1a1a;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0.5rem;
    color: #1a1a1a;
    transition: opacity 0.3s;
}

.cart-icon:hover {
    opacity: 0.7;
}

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

.main-wrapper {
    margin-top: 70px;
}

.minimal-hero {
    padding: 8rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.minimal-hero h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.minimal-hero p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

.destinations-minimal {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 0;
}

.destination-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 8rem;
    align-items: center;
}

.destination-item:nth-child(even) {
    direction: rtl;
}

.destination-item:nth-child(even) > * {
    direction: ltr;
}

.destination-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.item-content {
    padding: 4rem;
}

.item-content h3 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.item-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 2;
    font-weight: 300;
    margin-bottom: 2rem;
}

.product-price {
    font-size: 2rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.btn-add-cart {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-cart:hover {
    background: #333;
    transform: translateY(-2px);
}

.info-section {
    padding: 8rem 2rem;
    background: #f8f8f8;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.info-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.info-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 2;
    font-weight: 300;
}

.contact-minimal {
    padding: 8rem 2rem;
    background: white;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.contact-items {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.contact-line {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 300;
}

.contact-line strong {
    color: #1a1a1a;
    font-weight: 400;
    display: block;
    margin-bottom: 0.5rem;
}

.minimal-footer {
    background: #f8f8f8;
    color: #1a1a1a;
    text-align: center;
    padding: 3rem 2rem;
    font-weight: 300;
}

.minimal-footer p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #666;
}

.minimal-footer a {
    color: #666;
    text-decoration: underline;
}

.minimal-footer a:hover {
    color: #1a1a1a;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: 1px;
}

.footer-column p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    transition: color 0.3s;
}

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

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

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

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #1a1a1a;
}

.cart-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.cart-close:hover {
    color: #1a1a1a;
}

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

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.cart-item-name {
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.cart-item-price {
    color: #666;
    font-weight: 300;
}

.cart-item-remove {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: 300;
    transition: background 0.3s;
}

.cart-item-remove:hover {
    background: #333;
}

.cart-empty {
    text-align: center;
    color: #999;
    padding: 2rem;
    font-weight: 300;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.cart-total {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 400;
    color: #1a1a1a;
}

.btn-checkout {
    width: 100%;
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-checkout:hover {
    background: #333;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    display: none;
}

.cart-overlay.active {
    display: block;
}

.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    margin: auto;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: 300;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #1a1a1a;
}

.modal-body {
    margin-top: 1rem;
}

.modal-body p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 968px) {
    .destination-item {
        grid-template-columns: 1fr;
        margin-bottom: 4rem;
    }

    .destination-item:nth-child(even) {
        direction: ltr;
    }

    .destination-item img {
        height: 400px;
    }

    .item-content {
        padding: 2rem;
    }

    .minimal-hero h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .minimal-hero {
        padding: 4rem 1.5rem;
    }

    .item-content h3 {
        font-size: 2rem;
    }

    .info-section,
    .contact-minimal {
        padding: 4rem 1.5rem;
    }

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

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}
