/* =========================================================
   ORVELA PREMIUM V4
   PART 1 — Brand Variables
   ========================================================= */

/*==============================
  Brand Colors
==============================*/

:root{

    --or-black:#111111;
    --or-gold:#B89345;
    --or-gold-dark:#9E7835;

    --or-white:#FFFFFF;
    --or-bg:#FCFAF7;

    --or-text:#222222;
    --or-text-light:#666666;

    --or-border:#E9E2D6;

    --or-radius:22px;

    --or-shadow:
        0 12px 30px rgba(0,0,0,.06);

    --or-shadow-hover:
        0 20px 45px rgba(0,0,0,.10);

    --or-speed:.30s ease;

}

/*==============================
  Global
==============================*/

html{
    scroll-behavior:smooth;
}

body{

    background:var(--or-bg);

    color:var(--or-text);

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

    text-rendering:optimizeLegibility;

}

img{

    display:block;

    max-width:100%;

}

a{

    color:inherit;

    text-decoration:none;

    transition:var(--or-speed);

}

button,
input,
textarea,
select{

    font:inherit;

}

*{

    box-sizing:border-box;

}
/* =========================================================
   ORVELA PREMIUM V4
   PART 2 — Header & Navigation
   ========================================================= */

/*==============================
  Header
==============================*/

.store-header,
header{

    position:sticky;
    top:0;
    z-index:999;

    background:rgba(255,255,255,.94)!important;

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(184,147,69,.12);

    transition:var(--or-speed);

}

.store-header:hover,
header:hover{

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

/*==============================
  Logo
==============================*/

.store-header img,
.navbar-brand img{

    transition:var(--or-speed);

}

.store-header img:hover,
.navbar-brand img:hover{

    transform:scale(1.03);

}

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

.store-header a,
header nav a{

    position:relative;

    font-weight:600;

    color:var(--or-black);

    transition:var(--or-speed);

}

.store-header a:hover,
header nav a:hover{

    color:var(--or-gold)!important;

}

/* الخط الذهبي */

.store-header a::after,
header nav a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;

    height:2px;

    background:var(--or-gold);

    border-radius:20px;

    transition:var(--or-speed);

}

.store-header a:hover::after,
header nav a:hover::after{

    width:100%;

}

/*==============================
  Icons
==============================*/

.store-header svg,
header svg{

    transition:var(--or-speed);

}

.store-header a:hover svg,
header a:hover svg{

    color:var(--or-gold);

}
/* =========================================================
   ORVELA PREMIUM V4
   PART 3 — Buttons
   ========================================================= */

/*==============================
  Base Buttons
==============================*/

.s-button,
button,
.btn{

    border-radius:16px!important;

    font-weight:700;

    transition:var(--or-speed);

    box-shadow:none;

}

/*==============================
  Primary Buttons
==============================*/

.s-button-primary,
button[type="submit"]{

    background:var(--or-black)!important;

    color:#fff!important;

    border:1px solid var(--or-black)!important;

}

.s-button-primary:hover,
button[type="submit"]:hover{

    background:var(--or-gold)!important;

    color:var(--or-black)!important;

    border-color:var(--or-gold)!important;

    transform:translateY(-2px);

}

/*==============================
  Outline Buttons
==============================*/

.s-button-outline,
.s-button-secondary{

    background:#fff!important;

    color:var(--or-black)!important;

    border:1px solid var(--or-border)!important;

}

.s-button-outline:hover,
.s-button-secondary:hover{

    background:var(--or-black)!important;

    color:var(--or-gold)!important;

    border-color:var(--or-gold)!important;

}

/*==============================
  Add To Cart
==============================*/

salla-add-product-button .s-button,
.product-form .s-button{

    background:#fff!important;

    color:var(--or-black)!important;

    border:1px solid var(--or-border)!important;

}

salla-add-product-button .s-button:hover,
.product-form .s-button:hover{

    background:var(--or-black)!important;

    color:var(--or-gold)!important;

    border-color:var(--or-gold)!important;

}

