/* ================================================
   RoFza BD - Beauty Products Landing Page
   Elegant, Sophisticated Design with Soft Aesthetics
   ================================================ */

:root {
    /* Color Palette - Elegant Beauty Theme */
    --primary: #d4526e;
    --primary-dark: #b8395a;
    --primary-light: #f7d7dc;
    --secondary: #2d2d2d;
    --accent: #f5a962;
    --gradient-1: linear-gradient(135deg, #d4526e 0%, #f5a962 100%);
    --gradient-2: linear-gradient(135deg, #fff5f7 0%, #ffe8ec 100%);
    --gradient-3: linear-gradient(135deg, rgba(212, 82, 110, 0.1) 0%, rgba(245, 169, 98, 0.1) 100%);
    
    /* Neutral Colors */
    --white: #ffffff;
    --cream: #fef9f5;
    --light-pink: #fff5f7;
    --grey-100: #f8f9fa;
    --grey-200: #e9ecef;
    --grey-300: #dee2e6;
    --grey-600: #6c757d;
    --grey-800: #2d2d2d;
    --black: #1a1a1a;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Hind Siliguri', sans-serif;
    --font-elegant: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --section-padding: 100px;
    --card-padding: 30px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(212, 82, 110, 0.08);
    --shadow-md: 0 4px 20px rgba(212, 82, 110, 0.12);
    --shadow-lg: 0 8px 40px rgba(212, 82, 110, 0.15);
    --shadow-hover: 0 12px 50px rgba(212, 82, 110, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-xl: 35px;
}

/* ================================================
   Global Styles & Reset
   ================================================ */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-800);
    background: var(--cream);
    overflow-x: hidden;
}

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

/* ================================================
   Typography
   ================================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================================
   Sticky Header
   ================================================ */

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.sticky-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.logo i {
    font-size: 32px;
}

.brand-name {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.btn-call, .btn-order {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-call {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-call:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-order {
    background: var(--gradient-1);
    color: white;
}

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

/* ================================================
   Hero Section
   ================================================ */

.hero-section {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
    background: var(--gradient-2);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 82, 110, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 169, 98, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 25px;
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--grey-600);
    margin-bottom: 35px;
    line-height: 1.8;
}

.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary-lg:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-primary-lg i {
    transition: transform 0.3s ease;
}

.btn-primary-lg:hover i {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--grey-600);
    margin-top: 5px;
}

.hero-image {
    position: relative;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    border-radius: var(--radius-xl);
    z-index: 0;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
    color: var(--primary);
}

.card-1 {
    bottom: 80px;
    left: -30px;
}

.card-2 {
    top: 80px;
    right: -30px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ================================================
   Trust Section
   ================================================ */

.trust-section {
    padding: 80px 0;
    background: white;
}

.trust-card {
    padding: 40px 30px;
    text-align: center;
    background: var(--gradient-2);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    height: 100%;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.trust-icon i {
    font-size: 36px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--black);
}

.trust-card p {
    font-size: 15px;
    color: var(--grey-600);
    line-height: 1.7;
}

/* ================================================
   Section Headers
   ================================================ */

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--grey-600);
}

/* ================================================
   Products Section
   ================================================ */

.products-section {
    padding: var(--section-padding) 0;
    background: white;
}

.product-card {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-md);
}

.product-content {
    padding: 25px;
}

