:root {
    --primary-color: #0a0a0a;
    --bg-color: #fcfbf8;
    --surface-color: #ffffff;
    --accent-color: #9c8052; /* Bronze / Gold */
    --wine-color: #5b1b22;
    --border-color: #e5e0d8;
    --text-muted: #555555;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--primary-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.fade-up {
    transform: translateY(40px);
}
.reveal.fade-left {
    transform: translateX(40px);
}
.reveal.fade-right {
    transform: translateX(-40px);
}
.reveal.active {
    opacity: 1;
    transform: translate(0);
}

/* Intro Animations */
.eyebrow {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 0.6rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.announcement-bar i {
    font-size: 1rem;
    color: var(--accent-color);
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: rgba(252, 251, 248, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-container .logo {
    height: 45px;
    object-fit: contain;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-left a, .nav-right a {
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.4s ease;
}

.nav-left a:hover, .nav-right a:hover {
    color: var(--accent-color);
}

.header-icons {
    display: flex;
    gap: 1.5rem;
    margin-left: 1rem;
    border-left: 1px solid var(--border-color);
    padding-left: 1.5rem;
}

.header-icons a i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: color 0.3s;
}

.header-icons a:hover i {
    color: var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .nav-left, .nav-right { display: none; }
    .mobile-menu-btn { display: block; }
    .logo-container { position: absolute; left: 50%; transform: translateX(-50%); }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    overflow: hidden;
    text-align: center;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.hero-content .eyebrow {
    color: #e5e0d8;
    font-size: 0.9rem;
    letter-spacing: 5px;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    transition: all 0.4s ease;
}

.btn-primary:hover {
    background-color: #836b44;
    border-color: #836b44;
}

.btn-outline-light {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    border: 1px solid #fff;
    transition: all 0.4s ease;
    background: transparent;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.trust-badges {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badges i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Craftsmanship Section */
.craftsmanship-section {
    padding: 10rem 5%;
    background-color: #fff;
}

.craft-container {
    display: flex;
    align-items: center;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.craft-images {
    flex: 1;
    position: relative;
    height: 700px;
}

.craft-images .img-1 {
    width: 80%;
    height: 550px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.craft-images .img-2-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 400px;
    z-index: 2;
    background-color: #fff;
    padding: 1rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.craft-images .img-2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.craft-content {
    flex: 1;
}

.craft-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.craft-content .lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.craft-content p {
    color: var(--text-muted);
    font-weight: 300;
}

.craft-divider {
    width: 60px;
    height: 1px;
    background-color: var(--accent-color);
    margin-top: 3rem;
}

/* Product Section */
.product-section {
    padding: 8rem 5%;
    background-color: var(--bg-color);
}

.product-wrapper {
    display: flex;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.product-gallery {
    flex: 1;
}

.gallery-inner {
    padding: 2rem;
    background-color: #fff;
    border: 1px solid var(--border-color);
}

#main-product-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.product-info {
    flex: 1;
}

.product-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.price {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.description p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.color-selection h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.color-options {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.color-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #fff;
}

.color-option:hover {
    border-color: var(--primary-color);
}

.color-option.active {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
}

.color-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.bg-black { background-color: #000; }
.bg-wine { background-color: var(--wine-color); border: 1px solid rgba(255,255,255,0.2); }

.btn-buy-link {
    display: block;
    width: 100%;
    margin-bottom: 2rem;
}

.btn-buy {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: background-color 0.4s ease;
}

.btn-buy:hover {
    background-color: var(--accent-color);
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* Unboxing Section */
.unboxing-section {
    padding: 8rem 5%;
    background-color: #fff;
    border-top: 1px solid var(--border-color);
}

.unboxing-container {
    display: flex;
    align-items: center;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.unboxing-content {
    flex: 1;
}

.unboxing-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.unboxing-content .lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.unboxing-content p {
    color: var(--text-muted);
    font-weight: 300;
}

.unboxing-image {
    flex: 1;
}

.unboxing-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Reviews Section */
.reviews-section {
    padding: 8rem 5%;
    background-color: #f4f3ed;
    display: flex;
    justify-content: center;
}

.review-slider {
    max-width: 800px;
    position: relative;
}

.review-slide {
    display: none;
    animation: fadeIn 0.8s ease;
}

.review-slide.active {
    display: block;
}

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

.reviews-summary {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.reviews-summary .summary-stars {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.reviews-summary p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reviews-summary strong {
    color: var(--primary-color);
    font-weight: 500;
}

.review-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.review-author .stars i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
    margin-top: 3rem;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #d5d0c5;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active, .dot:hover {
    background-color: var(--accent-color);
    transform: scale(1.3);
}

/* Professional Footer */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 6rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.brand-desc {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer-links-col h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-col a {
    display: block;
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    transition: color 0.3s;
    font-weight: 300;
}

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

.footer-newsletter h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-newsletter p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid #555;
    padding-bottom: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-body);
    outline: none;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.newsletter-form button:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #222;
    font-size: 0.8rem;
    color: #666;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #666;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #fff;
}

/* ========================================= */
/*             CHECKOUT PAGE STYLES          */
/* ========================================= */
.checkout-page {
    background-color: #fff;
}

.checkout-header {
    padding: 2rem 5%;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.checkout-logo {
    height: 45px;
}

.checkout-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 100px);
}

.checkout-form-section {
    flex: 1.3;
    padding: 4rem 5%;
    border-right: 1px solid var(--border-color);
}

.checkout-breadcrumbs {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.checkout-breadcrumbs i {
    vertical-align: middle;
    margin: 0 0.5rem;
}

.checkout-form-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.checkout-subtitle {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
}

.form-section-title {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.mt-2 {
    margin-top: 2rem;
}

.input-row {
    display: flex;
    gap: 1.5rem;
}

.input-row .input-group {
    flex: 1;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.input-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s;
    background-color: #fafafa;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #fff;
}

.checkout-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}

.back-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

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

.btn-confirm-checkout {
    padding: 1.2rem 2.5rem;
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-confirm-checkout:hover {
    background-color: #25D366; /* WhatsApp color */
}

.btn-confirm-checkout i {
    font-size: 1.2rem;
}

/* Summary Section */
.checkout-summary-section {
    flex: 0.8;
    padding: 4rem 5%;
    background-color: #faf9f6;
}

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

.summary-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.item-img-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
}

.item-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.item-quantity {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--text-muted);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
}

.item-info {
    flex: 1;
}

.item-title {
    display: block;
    font-weight: 500;
    font-size: 0.95rem;
}

.item-color {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
}

.item-price {
    font-weight: 500;
}

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

.total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.free-text {
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.grand-total {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 1.5rem;
}

.total-price {
    font-size: 1.3rem;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.badge-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .craft-container, .product-wrapper {
        flex-direction: column;
        gap: 4rem;
    }
    
    .unboxing-container {
        flex-direction: column-reverse;
        gap: 4rem;
    }
    
    .craft-images {
        flex: none;
        height: 600px;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .craft-content, .product-gallery, .product-info, .unboxing-content, .unboxing-image {
        flex: none;
        width: 100%;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .checkout-container {
        flex-direction: column;
    }
    
    .checkout-form-section {
        border-right: none;
        order: 2;
    }
    
    .checkout-summary-section {
        order: 1;
        border-bottom: 1px solid var(--border-color);
    }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1rem; margin-bottom: 2rem; }
    .hero-actions { flex-direction: column; gap: 1rem; }
    .btn-primary, .btn-outline-light { width: 100%; }
    
    .craftsmanship-section { padding: 5rem 5%; }
    .product-section { padding: 5rem 5%; }
    .unboxing-section { padding: 5rem 5%; }
    .reviews-section { padding: 5rem 5%; }
    .review-text { font-size: 1.2rem; line-height: 1.6; }
    .footer { padding: 4rem 5% 2rem; }
    
    .craft-content h2, .product-title, .unboxing-content h2 { font-size: 2.5rem; }
    .craft-images { height: 450px; }
    .craft-images .img-1 { height: 350px; }
    .craft-images .img-2-container { height: 250px; width: 70%; }
    #main-product-img { height: 400px; }
    .unboxing-image img { height: 400px; }
    
    .color-options { flex-wrap: wrap; gap: 1rem; }
    
    .input-row { flex-direction: column; gap: 0; }
    
    .checkout-form-section, .checkout-summary-section { padding: 3rem 5%; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .checkout-actions {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .btn-confirm-checkout {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .announcement-bar { font-size: 0.65rem; padding: 0.5rem; flex-direction: column; text-align: center; line-height: 1.4; }
    .header { padding: 1rem 5%; }
    .logo-container .logo { height: 35px; }
    .hero-content h1 { font-size: 2.2rem; }
    .craft-content h2, .product-title, .unboxing-content h2 { font-size: 2rem; }
    .craft-images { height: 350px; }
    .craft-images .img-1 { height: 250px; width: 90%; }
    .craft-images .img-2-container { height: 180px; width: 80%; }
    #main-product-img { height: 300px; }
    .unboxing-image img { height: 300px; }
    .checkout-form-section, .checkout-summary-section { padding: 2rem 5%; }
    .reviews-section { padding: 3rem 5%; }
    .review-text { font-size: 1rem; }
}
