/* ==========================================================================
   متغيرات الألوان والتصميم الأساسي
   ========================================================================== */
:root {
    --gold: #D4AF37;
    --gold-dark: #B5952F;
    --gold-light: #F9E596;
    --black: #030303;
    --dark-bg: #080808;
    --card-bg: #111111;
    --white: #FFFFFF;
    --text-muted: #A0A0A0;
    --border-color: #222222;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --glass-bg: rgba(17, 17, 17, 0.7);
}

/* تخصيص شريط التمرير (Scrollbar) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

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

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select { outline: none; font-family: inherit; border: none; }

/* تأثيرات الانيميشن الموحدة */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.hover-glow:hover { box-shadow: 0 0 25px rgba(212, 175, 55, 0.4); }

/* ==========================================================================
   شريط التنقل (Navbar)
   ========================================================================== */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 6%; background-color: rgba(3, 3, 3, 0.5);
    position: fixed; width: 100%; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 1rem 6%; background-color: rgba(3, 3, 3, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}
.logo { font-size: 2.2rem; font-weight: 800; letter-spacing: 2px; cursor: pointer; text-transform: uppercase; }
.logo span { color: var(--gold); }

.nav-links { display: flex; gap: 3rem; }
.nav-links a { font-size: 1.15rem; font-weight: 500; position: relative; transition: var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; right: 0;
    width: 0; height: 2px; background: var(--gold); transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.cart-icon { font-size: 1.6rem; cursor: pointer; position: relative; transition: var(--transition); }
.cart-icon:hover { color: var(--gold); transform: scale(1.1); }
.cart-count {
    position: absolute; top: -8px; right: -12px;
    background: var(--gold); color: var(--black);
    font-size: 0.85rem; font-weight: bold;
    min-width: 22px; height: 22px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cart-count.pop { transform: scale(1.5); }

/* ==========================================================================
   القسم الرئيسي (Hero Section)
   ========================================================================== */
.page { display: none; min-height: 100vh; animation: fadeInPage 0.5s ease forwards; }
.page.active { display: block; }
@keyframes fadeInPage { from { opacity: 0; filter: blur(5px); } to { opacity: 1; filter: blur(0); } }

.hero {
    height: 100vh; position: relative;
    background: url('https://images.unsplash.com/photo-1600003014755-ba31aa59c4b6?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    display: flex; justify-content: center; align-items: center; text-align: center;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(3,3,3,0.7) 0%, rgba(3,3,3,0.5) 50%, var(--dark-bg) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 20px; }
.hero-subtitle {
    display: inline-block; color: var(--gold); font-size: 1.2rem; letter-spacing: 4px;
    margin-bottom: 1.5rem; text-transform: uppercase; border-bottom: 1px solid var(--gold); padding-bottom: 5px;
}
.hero-content h1 { font-size: 5.5rem; font-weight: 800; margin-bottom: 1.5rem; line-height: 1.2; text-shadow: 0 10px 40px rgba(0,0,0,0.9); }
.hero-content h1 span { color: var(--gold); }
.hero-content p { font-size: 1.5rem; color: #E0E0E0; margin-bottom: 3.5rem; max-width: 800px; margin-inline: auto; font-weight: 300; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; }

.scroll-down {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    color: var(--white); font-size: 2rem; z-index: 2;
    animation: bounce 2s infinite; cursor: pointer; transition: var(--transition);
}
.scroll-down:hover { color: var(--gold); }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); } 40% { transform: translateY(-20px) translateX(-50%); } 60% { transform: translateY(-10px) translateX(-50%); } }

/* شريط الماركات المتحرك */
.brands-marquee {
    background: var(--card-bg); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0; overflow: hidden; position: relative; white-space: nowrap;
}
.brands-marquee::before, .brands-marquee::after {
    content: ''; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2;
}
.brands-marquee::before { left: 0; background: linear-gradient(to right, var(--card-bg), transparent); }
.brands-marquee::after { right: 0; background: linear-gradient(to left, var(--card-bg), transparent); }
.marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
.marquee-content span { font-size: 1.5rem; font-weight: 700; color: var(--text-muted); margin: 0 2rem; letter-spacing: 2px; transition: 0.3s; }
.marquee-content span:hover { color: var(--gold); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(50%); } } /* للاتجاه العربي */

/* الأزرار المشتركة */
.btn-gold, .btn-outline {
    padding: 16px 45px; font-size: 1.2rem; font-weight: 700; cursor: pointer; border-radius: 6px;
    transition: var(--transition); font-family: 'Tajawal', sans-serif; display: inline-block;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--black);
    position: relative; overflow: hidden;
}
.btn-gold::after {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: rgba(255,255,255,0.2); transform: rotate(45deg); transition: all 0.5s ease; opacity: 0;
}
.btn-gold:hover::after { left: 100%; opacity: 1; }
.btn-gold:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4); }