/*==============================
  Icons
==============================*/

button svg,
.s-button svg{

    transition:var(--or-speed);

}

button:hover svg,
.s-button:hover svg{

    color:var(--or-gold)!important;

}

/*==============================
  Remove Default Effects
==============================*/

.s-button::before,
.s-button::after,
button::before,
button::after{

    display:none!important;

}
/* =========================================================
   ORVELA PREMIUM V4
   PART 4 — Product Cards
   ========================================================= */

/*==============================
  Product Card
==============================*/

.s-product-card-entry,
.s-product-card-horizontal{

    background:var(--or-white);

    border:1px solid var(--or-border);

    border-radius:var(--or-radius);

    overflow:hidden;

    box-shadow:var(--or-shadow);

    transition:var(--or-speed);

}

/*==============================
  Hover
==============================*/

.s-product-card-entry:hover,
.s-product-card-horizontal:hover{

    transform:translateY(-4px);

    border-color:rgba(184,147,69,.45);

    box-shadow:var(--or-shadow-hover);

}

/*==============================
  Product Image
==============================*/

.s-product-card-image{

    overflow:hidden;

    background:#fff;

}

.s-product-card-image img{

    transition:.35s ease;

}

.s-product-card-entry:hover .s-product-card-image img,
.s-product-card-horizontal:hover .s-product-card-image img{

    transform:scale(1.02);

}

/*==============================
  Product Title
==============================*/

.s-product-card-content-title{

    font-weight:700;

    line-height:1.6;

}

.s-product-card-content-title a{

    color:var(--or-black);

    transition:var(--or-speed);

}

.s-product-card-entry:hover .s-product-card-content-title a,
.s-product-card-horizontal:hover .s-product-card-content-title a{

    color:var(--or-gold);

}

/*==============================
  Product Price
==============================*/

.s-product-card-price{

    color:var(--or-black)!important;

    font-weight:800;

    transition:var(--or-speed);

}

.s-product-card-entry:hover .s-product-card-price,
.s-product-card-horizontal:hover .s-product-card-price{

    color:var(--or-gold)!important;

}

/*==============================
  Add To Cart
==============================*/

.s-product-card-entry .s-button,
.s-product-card-horizontal .s-button{

    background:#fff!important;

    color:var(--or-black)!important;

    border:1px solid var(--or-border)!important;

    border-radius:14px!important;

    transition:var(--or-speed);

}

.s-product-card-entry .s-button svg,
.s-product-card-horizontal .s-button svg{

    transition:var(--or-speed);

}

.s-product-card-entry:hover .s-button,
.s-product-card-horizontal:hover .s-button{

    background:var(--or-black)!important;

    color:var(--or-gold)!important;

    border-color:var(--or-gold)!important;

}

.s-product-card-entry:hover .s-button svg,
.s-product-card-horizontal:hover .s-button svg{

    color:var(--or-gold)!important;

}

/*==============================
  Wishlist
==============================*/

.s-product-card-wishlist-btn{

    background:#fff;

    border:1px solid var(--or-border);

    border-radius:50%;

    transition:var(--or-speed);

}

.s-product-card-wishlist-btn:hover{

    border-color:var(--or-gold);

    background:#FFF9EC;

}

.s-product-card-wishlist-btn:hover svg{

    color:var(--or-gold);

}

/*==============================
  Badges
==============================*/

.badge,
.sale-badge,
.s-product-status,
.s-product-discount{

    border-radius:999px;

    font-weight:700;

}
/* =========================================================
   ORVELA PREMIUM V4
   PART 5 — Footer + WhatsApp
   ========================================================= */

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

footer,
.store-footer{

    background:#fff;

    border-top:1px solid var(--or-border);

}

/* جميع عناصر الفوتر */

footer *,
.store-footer *{

    transition:var(--or-speed);

}

/* روابط الفوتر */

footer a,
.store-footer a{

    color:var(--or-text)!important;

    text-decoration:none;

    position:relative;

}

/* اللون الذهبي */

