/* ========== إعدادات عامة ========== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



:root {

    --bg: #121212;

    --card: #1a1a1a;

    --gold: #e5b84b;

    --gold-light: #ffd066;

    --border: #2a2a2a;

    --text: #fff;

    --text-muted: #aaa;

    --danger: #c0392b;

    --success: #27ae60;

    --header-bg: #161616;

    --modal-bg: #161616;

    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



body {

    font-family: 'Cairo', sans-serif;

    background-color: var(--bg);

    color: var(--text);

    overflow-x: hidden;

    scroll-behavior: smooth;

    -webkit-tap-highlight-color: transparent;

    line-height: 1.6;

}



a {

    text-decoration: none;

    color: inherit;

    transition: color var(--transition);

}



ul {

    list-style: none;

}



img {

    max-width: 100%;

    height: auto;

    display: block;

}



/* ========== الهيدر ========== */

.main-header {

    background-color: var(--header-bg);

    border-bottom: 1px solid var(--border);

    padding: 12px 5%;

    position: sticky;

    top: 0;

    z-index: 200;

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);

}



.header-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    max-width: 1300px;

    margin: 0 auto;

    gap: 20px;

    flex-wrap: wrap;

}



.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

}



.logo-title {

    color: var(--gold);

    font-size: 26px;

    font-weight: 900;

    letter-spacing: -1px;

}



.logo-icon {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    object-fit: contain;

    border: 2px solid var(--gold);

    background-color: #000;

    transition: transform 0.4s ease;

}



.logo:hover .logo-icon {

    transform: rotate(15deg) scale(1.05);

}



.nav-links {

    display: flex;

    gap: 20px;

    align-items: center;

    flex-wrap: wrap;

}



.nav-links a {

    font-size: 15px;

    color: #ccc;

    padding: 6px 4px;

    position: relative;

    font-weight: 600;

    white-space: nowrap;

}



.nav-links a::after {

    content: '';

    position: absolute;

    bottom: 0;

    right: 0;

    width: 0;

    height: 2px;

    background: var(--gold);

    transition: width var(--transition);

}



.nav-links a:hover::after,

.nav-links a.active::after {

    width: 100%;

    left: 0;

}



.nav-links a:hover,

.nav-links a.active {

    color: var(--gold);

    font-weight: 700;

}



.header-icons {

    display: flex;

    gap: 20px;

    align-items: center;

    flex-shrink: 0;

}



.icon-link {

    color: var(--gold);

    font-size: 18px;

    position: relative;

    transition: transform 0.2s, color var(--transition);

    display: flex;

    align-items: center;

    justify-content: center;

    width: 36px;

    height: 36px;

    border-radius: 50%;

    background: rgba(229, 184, 75, 0.05);

}



.icon-link:hover {

    transform: scale(1.1);

    background: rgba(229, 184, 75, 0.15);

    color: #fff;

}



.cart-badge {

    background-color: var(--gold);

    color: #000;

    font-size: 10px;

    font-weight: 900;

    width: 20px;

    height: 20px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    position: absolute;

    top: -6px;

    right: -8px;

    pointer-events: none;

    animation: pulse-badge 2s infinite;

}



@keyframes pulse-badge {



    0%,

    100% {

        transform: scale(1);

    }



    50% {

        transform: scale(1.15);

    }

}



.menu-toggle {

    display: none;

    background: none;

    border: none;

    color: var(--gold);

    font-size: 26px;

    cursor: pointer;

    padding: 6px;

}



/* ========== شريط البحث ========== */

.search-wrapper {

    position: relative;

    display: flex;

    align-items: center;

    flex: 1 1 200px;

    max-width: 320px;

    min-width: 180px;

}



.search-input {

    width: 100%;

    padding: 10px 40px 10px 16px;

    border-radius: 30px;

    border: 1px solid var(--border);

    background: #0d0d0d;

    color: #fff;

    font-size: 14px;

    font-family: 'Cairo', sans-serif;

    transition: all var(--transition);

    outline: none;

}



.search-input:focus {

    border-color: var(--gold);

    box-shadow: 0 0 0 3px rgba(229, 184, 75, 0.15);

    background: #111;

}



.search-icon-btn {

    position: absolute;

    left: 12px;

    background: none;

    border: none;

    color: var(--gold);

    font-size: 16px;

    cursor: pointer;

}



