/* ============================================
   VELAS AROMÁTICAS - Main Stylesheet
   Diseño cute, elegante y profesional
   ============================================ */

/* ============================================
   CSS Variables - Color Palette
   ============================================ */
:root {
    /* Primary Colors - Rosa pastel */
    --primary: #c2185b;
    --primary-light: #f8bbd9;
    --primary-lighter: #fce4ec;
    --primary-dark: #ad1457;
    
    /* Secondary Colors */
    --secondary: #d4a574;
    --secondary-light: #f5e6d3;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #faf9f7;
    --cream: #fff8f5;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #adb5bd;
    --gray-700: #495057;
    --gray-900: #212529;
    
    /* Accent Colors */
    --accent-gold: #d4a574;
    --accent-peach: #ffccbc;
    --accent-lavender: #e1bee7;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    
    /* Spacing */
    --section-padding: 80px;
    --container-max: 1200px;
    
    /* Borders & Shadows */
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(194, 24, 91, 0.08);
    --shadow-md: 0 4px 20px rgba(194, 24, 91, 0.12);
    --shadow-lg: 0 8px 40px rgba(194, 24, 91, 0.15);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--off-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--gray-900);
    line-height: 1.3;
}

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

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

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

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: none;
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    height: 105px;
    width: 105px;
}

.brand-icon {
    font-size: 1.8rem;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700) !important;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary) !important;
    background: var(--primary-lighter);
}

.nav-link.btn-contact {
    background: var(--primary);
    color: var(--white) !important;
    margin-left: 10px;
}

.nav-link.btn-contact:hover {
    background: var(--primary-dark);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    font-family: var(--font-body);
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

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

.btn-light:hover {
    background: var(--primary-lighter);
    border-color: var(--primary-lighter);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--primary-lighter) 50%, var(--accent-peach) 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.8) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-subtitle {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: var(--gray-900);
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-light);
    z-index: -1;
    border-radius: 4px;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--gray-700);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
}

.floating-candle {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0.6;
}

.floating-candle:nth-child(1) { top: 20%; right: 20%; }
.floating-candle:nth-child(2) { top: 40%; right: 35%; }
.floating-candle:nth-child(3) { top: 60%; right: 15%; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: 60px 0;
    background: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--off-white);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    height: 100%;
}

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

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary);
}

.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.feature-card:hover .feature-icon-wrapper i {
    color: var(--white);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gray-900);
}

/* ============================================
   Featured Products Section
   ============================================ */
.featured-products {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

/* ============================================
   Product Cards
   ============================================ */
.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gray-100);
}

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

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

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--accent-peach) 100%);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-badge.featured {
    background: var(--accent-gold);
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.3rem;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.product-description {
    font-size: 0.95rem;
    color: var(--gray-500);
    flex-grow: 1;
}

.product-scents {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-scents i {
    color: var(--primary);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 15px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 500;
    margin-top: 15px;
    font-size: 0.95rem;
}

.product-link:hover {
    gap: 10px;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--accent-peach) 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

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

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.about-decor {
    font-size: 8rem;
    opacity: 0.8;
}

.about-content {
    padding-left: 40px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    margin: 30px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

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

/* ============================================
   CTA Section
   ============================================ */
.cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.cta-title {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--primary-lighter) 100%);
    text-align: center;
}

.page-subtitle {
    font-size: 1rem;
    margin-bottom: 10px;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
}

.page-description {
    color: var(--gray-500);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   Filters
   ============================================ */
.filters {
    padding: 30px 0;
    background: var(--white);
    position: sticky;
    top: 70px;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.filters-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--gray-100);
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   Products Section
   ============================================ */
.products-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

/* ============================================
   Empty State
   ============================================ */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    margin-bottom: 10px;
    color: var(--gray-700);
}

.empty-state p {
    color: var(--gray-500);
    margin-bottom: 30px;
}

/* ============================================
   Pagination
   ============================================ */
.pagination-nav {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.pagination {
    gap: 5px;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition);
}

.page-link:hover,
.page-item.active .page-link {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   Product Detail
   ============================================ */
.product-detail {
    padding: 120px 0 var(--section-padding);
    background: var(--white);
}

.product-detail-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--gray-100);
}

.product-detail-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-placeholder-large {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--accent-peach) 100%);
}

.breadcrumb-nav {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.breadcrumb-nav a {
    color: var(--gray-500);
}

.breadcrumb-nav .separator {
    margin: 0 8px;
    color: var(--gray-300);
}

.product-category-badge {
    display: inline-block;
    background: var(--primary-lighter);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.product-detail-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.product-detail-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.product-detail-description {
    margin-bottom: 30px;
    color: var(--gray-700);
}

.product-specs {
    background: var(--off-white);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}

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

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

.spec-label {
    font-weight: 500;
    color: var(--gray-700);
}

.spec-value {
    margin-left: auto;
    color: var(--gray-500);
}

.product-detail-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.product-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.feature-mini i {
    color: var(--primary);
}

/* ============================================
   Related Products
   ============================================ */
.related-products {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.product-card.mini .product-image {
    aspect-ratio: 1;
}

.product-card.mini .product-info {
    padding: 15px;
}

.product-card.mini .product-title {
    font-size: 1rem;
    margin-bottom: 5px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    min-height: 100vh;
    padding: 120px 0 var(--section-padding);
    background: linear-gradient(135deg, var(--cream) 0%, var(--primary-lighter) 100%);
    position: relative;
}

.contact-wrapper {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.contact-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 10px;
}

.contact-subtitle {
    color: var(--gray-500);
}

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

.contact-form .form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.contact-form .form-label i {
    color: var(--primary);
}

.contact-form .form-control {
    padding: 15px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-lighter);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: var(--gray-500);
}

.contact-alternative {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
}

.contact-alternative p {
    color: var(--gray-500);
    margin-bottom: 15px;
}

.alternative-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.alt-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 500;
}

.contact-decor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.decor-item {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    left: var(--x);
    top: var(--y);
    animation: float 8s ease-in-out infinite;
}

/* ============================================
   Success Page
   ============================================ */
.success-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--primary-lighter) 100%);
    position: relative;
}

.success-wrapper {
    text-align: center;
    background: var(--white);
    padding: 60px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.success-icon .checkmark {
    font-size: 3rem;
}

.success-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 15px;
}

.success-message {
    color: var(--gray-500);
    max-width: 400px;
    margin: 0 auto 30px;
}

.success-info {
    background: var(--off-white);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gray-700);
}

.info-item i {
    color: var(--primary);
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.success-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
}

.success-social p {
    color: var(--gray-500);
    margin-bottom: 15px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo {
    height: 125px;
    width: 125px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand .brand-icon {
    font-size: 1.5rem;
}

.footer-brand .brand-text {
    font-size: 1.3rem;
    color: var(--white);
}

.footer-description {
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--primary-light);
}

.footer-contact a {
    color: var(--gray-300);
}

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

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ============================================
   Messages Container
   ============================================ */
.messages-container {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 500px;
}

.messages-container .alert {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 991px) {
    .hero {
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-decor {
        display: none;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .contact-wrapper {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
    }
    
    .navbar-brand .brand-text {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .product-detail-actions {
        flex-direction: column;
    }
    
    .product-detail-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .success-wrapper {
        padding: 40px 20px;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-5 { margin-top: 3rem !important; }

/* Form validation */
.form-control.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
}