/* PawLux Pet Shop - Premium Styles */
:root {
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary: #2EC4B6;
    --secondary-dark: #25A99D;
    --accent: #FFD166;
    --bg: #FFFFFF;
    --bg-section: #F8F9FA;
    --text: #333333;
    --text-muted: #6C757D;
    --dark: #1A1A2E;
    --footer-bg: #1A1A2E;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 85px; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.7; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; color: var(--text); }
img { max-width: 100%; height: auto; display: block; }

.btn { font-family: var(--font-head); font-weight: 600; border-radius: 50px; padding: 0.7rem 1.75rem; transition: var(--transition); }
.btn-primary { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 4px 15px rgba(255,107,53,0.35); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,53,0.4); color: #fff; }
.btn-secondary-custom { background: var(--secondary); border: none; color: #fff; }
.btn-secondary-custom:hover { background: var(--secondary-dark); color: #fff; transform: translateY(-2px); }
.btn-outline-primary-custom { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline-primary-custom:hover { background: var(--primary); color: #fff; }
.btn-accent { background: var(--accent); color: var(--text); border: none; font-weight: 700; }
.btn-accent:hover { background: #F5C255; color: var(--text); transform: translateY(-2px); }
.btn-lg { padding: 0.9rem 2rem; }

.section-padding { padding: 90px 0; }
.bg-section { background: var(--bg-section); }
.section-label { display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--secondary); margin-bottom: 0.5rem; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.section-subtitle { color: var(--text-muted); max-width: 600px; margin: 0 auto 3rem; }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1030; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,0.06); transition: var(--transition); }
.site-header .navbar { padding: 0.75rem 0; }
.site-header .nav-link { font-weight: 500; color: var(--text) !important; padding: 0.5rem 1rem !important; position: relative; }
.site-header .nav-link:hover, .site-header .nav-link.active { color: var(--primary) !important; }
.site-header .nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: var(--primary); transition: var(--transition); transform: translateX(-50%); }
.site-header .nav-link:hover::after, .site-header .nav-link.active::after { width: 60%; }
.btn-shop { padding: 0.55rem 1.4rem !important; font-size: 0.9rem; }
@media (max-width: 991.98px) {
    .site-header .navbar-collapse { background: #fff; border-radius: var(--radius); padding: 1rem; margin-top: 0.75rem; box-shadow: var(--shadow); }
    .btn-shop { margin-top: 0.75rem; width: 100%; }
}

/* Hero */
.hero-section { position: relative; min-height: 92vh; display: flex; align-items: center; padding: 120px 0 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,107,53,0.88) 0%, rgba(46,196,182,0.75) 100%), url('../images/hero-pets.jpg') center/cover no-repeat; z-index: 0; }
.hero-shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-shape { position: absolute; border-radius: 50%; opacity: 0.15; background: var(--accent); }
.hero-shape-1 { width: 300px; height: 300px; top: 10%; right: 5%; animation: float 8s ease-in-out infinite; }
.hero-shape-2 { width: 150px; height: 150px; bottom: 20%; left: 10%; animation: float 6s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.hero-content { position: relative; z-index: 2; color: #fff; }
.hero-content h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.25rem); margin-bottom: 1.25rem; }
.hero-content p { font-size: 1.15rem; opacity: 0.95; max-width: 540px; margin-bottom: 2rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-image-wrap { position: relative; z-index: 2; }
.hero-image-wrap img { border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 4px solid rgba(255,255,255,0.3); }
.hero-badge { position: absolute; bottom: -15px; left: -15px; background: var(--accent); color: var(--text); padding: 1rem 1.25rem; border-radius: var(--radius-sm); font-weight: 700; box-shadow: var(--shadow); }
.hero-badge span { display: block; font-size: 1.5rem; line-height: 1; }

/* Features */
.feature-card { background: #fff; border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.04); transition: var(--transition); height: 100%; }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(255,107,53,0.2); }
.feature-icon { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, rgba(255,107,53,0.12), rgba(46,196,182,0.12)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 1.75rem; color: var(--primary); transition: var(--transition); }
.feature-card:hover .feature-icon { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; }
.feature-card h4 { font-size: 1.1rem; margin-bottom: 0.75rem; }

/* Category Cards */
.category-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); height: 220px; }
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.category-card:hover img { transform: scale(1.08); }
.category-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 1.25rem; }
.category-overlay h5 { color: #fff; margin: 0; font-size: 1.1rem; }
.category-overlay span { color: var(--accent); font-size: 0.85rem; font-weight: 600; }

/* Product Cards */
.product-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); height: 100%; border: 1px solid rgba(0,0,0,0.04); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img { height: 220px; overflow: hidden; background: var(--bg-section); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-body { padding: 1.25rem; }
.product-body h5 { font-size: 1rem; margin-bottom: 0.5rem; }
.product-price { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.product-rating { color: var(--accent); font-size: 0.85rem; margin-bottom: 1rem; }
.product-rating span { color: var(--text-muted); font-size: 0.8rem; margin-left: 0.25rem; }

/* Why Choose */
.why-card { display: flex; gap: 1rem; padding: 1.5rem; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); height: 100%; border-left: 4px solid var(--secondary); }
.why-card:hover { transform: translateX(5px); box-shadow: var(--shadow-lg); }
.why-icon { width: 50px; height: 50px; min-width: 50px; border-radius: 12px; background: rgba(46,196,182,0.12); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--secondary); }
.why-card h5 { font-size: 1rem; margin-bottom: 0.35rem; }
.why-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* Services */
.service-card { background: #fff; border-radius: var(--radius); padding: 2rem; text-align: center; box-shadow: var(--shadow); transition: var(--transition); height: 100%; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1.25rem; }
.service-card h4 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* Testimonials */
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); height: 100%; position: relative; }
.testimonial-card::before { content: '\201C'; font-family: Georgia, serif; font-size: 4rem; color: rgba(255,107,53,0.15); position: absolute; top: 10px; left: 20px; line-height: 1; }
.testimonial-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.testimonial-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid var(--accent); }
.testimonial-stars { color: var(--accent); margin-bottom: 0.75rem; }
.testimonial-text { font-style: italic; color: var(--text-muted); margin: 0; }