.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); transform: translateY(-5px); }
.full-width { width: 100%; }

/* ==========================================================================
   الأقسام الفرعية (المميزات والآراء)
   ========================================================================== */
.section-padding { padding: 7rem 6%; }
.section-title { text-align: center; font-size: 3.2rem; margin-bottom: 5rem; position: relative; padding-bottom: 15px; }
.section-title span { color: var(--gold); }
.section-title::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 80px; height: 4px; background: var(--gold); transition: 0.4s; border-radius: 2px;
}
.section-title:hover::after { width: 150px; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; text-align: center; }
.feature-card {
    padding: 4rem 2rem; background: var(--glass-bg); border-radius: 16px; border: 1px solid var(--border-color);
    transition: var(--transition); backdrop-filter: blur(10px); position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(212,175,55,0.1), transparent); opacity: 0; transition: 0.5s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover { transform: translateY(-15px); border-color: var(--gold); box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
.feature-icon { width: 80px; height: 80px; margin: 0 auto 2rem; background: rgba(212,175,55,0.1); border-radius: 50%; display: flex; justify-content: center; align-items: center; border: 1px solid var(--gold); transition: 0.5s; }
.feature-card:hover .feature-icon { background: var(--gold); transform: rotateY(180deg); }
.feature-icon i { font-size: 2.5rem; color: var(--gold); transition: 0.5s;}
.feature-card:hover .feature-icon i { color: var(--black); }
.feature-card h3 { font-size: 1.6rem; margin-bottom: 1rem; color: var(--white); }
.feature-card p { color: var(--text-muted); font-size: 1.15rem; line-height: 1.8; }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 3rem; }
.review-card { background: var(--card-bg); padding: 3rem; border-radius: 12px; border-left: 4px solid var(--gold); position: relative; }
.review-card::before { content: '\201C'; position: absolute; top: 10px; right: 20px; font-size: 6rem; color: rgba(212,175,55,0.1); font-family: sans-serif; line-height: 1; }
.stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 1.5rem; }
.review-text { font-size: 1.25rem; font-style: italic; margin-bottom: 2rem; color: #ddd; line-height: 1.9; z-index: 2; position: relative; }
.client-name { color: var(--gold-light); font-size: 1.1rem; font-weight: 700; }

/* ==========================================================================
   المتجر والفلاتر (الكتالوج)
   ========================================================================== */
.shop-controls {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
    margin-bottom: 3rem; background: var(--card-bg); padding: 20px; border-radius: 12px; border: 1px solid var(--border-color);
}
.search-box { flex: 1; min-width: 300px; position: relative; }
.search-box i { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 1.2rem; }
.search-box input {
    width: 100%; background: var(--dark-bg); border: 1px solid var(--border-color); color: white;
    padding: 15px 20px 15px 50px; border-radius: 8px; font-size: 1.1rem; transition: 0.3s;
}
.search-box input:focus { border-color: var(--gold); box-shadow: 0 0 15px rgba(212,175,55,0.2); }
.sort-box select {
    background: var(--dark-bg); border: 1px solid var(--border-color); color: white;
    padding: 15px 20px; border-radius: 8px; font-size: 1.1rem; cursor: pointer; transition: 0.3s; width: 100%; min-width: 250px;
}
.sort-box select:focus { border-color: var(--gold); }

.filter-bar { display: flex; justify-content: center; gap: 1.2rem; margin-bottom: 4rem; flex-wrap: wrap; }
.filter-btn {
    background: rgba(255,255,255,0.02); color: var(--text-muted); border: 1px solid var(--border-color);
    padding: 12px 35px; border-radius: 30px; cursor: pointer; transition: var(--transition);
    font-size: 1.15rem; font-weight: 500;
}
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4); transform: translateY(-3px); }

