/* ========================================
   LAZADAS - Crochet by Paula
   Handcrafted, warm, modern aesthetic
   ======================================== */

:root {
    /* Color palette - earthy, warm tones */
    --color-cream: #FDF8F3;
    --color-sand: #F5EDE4;
    --color-terracotta: #C17854;
    --color-terracotta-dark: #A65D3F;
    --color-sage: #8B9E82;
    --color-sage-dark: #6B7F63;
    --color-mustard: #D4A853;
    --color-coral: #E8836B;
    --color-brown: #5C4033;
    --color-brown-light: #8B6F5E;
    --color-text: #3D3027;
    --color-text-light: #7A6B5F;
    --color-white: #FFFFFF;
    --color-border: #E8DDD4;

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 6rem 0;
    --card-radius: 12px;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: var(--color-terracotta);
    transition: color 0.3s ease;
}

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

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

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
    background-color: var(--color-terracotta);
    border-color: var(--color-terracotta);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-terracotta-dark);
    border-color: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 120, 84, 0.3);
}

.btn-outline-primary {
    color: var(--color-terracotta);
    border-color: var(--color-terracotta);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--color-terracotta);
    border-color: var(--color-terracotta);
    transform: translateY(-2px);
}

.btn-hero {
    background-color: var(--color-white);
    color: var(--color-terracotta);
    border: 2px solid var(--color-white);
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    background-color: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-brown);
}

.brand-subtitle {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-terracotta);
    font-weight: 500;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-terracotta);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link:hover {
    color: var(--color-terracotta) !important;
}

.cart-link {
    position: relative;
    font-size: 1.2rem;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--color-coral);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-brown);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   SECTIONS
   ======================================== */
.section-latest,
.section-how-it-works,
.section-testimonials {
    padding: var(--section-padding);
}

.section-latest {
    background-color: var(--color-white);
}

.section-how-it-works {
    background-color: var(--color-sand);
}

.section-testimonials {
    background-color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-brown);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

/* ========================================
   PRODUCT CARDS
   ======================================== */
.product-card {
    background: var(--color-white);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--color-border);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(92, 64, 51, 0.12);
}

.product-card a {
    color: inherit;
    text-decoration: none;
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background-color: var(--color-sand);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-image .product-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover .product-img-hover {
    opacity: 1;
}

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

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-border);
    background-color: var(--color-sand);
}

.badge-customizable {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--color-sage);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-card-body {
    padding: 1.25rem;
}

.product-card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-sage);
    font-weight: 500;
}

.product-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin: 0.3rem 0;
    color: var(--color-brown);
}

.product-card-price {
    color: var(--color-terracotta);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* ========================================
   HOW IT WORKS CARDS
   ======================================== */
.how-card {
    background: var(--color-white);
    border-radius: var(--card-radius);
    padding: 2.5rem;
    height: 100%;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease;
}

.how-card:hover {
    transform: translateY(-4px);
}

.how-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.how-card p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

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

.how-list li {
    padding: 0.4rem 0;
    color: var(--color-text-light);
}

.how-list li i {
    color: var(--color-sage);
    margin-right: 0.5rem;
}

.how-card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-terracotta);
    margin-bottom: 1.5rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-card {
    background: var(--color-sand);
    border-radius: var(--card-radius);
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--color-mustard);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-brown);
}

/* ========================================
   PAGE HEADERS
   ======================================== */