.product-brand {
    font-size: 13px;
    color: var(--grey-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.product-description {
    font-size: 14px;
    color: var(--grey-600);
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.stars {
    color: var(--accent);
}

.rating-text {
    font-size: 13px;
    color: var(--grey-600);
}

.product-price-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.product-price {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.product-original-price {
    font-size: 18px;
    color: var(--grey-600);
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--grey-300);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: var(--primary-light);
}

.qty-input {
    width: 50px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.btn-buy-now {
    flex: 1;
    padding: 12px 20px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    padding: 15px 35px;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ================================================
   Why Choose Us Section
   ================================================ */

.why-choose-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-2);
}

.why-choose-image {
    position: relative;
}

.why-choose-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    padding: 25px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.badge-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.badge-text {
    font-size: 14px;
    color: var(--grey-600);
    margin-top: 5px;
}

.section-description {
    font-size: 17px;
    color: var(--grey-600);
    line-height: 1.8;
    margin-bottom: 35px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.feature-icon i {
    font-size: 26px;
    color: var(--primary);
}

.feature-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--black);
}

.feature-content p {
    font-size: 15px;
    color: var(--grey-600);
    line-height: 1.6;
}

/* ================================================
   Delivery & Payment Section
   ================================================ */

.delivery-payment-section {
    padding: var(--section-padding) 0;
    background: white;
}

.info-card {
    padding: 40px;
    background: var(--gradient-2);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.info-icon i {
    font-size: 36px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--black);
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--grey-600);
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-list i {
    color: var(--primary);
    font-size: 14px;
}

/* ================================================
   Checkout Section
   ================================================ */

.checkout-section {
    padding: 80px 0;
    background: var(--grey-100);
    display: none;
}

.checkout-section.active {
    display: block;
}

.checkout-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.checkout-header {
    position: relative;
    padding: 40px;
    background: var(--gradient-2);
    text-align: center;
}

.btn-close-checkout {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-close-checkout:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.checkout-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--black);
}

.checkout-title i {
    color: var(--primary);
    margin-right: 10px;
}

.checkout-subtitle {
    font-size: 16px;
    color: var(--grey-600);
}

.selected-product {
    padding: 30px 40px;
    background: var(--light-pink);
    border-bottom: 2px solid var(--primary-light);
}

.selected-product-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.selected-product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.selected-product-details h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.selected-product-price {
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
}

.checkout-form {
    padding: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--grey-800);
    font-size: 15px;
}

.form-group label i {
    color: var(--primary);
    margin-right: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--grey-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 82, 110, 0.1);
}

.form-text {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: var(--grey-600);
}

.checkout-summary {
    background: var(--gradient-2);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 16px;
}

.summary-row.total {
    border-top: 2px solid var(--primary-light);
    padding-top: 20px;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.btn-submit-order {
    width: 100%;
    padding: 18px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

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

/* ================================================
   Contact Section
   ================================================ */

.contact-section {
    padding: var(--section-padding) 0;
    background: white;
}

.contact-card {
    padding: 40px 30px;
    text-align: center;
    background: var(--gradient-2);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.contact-icon i {
    font-size: 32px;
    color: var(--primary);
}

.contact-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--black);
}

.contact-card a,
.contact-card p {
    color: var(--grey-600);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

/* ================================================
   Footer
   ================================================ */

.footer {
    padding: 60px 0 30px;
    background: var(--grey-800);
    color: white;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 32px;
    color: var(--primary);
}

.footer-brand p {
    color: var(--grey-300);
    margin-bottom: 25px;
    font-size: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.messenger {
    background: #0084ff;
}

.social-btn.whatsapp {
    background: #25d366;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.footer-bottom p {
    color: var(--grey-300);
    font-size: 14px;
}

/* ================================================
   Loading Overlay
   ================================================ */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay.active {
    display: flex;
}

.spinner {
    text-align: center;
}

.spinner-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner p {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

/* ================================================
   Animations
   ================================================ */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease forwards;
}

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

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animation Trigger */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   Responsive Design
   ================================================ */

@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .why-choose-image,
    .hero-image {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
    }
    
    .header-content {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .logo i {
        font-size: 26px;
    }
    
    .btn-call span,
    .btn-order span {
        display: none;
    }
    
    .btn-call,
    .btn-order {
        padding: 12px 18px;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn-primary-lg {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .floating-card {
        padding: 12px 18px;
        font-size: 13px;
    }
    
    .card-1,
    .card-2 {
        position: static;
        margin: 20px auto;
    }
    
    .trust-card,
    .info-card,
    .contact-card {
        padding: 30px 20px;
    }
    
    .checkout-form {
        padding: 30px 20px;
    }
    
    .checkout-header {
        padding: 30px 20px;
    }
    
    .checkout-title {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .product-price {
        font-size: 24px;
    }
}
