/* ===================================
   The Attar World - Premium Styles
   =================================== */

:root {
    /* Color Palette - Warm Islamic Elegance */
    --primary-gold: #d4af37;
    --primary-dark: #1a1a1a;
    --primary-burgundy: #7d2e33;
    --accent-sage: #8b9a82;
    --cream: #f5f1e8;
    --sand: #e8dcc4;
    --dark-brown: #3d2817;
    --light-gold: #f4e8c1;
    
    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --font-body: 'Lora', serif;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

html {
    scroll-behavior: smooth;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.85) 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold) !important;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.brand-icon {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-right: 0.5rem;
    display: inline-block;
    animation: rotate 20s linear infinite;
}

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

.navbar-brand:hover {
    transform: translateY(-2px);
    color: var(--light-gold) !important;
}

.nav-link {
    font-family: var(--font-elegant);
    color: var(--cream) !important;
    font-size: 1.05rem;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

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

.btn-call {
    background: var(--primary-gold);
    color: var(--primary-dark) !important;
    border-radius: 25px;
    padding: 0.6rem 1.5rem !important;
    font-weight: 600;
}

.btn-call:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #3d2817 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(125, 46, 51, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.03) 35px, rgba(212, 175, 55, 0.03) 70px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.decorative-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 0 auto 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-accent {
    display: inline-block;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.6; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

.hero-tagline {
    font-family: var(--font-elegant);
    font-size: 2rem;
    color: var(--light-gold);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-cta .btn {
    margin: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition-bounce);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), #c4982d);
    border: none;
    color: var(--primary-dark);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c4982d, var(--primary-gold));
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-strong);
}

.btn-outline-light {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-strong);
}

.scroll-indicator {
    margin-top: 4rem;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--primary-gold);
}

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

/* Fade-in animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease forwards;
}

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

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

/* ===================================
   Section Styling
   =================================== */

section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    color: var(--primary-burgundy);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 1.5rem auto;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.products-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
}

.product-filters {
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-dark);
    padding: 0.7rem 2rem;
    margin: 0.5rem;
    border-radius: 25px;
    font-family: var(--font-elegant);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: var(--sand);
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.btn-quick-view {
    background: white;
    color: var(--primary-dark);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.product-card:hover .btn-quick-view {
    transform: translateY(0);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-burgundy);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.new-badge {
    background: var(--accent-sage);
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-rating {
    margin-bottom: 0.8rem;
    color: var(--primary-gold);
}

.product-rating i {
    font-size: 0.9rem;
    margin-right: 2px;
}

.product-rating span {
    color: #999;
    font-size: 0.9rem;
    margin-left: 5px;
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--primary-burgundy);
    font-weight: 700;
}

.btn-add-cart {
    background: var(--primary-gold);
    color: var(--primary-dark);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.btn-add-cart:hover {
    background: var(--primary-burgundy);
    color: white;
    transform: scale(1.1);
}

#loadMoreBtn {
    padding: 1rem 3rem;
    border-radius: 30px;
    border: 2px solid var(--primary-gold);
    background: transparent;
    color: var(--primary-dark);
    font-weight: 600;
    transition: var(--transition-smooth);
}

#loadMoreBtn:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

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

.why-us-section {
    background: white;
}

.feature-card {
    background: linear-gradient(135deg, var(--cream), white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), #c4982d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

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

.feature-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-description {
    color: #666;
    line-height: 1.7;
}

/* ===================================
   Social Section
   =================================== */

.social-section {
    background: linear-gradient(135deg, var(--dark-brown), var(--primary-dark));
    color: white;
}

.social-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.social-description {
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.social-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
}

.stat-item strong {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-gold);
    font-family: var(--font-display);
}

.stat-item span {
    display: block;
    color: var(--cream);
    font-size: 0.9rem;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.social-btn i {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-btn span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-btn strong {
    display: block;
    font-size: 1.3rem;
    font-family: var(--font-display);
}

.facebook-btn {
    background: linear-gradient(135deg, #1877f2, #0d5dbf);
    color: white;
}

.facebook-btn:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-strong);
}

.instagram-btn {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #f77737, #fcaf45);
    color: white;
}

.instagram-btn:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-strong);
}

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

.checkout-section {
    background: var(--cream);
    padding: 80px 0;
}

.checkout-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.checkout-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.order-summary {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.order-summary h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid var(--primary-gold);
    font-size: 1.3rem;
}

.order-total strong {
    font-family: var(--font-display);
    color: var(--primary-burgundy);
    font-size: 1.8rem;
}

.checkout-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 2rem 0 1.5rem;
    color: var(--primary-dark);
}

.form-label {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.payment-option {
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-card {
    border: 2px solid #e0e0e0;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition-smooth);
}

.payment-option input[type="radio"]:checked + .payment-card {
    border-color: var(--primary-gold);
    background: var(--light-gold);
}

.payment-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.payment-card i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.payment-card span {
    display: block;
    font-weight: 600;
    color: var(--primary-dark);
}

/* ===================================
   Order Tracking Section
   =================================== */

.tracking-section {
    background: var(--cream);
    padding: 80px 0;
}

.tracking-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.tracking-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.tracking-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tracking-input-group .form-control {
    flex: 1;
}

.tracking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--sand);
    margin-bottom: 2rem;
}

.tracking-timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    width: 2px;
    height: calc(100% + 1rem);
    background: #e0e0e0;
}

.timeline-item.completed::before {
    background: var(--primary-gold);
}

.timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-item.completed .timeline-icon {
    background: var(--primary-gold);
    color: white;
}

.timeline-item.active .timeline-icon {
    background: var(--primary-burgundy);
    color: white;
    animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(125, 46, 51, 0.7); }
    100% { box-shadow: 0 0 0 15px rgba(125, 46, 51, 0); }
}

.timeline-content h5 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
}

.timeline-content p {
    color: #666;
    font-size: 0.9rem;
}

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

.contact-section {
    background: linear-gradient(180deg, white 0%, var(--cream) 100%);
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), #c4982d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--primary-burgundy);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

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

.contact-card p {
    color: #666;
    margin-top: 0.5rem;
}

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

.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--dark-brown));
    color: var(--cream);
    padding: 4rem 0 2rem;
}

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

.footer-description {
    color: rgba(245, 241, 232, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: rgba(245, 241, 232, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(245, 241, 232, 0.8);
}

.footer-contact i {
    color: var(--primary-gold);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(245, 241, 232, 0.6);
    margin: 0;
}

/* ===================================
   Scroll to Top Button
   =================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-burgundy);
    color: white;
    transform: translateY(-5px);
}

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .social-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-image {
        height: 220px;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .social-buttons {
        margin-top: 2rem;
    }
    
    .checkout-card,
    .tracking-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .tracking-input-group {
        flex-direction: column;
    }
}