.page-header {
    padding: 8rem 0 3rem;
    background-color: var(--color-sand);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: var(--color-brown);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

/* ========================================
   SHOP PAGE
   ======================================== */
.shop-section {
    padding: 3rem 0 6rem;
}

.shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

/* ========================================
   PRODUCT DETAIL
   ======================================== */
.product-detail-section {
    padding: 7rem 0 5rem;
}

.breadcrumb-nav {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

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

.breadcrumb-nav a:hover {
    color: var(--color-terracotta);
}

.breadcrumb-nav span {
    margin: 0 0.5rem;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    border-radius: var(--card-radius);
    overflow: hidden;
    margin-bottom: 1rem;
    cursor: zoom-in;
}

.gallery-main-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 0.75rem;
}

.thumb {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumb.active,
.thumb:hover {
    border-color: var(--color-terracotta);
}

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

.product-placeholder-lg {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-sand);
    border-radius: var(--card-radius);
    color: var(--color-border);
}

.product-info {
    padding-top: 1rem;
}

.product-category-badge {
    display: inline-block;
    background-color: var(--color-sage);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.product-description {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Purchase options */
.purchase-option {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--card-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s ease;
}

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

.purchase-option-kit:hover {
    border-color: var(--color-sage);
}

.purchase-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.purchase-option-header h3 {
    font-size: 1.2rem;
    margin: 0;
}

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

.purchase-description {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.qr-preview {
    text-align: center;
}

.qr-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

/* Related products */
.related-products {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

.related-products .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* ========================================
   CART
   ======================================== */
.cart-section {
    padding: 2rem 0 6rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: var(--card-radius);
    border: 1px solid var(--color-border);
    margin-bottom: 1rem;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.cart-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-sand);
    color: var(--color-border);
}

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

.cart-item-name {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-display);
}

.cart-item-type {
    display: inline-block;
    background-color: var(--color-sand);
    padding: 0.15rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.cart-item-detail {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.cart-qty-input {
    width: 60px;
    text-align: center;
}

.cart-item-price {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-terracotta);
    min-width: 60px;
    text-align: right;
}

.cart-summary {
    background: var(--color-white);
    border-radius: var(--card-radius);
    border: 1px solid var(--color-border);
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    margin-bottom: 1.5rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
}

.cart-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-brown);
}

.empty-cart i {
    color: var(--color-border);
}

/* ========================================
   CHECKOUT
   ======================================== */
.checkout-section {
    padding: 2rem 0 6rem;
}

.checkout-form-wrapper {
    background: var(--color-white);
    border-radius: var(--card-radius);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
}

.checkout-form-wrapper h2 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.checkout-summary {
    background: var(--color-white);
    border-radius: var(--card-radius);
    border: 1px solid var(--color-border);
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.checkout-summary h3 {
    margin-bottom: 1.5rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.checkout-item:last-of-type {
    border-bottom: none;
}

.checkout-item-price {
    font-weight: 600;
    color: var(--color-terracotta);
    white-space: nowrap;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-brown);
}

.payment-simulation {
    background: var(--color-sand);
    padding: 1.5rem;
    border-radius: var(--card-radius);
}

/* ========================================
   CONFIRMATION
   ======================================== */
.confirmation-section {
    padding: 8rem 0 5rem;
}

.confirmation-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--card-radius);
    border: 1px solid var(--color-border);
    padding: 3rem;
    text-align: center;
}

.confirmation-icon {
    font-size: 4rem;
    color: var(--color-sage);
    margin-bottom: 1.5rem;
}

.confirmation-card h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.confirmation-subtitle {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.confirmation-details {
    text-align: left;
    margin-top: 2rem;
}

.confirmation-ref {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-sand);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.confirmation-ref strong {
    font-size: 1.3rem;
    color: var(--color-terracotta);
}

.confirmation-info {
    margin-bottom: 2rem;
}

.confirmation-info p {
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.confirmation-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.confirmation-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-brown);
    margin-top: 0.5rem;
}

.confirmation-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-section {
    padding: var(--section-padding);
}

.about-image-wrapper {
    border-radius: var(--card-radius);
    overflow: hidden;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-border) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--color-brown-light);
    border-radius: var(--card-radius);
}

.about-name {
    font-size: 2.2rem;
    margin-bottom: 0.25rem;
}

.about-role {
    color: var(--color-terracotta);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.9;
}

/* Values section */
.values-section {
    padding: var(--section-padding);
    background-color: var(--color-sand);
}

.value-card {
    background: var(--color-white);
    border-radius: var(--card-radius);
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--color-sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-terracotta);
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Credits */
.credits-section {
    padding: 3rem 0;
}

.credits-card {
    background: var(--color-white);
    border-radius: var(--card-radius);
    padding: 1.5rem 2rem;
    text-align: center;
    border: 1px solid var(--color-border);
}

.credits-text {
    color: var(--color-text-light);
    margin: 0;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
    padding: 3rem 0 6rem;
}

.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--card-radius);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
}

.contact-form-wrapper h2 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-info {
    background: var(--color-sand);
    border-radius: var(--card-radius);
    padding: 2.5rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    font-size: 1.3rem;
    color: var(--color-terracotta);
    margin-top: 0.2rem;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 0.2rem;
}

.contact-info-item p {
    color: var(--color-text-light);
    margin: 0;
    font-size: 0.95rem;
}

.contact-note {
    background: var(--color-white);
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 2rem;
}

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

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background-color: var(--color-brown);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    margin-right: 0.75rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-terracotta);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255,255,255,0.15);
    margin: 2.5rem 0 1.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-credits {
    opacity: 0.7;
}

/* ========================================
   MESSAGES
   ======================================== */
.messages-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9998;
    max-width: 400px;
}

.messages-container .alert {
    border-radius: var(--card-radius);
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ========================================
   FORMS
   ======================================== */
.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid var(--color-border);
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-terracotta);
    box-shadow: 0 0 0 3px rgba(193, 120, 84, 0.1);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .cart-item {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .confirmation-actions {
        flex-direction: column;
    }

    .purchase-option-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .brand-text {
        font-size: 1.5rem;
    }

    .section-latest,
    .section-how-it-works,
    .section-testimonials {
        padding: 4rem 0;
    }
}

/* ========================================
   PRICING - Sale & Discount Styles
   ======================================== */
.product-price-block {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.price-current {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-brown);
}

.price-current.price-sale {
    color: var(--color-coral);
}

.price-original {
    font-size: 1.4rem;
    color: var(--color-text-light);
    text-decoration: line-through;
}

.badge-sale {
    background: var(--color-coral);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-original-sm {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-decoration: line-through;
}

.price-sale-sm {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-coral);
}

.product-id-badge {
    font-size: 0.75rem;
    color: var(--color-text-light);
    background: var(--color-sand);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
}

/* ========================================
   BRAND LOGO - Circular
   ======================================== */
.brand-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-terracotta);
    margin-right: 0.5rem;
}

/* ========================================
   HERO - Banner Background
   ======================================== */

/* ========================================
   ABOUT - Photos
   ======================================== */
.about-photo {
    width: 100%;
    max-width: 400px;
    border-radius: var(--card-radius);
    box-shadow: 0 10px 40px rgba(92, 64, 51, 0.15);
    object-fit: cover;
}

.credits-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-terracotta);
    box-shadow: 0 5px 20px rgba(92, 64, 51, 0.1);
}