.no-results-msg {

    display: none;

    text-align: center;

    padding: 30px;

    color: #999;

    font-size: 16px;

    width: 100%;

    grid-column: 1 / -1;

    background: #111;

    border-radius: 12px;

    border: 1px dashed #333;

}



/* ========== القسم الترحيبي ========== */

.hero-section {

    background: radial-gradient(circle at 30% 50%, #201a0c 0%, #121212 70%);

    padding: 60px 5%;

    border-bottom: 1px solid #222;

}



.hero-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    max-width: 1100px;

    margin: 0 auto;

    gap: 40px;

}



.image-frame {

    width: 300px;

    height: 300px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    box-shadow: 0 0 60px rgba(229, 184, 75, 0.2);

    overflow: hidden;

}



.image-frame img {

    width: 90%;

    height: 90%;

    object-fit: contain;

    animation: float 4s ease-in-out infinite;

}



@keyframes float {



    0%,

    100% {

        transform: translateY(0);

    }



    50% {

        transform: translateY(-12px);

    }

}



.hero-text {

    flex: 1.2;

    text-align: right;

}



.welcome-tag {

    color: var(--gold);

    font-size: 14px;

    font-weight: 600;

    display: block;

    margin-bottom: 5px;

    letter-spacing: 2px;

}



.main-title {

    font-size: 52px;

    font-weight: 900;

    margin-bottom: 5px;

    line-height: 1.1;

    background: linear-gradient(135deg, #fff 0%, #e5b84b 70%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}



.sub-title {

    color: #ccc;

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 15px;

}



.hero-desc {

    color: #999;

    font-size: 15px;

    margin-bottom: 25px;

    max-width: 450px;

}



.btn-gold {

    background-color: var(--gold);

    color: #000;

    padding: 12px 28px;

    border-radius: 30px;

    font-weight: 800;

    font-size: 15px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    transition: all var(--transition);

    border: none;

    cursor: pointer;

    box-shadow: 0 4px 15px rgba(229, 184, 75, 0.25);

}



.btn-gold:hover {

    background-color: var(--gold-light);

    transform: translateY(-2px);

    box-shadow: 0 8px 25px rgba(229, 184, 75, 0.4);

}



/* ========== فئات المنتجات ========== */

.categories-section {

    background-color: #181818;

    padding: 25px 5%;

    border-bottom: 1px solid #242424;

}



.categories-grid {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 12px;

    max-width: 1100px;

    margin: 0 auto;

}



.cat-box {

    background-color: #1f1f1f;

    border: 1px solid #2d2d2d;

    border-radius: 12px;

    padding: 18px 10px;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    cursor: pointer;

    transition: all var(--transition);

    position: relative;

    overflow: hidden;

}



.cat-box::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background: var(--gold);

    transform: scaleX(0);

    transition: transform var(--transition);

}



.cat-box:hover::before {

    transform: scaleX(1);

}



.cat-box:hover {

    border-color: var(--gold);

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);

}



.cat-icon {

    color: var(--gold);

    font-size: 24px;

    transition: transform 0.3s;

}



.cat-box:hover .cat-icon {

    transform: scale(1.2);

}



.cat-box span {

    font-size: 14px;

    font-weight: 600;

    color: #ddd;

}



/* ========== المنتجات ========== */

.products-section {

    padding: 50px 5% 20px;

    max-width: 1300px;

    margin: 0 auto;

}



.section-header {

    text-align: right;

    margin-bottom: 30px;

    border-bottom: 1px solid #222;

    padding-bottom: 12px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

}



.section-title {

    color: var(--gold);

    font-size: 26px;

    font-weight: 800;

    display: inline-flex;

    align-items: center;

    gap: 10px;

}



.stock-filter {

    display: flex;

    gap: 8px;

    align-items: center;

    font-size: 13px;

    color: #aaa;

}



.stock-filter select {

    background: #111;

    color: #fff;

    border: 1px solid #333;

    padding: 6px 12px;

    border-radius: 20px;

    font-family: 'Cairo', sans-serif;

    font-size: 13px;

    cursor: pointer;

    outline: none;

}



.products-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));

    gap: 22px;

}



.product-card {

    background-color: var(--card);

    border: 1px solid var(--border);

    border-radius: 14px;

    padding: 18px;

    text-align: center;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    transition: all var(--transition);

    position: relative;

    overflow: hidden;

    opacity: 0;

    transform: translateY(20px);

    animation: cardFadeIn 0.5s forwards;

}



