/* ============================================
   DAY TO DAY GIFTS - STYLESHEET
   Brand Colors: #8B4513 (brown), #C0A080 (gold), 
                 #444444 (dark grey), #FFFFFF (white)
   ============================================ */

/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-brown: #8B4513;
    --secondary-gold: #C0A080;
    --dark-grey: #444444;
    --white: #FFFFFF;
    --light-bg: #F9F7F5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-brown);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== NAVIGATION ========== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    font-size: 1.5rem;
    color: var(--primary-brown);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-grey);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-brown);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-brown);
    transition: var(--transition);
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-gold) 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.05)" width="50" height="50"/></svg>');
    background-size: 100px 100px;
}

.hero-overlay {
    position: relative;
    width: 100%;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn-primary,
.btn-secondary,
.btn-view,
.btn-whatsapp {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-brown);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: #6f3410;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-brown);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--white);
}

.btn-view {
    background: var(--secondary-gold);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
}

.btn-view:hover {
    background: var(--primary-brown);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1ea952;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-block {
    display: block;
    width: 100%;
    margin-bottom: 0.75rem;
}

/* ========== SECTIONS ========== */
.featured-section,
.products-section,
.features-section,
.customize-section,
.corporate-form-section,
.policy-section,
.tips-section,
.testimonials-section,
.cta-section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
}

/* ========== PRODUCT GRID ========== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary-gold);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-brown);
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    min-height: 2.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.view-all-btn {
    text-align: center;
    margin-top: 2rem;
}

/* ========== FEATURES GRID ========== */
.features-section {
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-gold) 100%);
    padding: 3rem 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ========== CATEGORY FILTER ========== */
.category-filter {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.625rem 1.5rem;
    border-radius: 25px;
    background: var(--white);
    color: var(--primary-brown);
    border: 2px solid var(--secondary-gold);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-brown);
    color: var(--white);
    border-color: var(--primary-brown);
}

/* ========== PRODUCT DETAILS PAGE ========== */
.product-details-section {
    padding: 2rem 0 4rem;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: #666;
}

.breadcrumb a {
    color: var(--primary-brown);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-images {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 1rem;
}

.main-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.image-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.thumbnail {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--secondary-gold);
}

.product-info-details {
    padding: 1rem 0;
}

.product-badge-inline {
    display: inline-block;
    background: var(--secondary-gold);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-info-details h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #FFD700;
    font-size: 1.25rem;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

.product-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.price-note {
    color: #059669;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.product-description-full {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #555;
}

.product-features h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    color: #555;
}

.product-options {
    margin-bottom: 2rem;
}

.option-group {
    margin-bottom: 1.5rem;
}

.option-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-brown);
}

.product-select,
.product-quantity {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--secondary-gold);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-meta {
    padding-top: 2rem;
    border-top: 1px solid #E5E5E5;
}

.product-meta p {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Product Tabs */
.product-tabs {
    margin-top: 4rem;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid #E5E5E5;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--primary-brown);
    border-bottom-color: var(--secondary-gold);
}

.tab-content {
    padding: 1rem 0;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #E5E5E5;
}

.specs-table td {
    padding: 1rem 0;
}

.review-summary {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.review-score {
    text-align: center;
}

.score-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-brown);
    display: block;
}

.stars-large {
    font-size: 2rem;
    color: #FFD700;
    display: block;
    margin: 0.5rem 0;
}

.review-count {
    color: #666;
    font-size: 0.9rem;
}

.review-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #E5E5E5;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--primary-brown);
}

.review-stars {
    color: #FFD700;
}

.review-text {
    color: #555;
    line-height: 1.7;
}

.related-products {
    margin-top: 4rem;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* ========== CUSTOMIZATION PAGE ========== */
.customize-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.form-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.form-card h2 {
    margin-bottom: 1rem;
}

.customize-form,
.corporate-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-brown);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary-gold);
}

.form-textarea {
    resize: vertical;
}

.form-help {
    display: block;
    margin-top: 0.25rem;
    color: #666;
    font-size: 0.85rem;
}

.file-upload-wrapper {
    position: relative;
}

.file-input {
    display: none;
}

.file-label {
    display: block;
    padding: 1rem;
    border: 2px dashed var(--secondary-gold);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--light-bg);
}