/* Promo Banner */
.promo-banner { background: linear-gradient(135deg, var(--primary) 0%, #FF8F65 50%, var(--secondary) 100%); border-radius: var(--radius); padding: 3rem 2rem; text-align: center; color: #fff; position: relative; overflow: hidden; }
.promo-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M20 20h20v20H20zM0 0h20v20H0z'/%3E%3C/g%3E%3C/svg%3E"); }
.promo-banner h2 { color: #fff; font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 0.75rem; position: relative; }
.promo-banner p { opacity: 0.95; margin-bottom: 1.5rem; position: relative; }
.promo-code { display: inline-block; background: var(--accent); color: var(--text); padding: 0.5rem 1.5rem; border-radius: 50px; font-weight: 700; font-family: var(--font-head); position: relative; }

/* FAQ */
.faq-item { border: none; margin-bottom: 0.75rem; border-radius: var(--radius-sm) !important; overflow: hidden; box-shadow: var(--shadow); }
.faq-item .accordion-button { font-weight: 600; color: var(--text); background: #fff; padding: 1.15rem 1.5rem; box-shadow: none; }
.faq-item .accordion-button:not(.collapsed) { background: rgba(255,107,53,0.06); color: var(--primary); }
.faq-item .accordion-body { color: var(--text-muted); font-size: 0.95rem; padding: 0 1.5rem 1.25rem; }

/* Contact */
.contact-info-box { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); color: #fff; border-radius: var(--radius); padding: 2rem; height: 100%; }
.contact-info-box h3 { color: #fff; margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.contact-item i { font-size: 1.25rem; color: var(--accent); }
.contact-form-box { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-lg); }
.contact-form-box .form-control { border-radius: var(--radius-sm); padding: 0.75rem 1rem; border: 1px solid #dee2e6; }
.contact-form-box .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,107,53,0.15); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 2rem; }
.map-wrap iframe { width: 100%; height: 350px; border: 0; }

/* About */
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 400px; object-fit: cover; }

/* Footer */
.site-footer { background: var(--footer-bg); color: rgba(255,255,255,0.75); }
.footer-top { padding: 60px 0 40px; }
.footer-top h6 { color: #fff; font-weight: 600; margin-bottom: 1rem; }
.footer-top ul { list-style: none; padding: 0; margin: 0; }
.footer-top li { margin-bottom: 0.5rem; }
.footer-top a { color: rgba(255,255,255,0.65); text-decoration: none; transition: var(--transition); }
.footer-top a:hover { color: var(--accent); }
.footer-top p { font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 0; font-size: 0.85rem; }
.text-accent { color: var(--accent) !important; }

/* Legal */
.legal-hero { background: linear-gradient(135deg, var(--primary), var(--secondary)); padding: 140px 0 70px; color: #fff; text-align: center; }
.legal-hero h1, .legal-hero p { color: #fff; }
.legal-content { padding: 60px 0; }
.legal-content h2 { font-size: 1.4rem; margin-top: 2rem; border-bottom: 2px solid rgba(255,107,53,0.2); padding-bottom: 0.5rem; }

/* Back to top */
.back-to-top { position: fixed; bottom: 25px; right: 25px; width: 46px; height: 46px; border-radius: 50%; background: var(--primary); color: #fff; border: none; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 1020; box-shadow: var(--shadow); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

@media (max-width: 767.98px) {
    .section-padding { padding: 65px 0; }
    .hero-section { min-height: auto; padding: 110px 0 60px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; text-align: center; }
    .hero-image-wrap { margin-top: 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
}