@keyframes cardFadeIn {

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



.product-card:hover {

    border-color: var(--gold);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);

    transform: translateY(-5px);

}



.product-card.out-of-stock {

    opacity: 0.7;

    pointer-events: none;

    filter: grayscale(20%);

}



.stock-badge {

    padding: 4px 12px;

    border-radius: 20px;

    font-size: 11px;

    font-weight: 700;

    z-index: 5;

}



.badge-available {

    background: rgba(39, 174, 96, 0.15);

    color: #2ecc71;

    border: 1px solid rgba(46, 204, 113, 0.3);

}



.badge-out {

    background: rgba(192, 57, 43, 0.15);

    color: #e74c3c;

    border: 1px solid rgba(231, 76, 60, 0.3);

}



/* ========== وسام العرض الجذاب ========== */
.sale-badge {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 12px;
    box-shadow: 0 0 20px rgba(255, 65, 108, 0.5);
    z-index: 5;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}


.product-img {

    width: 100%;

    height: 180px;

    background-color: #111;

    border-radius: 10px;

    margin-bottom: 14px;

    overflow: hidden;

    display: flex;

    justify-content: center;

    align-items: center;

}



.product-img img {

    width: 75%;

    height: 75%;

    object-fit: contain;

    transition: transform 0.5s ease;

}



.product-card:hover .product-img img {

    transform: scale(1.08);

}



.product-title {

    color: #fff;

    font-size: 16px;

    font-weight: 700;

    margin-bottom: 6px;

}



.size-label {

    font-size: 12px;

    color: #888;

    margin-bottom: 6px;

    display: block;

}



.size-select-wrap {

    margin-bottom: 12px;

}



.size-select {

    width: 100%;

    background-color: #141414;

    color: #fff;

    border: 1px solid #333;

    padding: 8px 12px;

    border-radius: 20px;

    font-size: 13px;

    text-align: center;

    cursor: pointer;

    outline: none;

    font-family: 'Cairo', sans-serif;

    appearance: none;

    -webkit-appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23e5b84b'/%3E%3C/svg%3E");

    background-repeat: no-repeat;

    background-position: left 12px center;

    padding-left: 30px;

}



.size-select:focus {

    border-color: var(--gold);

}



.product-price {

    color: var(--gold);

    font-size: 20px;

    font-weight: 800;

    margin-bottom: 15px;

}



.btn-add-cart {

    background-color: transparent;

    color: var(--gold);

    border: 1.5px solid var(--gold);

    padding: 10px 18px;

    border-radius: 25px;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: all var(--transition);

    width: 100%;

    font-family: 'Cairo', sans-serif;

}



.btn-add-cart:hover {

    background-color: var(--gold);

    color: #000;

    box-shadow: 0 4px 15px rgba(229, 184, 75, 0.3);

}



.btn-add-cart.disabled-btn {

    background-color: #333;

    color: #777;

    border-color: #444;

    cursor: not-allowed;

    pointer-events: none;

}



/* ========== قسم العروض ========== */

.promo-section {

    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1615397349754-cfa2066a298e?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;

    padding: 80px 20px;

    text-align: center;

    margin: 50px 0 20px;

    border-top: 1px solid #2a2a2a;

    border-bottom: 1px solid #2a2a2a;

}



.promo-content h2 {

    color: var(--gold);

    font-size: 34px;

    font-weight: 900;

    margin-bottom: 10px;

}



.promo-content p {

    color: #fff;

    font-size: 18px;

    margin-bottom: 25px;

}



.no-promo-box {

    background: rgba(20, 20, 20, 0.85);

    border: 2px dashed var(--gold);

    padding: 40px 20px;

    border-radius: 16px;

    max-width: 600px;

    margin: 0 auto;

}



.no-promo-box h3 {

    color: var(--gold);

    font-size: 24px;

    margin-bottom: 10px;

}



.no-promo-box p {

    color: #bbb;

    font-size: 15px;

}



/* ========== الفوتر ========== */

.main-footer {

    background-color: #0d0d0d;

    border-top: 1px solid #1f1f1f;

    padding: 50px 5% 30px;

}



.footer-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    max-width: 1100px;

    margin: 0 auto;

    text-align: center;

}