.file-label:hover {
    background: #f0ebe5;
    border-color: var(--primary-brown);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--secondary-gold);
    border-radius: 8px;
    background: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-brown);
    cursor: pointer;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--secondary-gold);
    color: var(--white);
}

.qty-input {
    width: 80px;
    text-align: center;
    padding: 0.5rem;
    border: 2px solid var(--secondary-gold);
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
}

.form-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-gold), transparent);
    margin: 2rem 0;
}

.form-actions {
    margin-top: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Customization Preview */
.customize-preview {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.preview-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.preview-card h3 {
    margin-bottom: 1rem;
}

.preview-box {
    background: var(--light-bg);
    border: 2px dashed var(--secondary-gold);
    border-radius: 12px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.preview-placeholder {
    text-align: center;
    color: #999;
}

.preview-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.preview-text {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(139, 69, 19, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
}

.preview-details {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 8px;
}

.preview-details h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

#previewList {
    list-style: none;
}

#previewList li {
    padding: 0.25rem 0;
    color: #555;
    font-size: 0.9rem;
}

.info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.info-card h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.process-list,
.info-list {
    list-style: none;
    padding-left: 0;
}

.process-list li,
.info-list li {
    padding: 0.5rem 0;
    color: #555;
    line-height: 1.6;
}

.process-list {
    counter-reset: item;
}

.process-list li {
    counter-increment: item;
    padding-left: 2rem;
    position: relative;
}

.process-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 24px;
    height: 24px;
    background: var(--secondary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Tips Section */
.tips-section {
    background: var(--light-bg);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.tip-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tip-card h4 {
    margin-bottom: 0.5rem;
}

.tip-card p {
    color: #666;
    font-size: 0.9rem;
}

/* ========== CORPORATE PAGE ========== */
.corporate-benefits {
    background: var(--light-bg);
    padding: 3rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #666;
    font-size: 0.9rem;
}

.corporate-form-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.form-intro {
    color: #666;
    margin-bottom: 1.5rem;
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-brown);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-privacy {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

.form-privacy a {
    color: var(--primary-brown);
    text-decoration: underline;
}

.corporate-info-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table tr {
    border-bottom: 1px solid #E5E5E5;
}

.pricing-table td {
    padding: 0.75rem 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-gold));
    color: var(--white);
}

.cta-card h3,
.cta-card h4 {
    color: var(--white);
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Testimonials */
.testimonials-section {
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--primary-brown);
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* ========== RETURNS/POLICY PAGE ========== */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.policy-card h2 {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.policy-card h3 {
    margin: 1.5rem 0 1rem;
    font-size: 1.25rem;
}

.policy-card p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.policy-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.policy-list li::before {
    position: absolute;
    left: 0;
}

.policy-list.negative li {
    color: #999;
}

.timeline-box {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.timeline-number {
    min-width: 60px;
    height: 60px;
    background: var(--secondary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    font-size: 0.95rem;
}

.process-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
}

.process-steps li {
    counter-increment: step;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
}

.process-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--primary-brown);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.process-steps strong {
    display: block;
    color: var(--primary-brown);
    margin-bottom: 0.25rem;
}

.info-box,
.warning-box,
.highlight-box {
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.info-box {
    background: #E0F2FE;
    border-left: 4px solid #0284C7;
}

.warning-box {
    background: #FEF3C7;
    border-left: 4px solid #F59E0B;
}

.highlight-box {
    background: var(--light-bg);
    border: 2px solid var(--secondary-gold);
}

.highlight-box h4 {
    margin-bottom: 0.75rem;
}

.contact-card {
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-gold));
    color: var(--white);
}

.contact-card h2,
.contact-card h4 {
    color: var(--white);
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-method {
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--white);
    text-decoration: underline;
}

.contact-details small {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.return-address {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E5E5E5;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #555;
}

.policy-footer {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-size: 0.9rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-gold));
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-grey);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary-gold);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-icon {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--secondary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6);
    }
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 1rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-images {
        position: static;
    }

    .customize-grid {
        grid-template-columns: 1fr;
    }

    .customize-preview {
        position: static;
    }

    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .corporate-form-layout {
        grid-template-columns: 1fr;
    }

    .corporate-info-sidebar {
        position: static;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .image-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }

    .tab-buttons {
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Print styles */
@media print {
    .navbar,
    .whatsapp-float,
    .hero-buttons,
    .btn-primary,
    .btn-secondary,
    .btn-view,
    .btn-whatsapp {
        display: none;
    }
}