footer a:hover,
.store-footer a:hover{

    color:var(--or-gold)!important;

}

/* إذا كانت الروابط ليست <a> */

footer li:hover,
footer span:hover,
footer p:hover,
.store-footer li:hover,
.store-footer span:hover,
.store-footer p:hover{

    color:var(--or-gold)!important;

}

/* الخط الذهبي */

footer a::after,
.store-footer a::after{

    content:"";

    position:absolute;

    right:0;

    bottom:-5px;

    width:0;

    height:2px;

    border-radius:30px;

    background:var(--or-gold);

    transition:var(--or-speed);

}

footer a:hover::after,
.store-footer a:hover::after{

    width:100%;

}

/* الأيقونات */

footer svg,
footer i,
.store-footer svg,
.store-footer i{

    transition:var(--or-speed);

}

footer a:hover svg,
footer a:hover i,
.store-footer a:hover svg,
.store-footer a:hover i{

    color:var(--or-gold)!important;

}

/* رفع أيقونة الواتساب */
.wa-s-n {
    bottom: 70px !important;
}
.wa-s-n {
    background: #111 !important;
    border: 1px solid #B89345 !important;
    border-radius: 50% !important;
    overflow: hidden;
}

.wa-s-n img {
    width: 26px !important;
    height: 26px !important;
    filter: brightness(0) saturate(100%) invert(74%) sepia(34%) saturate(530%) hue-rotate(6deg) brightness(96%) contrast(88%) !important;
}
/* =========================================================
   ORVELA PREMIUM V4.1
   Welcome Popup
   CSS
   ========================================================= */

/* الخلفية الضبابية */

.orvela-popup-overlay{

    position:fixed;

    inset:0;

    background:rgba(17,17,17,.28);

    backdrop-filter:blur(6px);

    -webkit-backdrop-filter:blur(6px);

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    visibility:hidden;

    transition:.35s ease;

    z-index:999999;

}

/* عند الفتح */

.orvela-popup-overlay.show{

    opacity:1;

    visibility:visible;

}

/* البطاقة */

.orvela-popup{

    width:min(92%,430px);

    background:#fff;

    border-radius:24px;

    border:1px solid #E9E2D6;

    padding:36px 28px;

    position:relative;

    text-align:center;

    box-shadow:0 30px 80px rgba(0,0,0,.15);

    transform:translateY(30px) scale(.95);

    transition:.35s ease;

}

.orvela-popup-overlay.show .orvela-popup{

    transform:translateY(0) scale(1);

}

/* زر الإغلاق */

.orvela-close{

    position:absolute;

    top:18px;

    left:18px;

    width:38px;

    height:38px;

    border-radius:50%;

    border:none;

    background:#F7F5F2;

    color:#555;

    cursor:pointer;

    transition:.25s ease;

}

.orvela-close:hover{

    background:#111;

    color:#B89345;

}

/* الشعار */

.orvela-logo{

    font-size:15px;

    letter-spacing:5px;

    font-weight:700;

    color:#B89345;

    margin-bottom:14px;

}

/* العنوان */

.orvela-title{

    font-size:28px;

    font-weight:800;

    color:#111;

    margin-bottom:14px;

}

/* الخط */

.orvela-line{

    width:70px;

    height:2px;

    margin:18px auto;

    border-radius:20px;

    background:#B89345;

}

/* الوصف */

.orvela-desc{

    font-size:16px;

    line-height:2;

    color:#555;

}

/* الزر */

.orvela-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin-top:30px;

    width:100%;

    height:52px;

    border-radius:16px;

    border:1px solid #E9E2D6;

    background:#fff;

    color:#111;

    font-weight:700;

    cursor:pointer;

    transition:.30s ease;

}

.orvela-btn:hover{

    background:#111;

    border-color:#B89345;

    color:#B89345;

}

/* Responsive */

@media(max-width:640px){

.orvela-popup{

    padding:30px 22px;

}

.orvela-title{

    font-size:24px;

}

.orvela-desc{

    font-size:15px;

}

.orvela-btn{

    height:48px;

}

}