.footer-col h4 {

    color: var(--gold);

    font-size: 16px;

    margin-bottom: 15px;

}



.footer-col ul li {

    margin-bottom: 8px;

}



.footer-col ul li a {

    color: #aaa;

    font-size: 14px;

}



.footer-col ul li a:hover {

    color: var(--gold);

}



.social-icons {

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

}



.social-icons a {

    color: #fff;

    background-color: #1e1e1e;

    width: 40px;

    height: 40px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: all var(--transition);

}



.social-icons a:hover {

    background-color: var(--gold);

    color: #000;

    transform: translateY(-3px);

}



/* تنسيق رابط جروب الواتساب */

.whatsapp-group-link {

    display: flex !important;

    align-items: center;

    gap: 10px;

    background-color: #25D366 !important;

    color: #fff !important;

    padding: 12px 25px;

    border-radius: 30px;

    font-size: 16px;

    font-weight: 700;

    width: auto !important;

    height: auto !important;

    transition: all 0.3s ease;

    text-decoration: none;

}



.whatsapp-group-link:hover {

    background-color: #1ebd5a !important;

    transform: translateY(-3px);

    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);

}



.whatsapp-group-link i {

    font-size: 22px;

}



.footer-logo-col {

    text-align: right;

}



.footer-desc {

    color: #777;

    font-size: 13px;

    line-height: 1.6;

}



/* ========== المودالات ========== */

.modal {

    display: none;

    position: fixed;

    z-index: 1000;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(0, 0, 0, 0.88);

    backdrop-filter: blur(6px);

    justify-content: center;

    align-items: center;

    padding: 15px;

}



.luxury-box {

    background-color: var(--modal-bg);

    border: 1px solid var(--gold);

    border-radius: 16px;

    padding: 28px;

    width: 100%;

    max-width: 520px;

    color: #fff;

    box-shadow: 0 0 40px rgba(229, 184, 75, 0.2);

    max-height: 90vh;

    overflow-y: auto;

}



.modal-title {

    color: var(--gold);

    text-align: center;

    margin-bottom: 20px;

    font-size: 22px;

    border-bottom: 1px solid #2a2a2a;

    padding-bottom: 14px;

}



.preview-details {

    text-align: center;

    margin: 20px 0;

    background: #111;

    padding: 18px;

    border-radius: 12px;

    border: 1px dashed #333;

}



.preview-img {

    width: 130px;

    height: 130px;

    object-fit: contain;

    margin-bottom: 10px;

    border-radius: 8px;

}



.preview-price {

    color: var(--gold);

    font-size: 22px;

    font-weight: bold;

}



.cart-summary {

    background: #111;

    padding: 16px;

    border-radius: 8px;

    margin-bottom: 20px;

    border-right: 3px solid var(--gold);

}



.cart-summary ul {

    max-height: 140px;

    overflow-y: auto;

    margin-bottom: 10px;

}



.cart-summary li {

    font-size: 13px;

    padding: 7px 0;

    border-bottom: 1px solid #222;

    display: flex;

    justify-content: space-between;

}



.total-box {

    font-weight: bold;

    font-size: 16px;

    color: var(--gold);

    border-top: 1px dashed #333;

    padding-top: 10px;

    display: flex;

    justify-content: space-between;

}



.form-group {

    margin-bottom: 16px;

    text-align: right;

}



.form-group label {

    display: block;

    margin-bottom: 6px;

    color: #ddd;

    font-size: 13px;

    font-weight: 600;

}



.form-group input[type="text"],

.form-group input[type="tel"] {

    width: 100%;

    padding: 12px;

    background: #0d0d0d;

    border: 1px solid #333;

    color: #fff;

    border-radius: 8px;

    font-size: 14px;

    font-family: 'Cairo', sans-serif;

}



.form-group input:focus {

    border-color: var(--gold);

    outline: none;

    box-shadow: 0 0 0 3px rgba(229, 184, 75, 0.1);

}



.radio-group {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;

}



.radio-card {

    background: #111;

    padding: 10px 14px;

    border-radius: 8px;

    cursor: pointer;

    border: 1px solid #2a2a2a;

    flex: 1;

    min-width: 120px;

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 13px;

}



.radio-card input[type="radio"] {

    accent-color: var(--gold);

    width: 16px;

    height: 16px;

}



.gold-note {

    color: var(--gold);

    font-size: 11px;

    display: block;

    margin-top: 5px;

}