/* كروت المنتجات */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 3.5rem; }
.product-card {
    background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 16px;
    overflow: hidden; cursor: pointer; position: relative; display: flex; flex-direction: column;
    opacity: 0; animation: fadeUpCard 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards; transition: var(--transition);
}
@keyframes fadeUpCard { from { opacity: 0; transform: translateY(40px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }

.product-card:hover { border-color: var(--gold); transform: translateY(-15px); box-shadow: 0 25px 50px rgba(0,0,0,0.9), 0 0 30px rgba(212, 175, 55, 0.15); }
.product-brand-tag {
    position: absolute; top: 20px; right: 20px; background: rgba(0,0,0,0.85);
    color: var(--gold); padding: 8px 20px; border-radius: 30px; font-size: 0.9rem;
    font-weight: 800; z-index: 2; border: 1px solid var(--gold); backdrop-filter: blur(5px); letter-spacing: 1px;
}
.product-img { width: 100%; height: 420px; overflow: hidden; position: relative; background: #fff; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.product-card:hover .product-img img { transform: scale(1.15); }
.product-img::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.02); transition: var(--transition); }
.product-card:hover .product-img::after { background: rgba(0,0,0,0.3); }

.product-info { padding: 2.5rem 1.5rem; text-align: center; background: linear-gradient(to top, var(--card-bg) 90%, transparent); z-index: 2; }
.product-name { font-size: 1.45rem; margin-bottom: 1rem; color: var(--white); font-weight: 500; line-height: 1.4;}
.product-card:hover .product-name { color: var(--gold-light); }
.product-price { color: var(--gold); font-weight: 800; font-size: 1.6rem; letter-spacing: 1px; }

.add-to-cart-btn {
    position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: var(--black); padding: 15px 30px; border-radius: 30px;
    border: none; font-weight: 800; cursor: pointer; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); opacity: 0; font-size: 1.1rem; width: 85%; z-index: 3;
}
.product-card:hover .add-to-cart-btn { bottom: 30px; opacity: 1; box-shadow: 0 15px 30px rgba(0,0,0,0.6); }
.add-to-cart-btn:hover { background: var(--white); transform: translateX(-50%) scale(1.05); }

/* ==========================================================================
   صفحة تفاصيل المنتج
   ========================================================================== */
.product-details-container { display: flex; flex-wrap: wrap; gap: 6rem; padding: 8rem 6% 4rem; align-items: center; }
.pd-image { flex: 1; min-width: 400px; border-radius: 16px; overflow: hidden; border: 1px solid var(--border-color); box-shadow: 0 25px 60px rgba(0,0,0,0.9); background: #fff; position: relative; }
.pd-image img { width: 100%; height: auto; display: block; transition: 0.6s ease; }
.pd-image:hover img { transform: scale(1.08); }
.pd-info { flex: 1; min-width: 400px; }
.pd-brand { color: var(--gold); font-size: 1.4rem; letter-spacing: 3px; margin-bottom: 1rem; text-transform: uppercase; font-weight: 800;}
.pd-title { font-size: 3.5rem; margin-bottom: 1.5rem; line-height: 1.2; }
.pd-price { font-size: 2.8rem; color: var(--gold); margin-bottom: 2.5rem; font-weight: 800; text-shadow: 0 2px 10px rgba(212,175,55,0.2);}
.pd-desc { color: var(--text-muted); margin-bottom: 3.5rem; font-size: 1.3rem; line-height: 2.2; }
.pd-actions { display: flex; gap: 1.5rem; }
.qty-input { background: rgba(255,255,255,0.05); border: 1px solid var(--border-color); color: var(--white); width: 120px; text-align: center; border-radius: 6px; font-size: 1.6rem; font-weight: bold;}
.qty-input:focus { border-color: var(--gold); box-shadow: 0 0 15px rgba(212,175,55,0.2);}
.guarantee-list { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border-color); }
.guarantee-list p { color: var(--text-muted); font-size: 1.2rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 20px; }
.guarantee-list i { color: var(--gold); font-size: 1.8rem; width: 35px; text-align: center; }

/* ==========================================================================
   السلة (Cart Sidebar)
   ========================================================================== */