.info-alert {

    background: rgba(229, 184, 75, 0.08);

    border: 1px solid var(--gold);

    padding: 12px;

    border-radius: 8px;

    font-size: 12px;

    color: #eee;

}



.hidden {

    display: none !important;

}



.modal-buttons-3 {

    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-top: 20px;

}



.btn {

    padding: 12px;

    border: none;

    border-radius: 25px;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: all var(--transition);

    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    font-family: 'Cairo', sans-serif;

}



.btn-gold-solid {

    background-color: var(--gold);

    color: #000;

}



.btn-gold-solid:hover {

    background-color: var(--gold-light);

    box-shadow: 0 6px 20px rgba(229, 184, 75, 0.3);

}



.btn-outline-gold {

    background-color: transparent;

    color: var(--gold);

    border: 1.5px solid var(--gold);

}



.btn-outline-gold:hover {

    background-color: rgba(229, 184, 75, 0.08);

}



.btn-cancel {

    background-color: #4a1010;

    color: #fff;

}



.btn-cancel:hover {

    background-color: #6a1515;

}



/* ========== Toast ========== */

.confirmation-toast {

    position: fixed;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    background: #1a1a1a;

    border: 2px solid #e5b84b;

    color: #fff;

    padding: 18px 30px;

    border-radius: 12px;

    text-align: center;

    font-size: 16px;

    font-weight: 600;

    z-index: 2000;

    box-shadow: 0 10px 30px rgba(229, 184, 75, 0.3);

    animation: slideUp 0.4s ease, fadeOut 0.5s 2.5s forwards;

    white-space: nowrap;

}



@keyframes slideUp {

    from {

        transform: translateX(-50%) translateY(20px);

        opacity: 0;

    }



    to {

        transform: translateX(-50%) translateY(0);

        opacity: 1;

    }

}



@keyframes fadeOut {

    to {

        opacity: 0;

        visibility: hidden;

    }

}



/* ========== الموبايل ========== */

@media (max-width: 1024px) {

    .products-grid {

        grid-template-columns: repeat(3, 1fr);

    }



    .categories-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}



@media (max-width: 768px) {

    .menu-toggle {

        display: block;

    }



    .nav-links {

        display: none;

        flex-direction: column;

        width: 100%;

        background: #1a1a1a;

        padding: 15px;

        border-radius: 12px;

        gap: 10px;

        order: 10;

        border: 1px solid #2a2a2a;

    }



    .nav-links.show {

        display: flex;

    }



    .search-wrapper {

        max-width: 100%;

        order: 5;

        flex: 1 1 100%;

    }



    .hero-container {

        flex-direction: column-reverse;

        text-align: center;

    }



    .hero-text {

        text-align: center;

    }



    .main-title {

        font-size: 38px;

    }



    .image-frame {

        width: 220px;

        height: 220px;

    }



    .products-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    .categories-grid {

        grid-template-columns: repeat(3, 1fr);

    }



    .footer-grid {

        grid-template-columns: 1fr;

        text-align: center;

    }



    .footer-logo-col {

        text-align: center;

    }

}



@media (max-width: 480px) {

    .products-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 10px;

    }



    .product-card {

        padding: 12px;

    }



    .product-img {

        height: 130px;

    }



    .categories-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .cat-box:last-child {

        grid-column: span 2;

    }

    .radio-group {

        flex-direction: column;

    }

}

/* تنسيق توقيع المطور */
.developer-credit {
    text-align: center;
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    /* خط فاصل ذهبي شفاف */
    font-size: 0.9rem;
    color: #888888;
    /* لون رمادي هادئ لكلمة Developed by */
    letter-spacing: 1.5px;
    font-family: 'Arial', sans-serif;
}

.developer-credit span {
    color: #d4af37;
    /* لون ذهبي ملكي لاسماك */
    font-weight: bold;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
    /* توهج ذهبي خفيف */
    transition: all 0.3s ease;
    cursor: default;
}

.developer-credit span:hover {
    color: #fdf5e6;
    /* اللون يفتح ويزيد توهجه عند مرور الماوس */
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
}

/* ========== عرض السعر الأصلي ========== */
.original-price {
    display: block;
    font-size: 0.75em;
    color: #888;
    text-decoration: line-through;
    margin-top: 2px;
}

.original-price.hidden {
    display: none;
}