.cart-sidebar {
    position: fixed; top: 0; right: -600px; width: 550px; max-width: 100%; height: 100vh;
    background: rgba(10,10,10,0.98); z-index: 2000; transition: right 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex; flex-direction: column; border-left: 1px solid var(--gold); backdrop-filter: blur(25px);
}
.cart-sidebar.open { right: 0; box-shadow: -15px 0 60px rgba(0,0,0,0.9); }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 2.5rem; border-bottom: 1px solid var(--border-color); background: rgba(0,0,0,0.5);}
.cart-header h3 { color: var(--gold); font-size: 1.8rem; font-weight: 800;}
.close-cart { cursor: pointer; font-size: 2rem; color: var(--text-muted); transition: 0.3s; }
.close-cart:hover { color: var(--white); transform: rotate(90deg) scale(1.2); }
.cart-items { flex: 1; overflow-y: auto; padding: 2.5rem; display: flex; flex-direction: column; gap: 1.8rem; }
.cart-item { display: flex; gap: 1.5rem; background: rgba(255,255,255,0.03); padding: 18px; border-radius: 12px; border: 1px solid var(--border-color); position: relative;}
.cart-item img { width: 100px; height: 100px; object-fit: cover; border-radius: 8px; background: #fff;}
.cart-item-info { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.cart-item-title { font-size: 1.2rem; color: var(--white); font-weight: 700; line-height: 1.4;}
.cart-item-price { color: var(--gold); font-weight: 800; font-size: 1.3rem; margin-top: 10px;}

/* أزرار التحكم بالكمية في السلة */
.cart-qty-controls { display: flex; align-items: center; gap: 15px; margin-top: 10px; background: var(--dark-bg); padding: 5px 10px; border-radius: 30px; width: fit-content; border: 1px solid var(--border-color);}
.cart-qty-btn { background: transparent; color: var(--white); font-size: 1.2rem; cursor: pointer; width: 25px; height: 25px; display: flex; justify-content: center; align-items: center; transition: 0.3s;}
.cart-qty-btn:hover { color: var(--gold); }
.cart-qty-val { font-size: 1.1rem; font-weight: bold; width: 20px; text-align: center;}

.remove-item { position: absolute; top: 15px; left: 15px; color: #e74c3c; cursor: pointer; font-size: 1.2rem; transition: 0.3s; background: rgba(231, 76, 60, 0.1); width: 35px; height: 35px; display: flex; justify-content: center; align-items: center; border-radius: 50%;}
.remove-item:hover { background: #e74c3c; color: white; transform: scale(1.1); }
.cart-footer { padding: 2.5rem; border-top: 1px solid var(--border-color); background: rgba(0,0,0,0.8); }
.cart-total { display: flex; justify-content: space-between; font-size: 1.8rem; font-weight: 800; margin-bottom: 2rem; }
.overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 1500; opacity: 0; visibility: hidden; transition: 0.4s; backdrop-filter: blur(8px); }
.overlay.active { opacity: 1; visibility: visible; }

/* نظام الإشعارات (Toasts) */
#toast-container { position: fixed; bottom: 30px; left: 30px; z-index: 9999; display: flex; flex-direction: column; gap: 15px; }
.toast {
    background: rgba(17,17,17,0.98); border-right: 5px solid var(--gold); color: white;
    padding: 20px 30px; border-radius: 10px; box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    display: flex; align-items: center; gap: 18px; font-size: 1.2rem; font-weight: 500;
    animation: slideInLeft 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards, fadeOut 0.5s 3.5s forwards; backdrop-filter: blur(10px);
}
.toast i { color: var(--gold); font-size: 1.8rem; }
@keyframes slideInLeft { from { transform: translateX(-120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(-30px); visibility: hidden; } }

/* ==========================================================================
   التذييل (Footer)
   ========================================================================== */
footer { background: #020202; padding: 7rem 6% 2rem; border-top: 1px solid var(--border-color); position: relative; overflow: hidden;}
footer::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(212,175,55,0.03) 0%, transparent 60%); z-index: 0; pointer-events: none;}
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 4rem; margin-bottom: 5rem; position: relative; z-index: 1;}
.footer-brand h3 { font-size: 3rem; margin-bottom: 1.5rem; letter-spacing: 2px; font-weight: 800;}
.footer-brand span { color: var(--gold); }
.footer-brand p { color: var(--text-muted); line-height: 2; font-size: 1.2rem; }
.footer-links h4, .footer-social h4 { color: var(--white); font-size: 1.6rem; margin-bottom: 2.5rem; position: relative; padding-bottom: 15px; font-weight: 700;}
.footer-links h4::after, .footer-social h4::after { content: ''; position: absolute; bottom: 0; right: 0; width: 50px; height: 3px; background: var(--gold); transition: 0.4s; border-radius: 2px;}
.footer-links:hover h4::after { width: 80px; }
.footer-links ul li { margin-bottom: 1.5rem; }
.footer-links ul li a { color: var(--text-muted); font-size: 1.15rem; transition: 0.3s; display: inline-block; }
.footer-links ul li a:hover { color: var(--gold); transform: translateX(-10px); }
.social-icons { display: flex; gap: 1.5rem; }
.social-icons a { display: flex; justify-content: center; align-items: center; width: 55px; height: 55px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-color); border-radius: 50%; font-size: 1.5rem; transition: 0.4s; }
.social-icons a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: translateY(-8px) rotate(360deg); box-shadow: 0 10px 25px rgba(212,175,55,0.5); }
.footer-bottom { text-align: center; color: var(--text-muted); padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.05); font-size: 1.15rem; position: relative; z-index: 1;}
.dev-name { color: var(--gold); font-weight: 800; letter-spacing: 1px; transition: 0.3s; display: inline-block; margin-top: 10px;}
.dev-name:hover { text-shadow: 0 0 15px rgba(212,175,55,0.7); transform: scale(1.05);}

/* ==========================================================================
   التجاوب (Responsive)
   ========================================================================== */
@media (max-width: 991px) {
    .hero-content h1 { font-size: 4.5rem; }
    .product-details-container { flex-direction: column; gap: 4rem; }
    .shop-controls { flex-direction: column; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 3.5rem; }
    .cart-sidebar { width: 100%; right: -100%; border-left: none; }
    .pd-title { font-size: 2.8rem; }
    .pd-price { font-size: 2.2rem; }
    .section-title { font-size: 2.5rem; }
}
