/* ==== Custom fonts from PDF ==== */
@font-face {
    font-family: 'GirlyRegular';
    src: url('../fonts/GirlyRegular.woff2') format('woff2'),
         url('../fonts/GirlyRegular.woff') format('woff'),
         url('../fonts/GirlyRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html, body {
  overflow-x: hidden;
}
/*** Common CSS Start ***/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
    font-weight: 200;
    font-family: 'Montserrat', sans-serif;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
}

.display-4,
.display-5,
.display-6 {
    font-weight: 600;
}

.wow,
.animated {
    animation-duration: 2s !important;
}
/*** Common CSS End ***/

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    border: 0;
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.btn-border-radius {
    border-radius: 25% 10%;
}

.img-border-radius {
    border-radius: 50% 20% / 10% 40%;
}

.title-border-radius {
    border-radius: 10% 30%;
}
/*** Button End ***/

/*** Topbar Start ***/
.topbar .top-info {
    font-size: medium;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

.topbar .top-link a:hover {
    background: var(--bs-secondary) !important;
}

.topbar .top-link a:hover i {
    color: var(--bs-primary) !important;
}
/*** Topbar End ***/

.text-left {
    padding-left: 30px;
}



/* ===== HERO IMAGE FULL-WIDTH ===== */
.hero-header,
.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 180% !important;
    height: 320px !important;
    padding: 0 !important;
    margin: 0 auto;
    max-width: 1600px;
    display: block;
}
/*** Navbar Start ***/
.navbar {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar .navbar-nav .nav-link {
    padding: 10px 12px;
    font-size: 16px;
    font-weight: 600;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

/* ✅ مهم: نخلي ما في شي يقص الـ dropdown */
.lina-header,
.header-menu,
.header-menu .container,
.header-menu .navbar-collapse {
    overflow: visible !important;
}

/* ✅ نخلي dropdown scroll container على الديسكتوب */
@media (min-width: 992px) {

    .navbar .nav-item.dropdown {
        position: relative;
    }

    /* Bootstrap/Popper بيضيف data-bs-popper + inline inset/transform
       هون منفرض تموضع ثابت تحت اللينك + منلغي translate تبع popper */
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;

        /* ✅ forcing position so it doesn't fly خارج الصفحة */
        position: absolute !important;
        left: 0 !important;
        right: auto !important;
        top: 100% !important;
        inset: auto auto auto auto; /* reset */
        margin-top: 0.25rem;

        font-weight: 400;
        font-family: 'Fredoka', sans-serif;

        /* ✅ keep your animation but force it (important beats inline) */
        transform: rotateX(-75deg) !important;
        transform-origin: 0% 0%;
        transition: .5s;

        border: 0;
        z-index: 9999;

        /* ✅ scroll inside dropdown */
        max-height: calc(100vh - 220px) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        pointer-events: none; /* مخفي = ما يلقط */
        will-change: transform;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg) !important;
        visibility: visible;
        opacity: 1;

        background: #ff6ba5 !important;
        border-radius: 10px !important;
        color: #fff;

        pointer-events: auto; /* مفتوح = يلقط سكرول/كليك */
    }
}

.dropdown .dropdown-menu a {
    background: turqoise;
    color: #fff;
}

.dropdown .dropdown-menu a:hover {
    background: #74C4BA;
    color: #fff;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);
}
/*** Navbar End ***/
@media (max-width: 991.98px) {

  /* خلي جسم السايد منيو flex مظبوط ليقبل scroll area */
  .mobile-menu-container .container {
    height: 100%;
    min-height: 0; /* مهم جداً مع flex */
  }

  /* ✅ خلي اللينكات (UL) هي منطقة السكرول */
  .mobile-menu-container .navbar-nav {
    flex: 1 1 auto;
    min-height: 0;                 /* مهم جداً */
    overflow-y: auto;              /* هون السكرول */
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;  /* ما يكمّل السكرول عالصفحة */
    padding-bottom: 12px;
  }

  /* خلي children ما تعمل مشاكل overflow */
  .mobile-parent .mobile-children {
    overflow: visible;
  }

  /* ✅ قفل سكرول الصفحة ورا (strong lock للموبايل) */
  body.menu-open {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .hero-header,
  .page-header {
    height: 120px !important;
    max-width: 100% !important;
    background-size: cover; /* متل قبل على الموبايل */
  }
}

/* ===== Colors for Lina header ===== */
:root {
    --lina-teal: #5ec9cc;
    --lina-pink: #ff6ba5;
    --lina-gray-bg: #fff;
    --lina-text-dark: #555555;
}

/* خلفية عامة رمادية */
body {
    font-family: 'BaskOldFace', 'Times New Roman', serif;
    background: var(--lina-gray-bg);
}

/* الهيدر كله داخل الصفحة */
.lina-header {
    background: #ffffff;
}

/* ===== Personalized strip – pure CSS ticker ===== */
.personalized-strip {
    background: var(--lina-teal, #5ec9cc);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

/* إطار التيكر */
.ticker {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* الشريط اللي عم يتحرّك */
.ticker-track {
    display: inline-flex;
    white-space: nowrap;
    animation: ticker-scroll 30s linear infinite;
}

/* أيتِم واحد داخل الشريط */
.ticker-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    color: #ffffff;
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 18px;
    letter-spacing: 0.12em;
    text-transform: capitalize;
}

.ticker-item2 {
    display: inline-flex;
    align-items: right;
    justify-content: left;
    padding: 0 140px;
    color: #ffffff;
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: capitalize;
}

.ticker-item i {
    color: #ff6ba5;
    font-size: 18px;
}

/* حركة مستمرّة لليسار */
@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* موبايل: شوي أصغر */
@media (max-width: 767.98px) {
    .ticker-item {
        padding: 0 24px;
        font-size: 16px;
        letter-spacing: 0.08em;
    }
}

/* Mobile menu button in top right corner - inside the pink strip */
.mobile-menu-btn {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 24px;
    color: #fff;
    z-index: 1002;
    padding: 5px 10px;
    cursor: pointer;
    display: none;
}

/* Mobile menu styles */
@media (max-width: 991.98px) {
    .mobile-menu-btn {
        display: block;
    }

    /* Hide the mobile menu button when menu is open */
    body.menu-open .mobile-menu-btn {
        display: none;
    }

    /* Hide the default Bootstrap navbar toggler */
    .header-menu .navbar-toggler {
        display: none !important;
    }

    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    body.menu-open .mobile-menu-overlay {
        display: block;
        opacity: 1;
    }

    /* Mobile menu container */
    .mobile-menu-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #ff4081; /* Your pink color */
        z-index: 1000;
        padding: 70px 0 20px 0;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-container.show {
        transform: translateY(0);
    }

    /* Mobile menu items */
    .mobile-menu-container .navbar-nav {
        flex-direction: column;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-container .nav-item {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-container .nav-item:last-child {
        border-bottom: none;
    }

    .mobile-menu-container .nav-link {
        color: white;
        font-size: 18px;
        padding: 10px 20px;
        display: block;
    }

    .mobile-menu-container .nav-link:hover,
    .mobile-menu-container .nav-link.active {
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
    }

    /* Close button in mobile menu */
    .mobile-menu-close {
        position: absolute;
        top: 15px;
        right: 20px;
        background: transparent;
        border: none;
        color: white;
        font-size: 28px;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Make sure mobile menu is above everything */
    .mobile-menu-container {
        z-index: 1001;
    }

    .mobile-menu-overlay {
        z-index: 1000;
    }
}

/* Desktop styles */
@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none;
    }

    .mobile-menu-container,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* البار الأبيض (search + logo + icons) */
.header-main {
    background: #ffffff;
    padding: 18px 0;
    border-bottom: 1px solid #e7e7e7;
}

/* اللوجو */
.header-logo img {
    max-height: 80px;
}

/* Search style مثل التصميم */
.header-search {
    border-radius: 999px;
    background: #f8f8f8;
    border: 1px solid #dedede;
    padding: 4px 14px;
}

.header-search-icon {
    font-size: 18px;
    color: #a0a0a0;
    margin-right: 8px;
}

.header-search-input {
    border: 0;
    background: transparent;
    box-shadow: none;
    font-size: 15px;
    padding-left: 0;
}

.header-search-input:focus {
    outline: none;
    box-shadow: none;
}

.logo-text,
.header-logo-text {
    font-family: 'GirlyRegular', 'Comic Sans MS', cursive;
    font-size: 32px;
}

/* Icons يمين */
.header-icons {
    gap: 18px;
}

/* (Merged) header-icon-link (was duplicated) */
.header-icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--bs-primary);
    margin-left: 10px;
    transition: 0.2s;
}

.header-icon-link:hover {
    color: #ff4081; /* الزهري تبعك */
}

.header-icon-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: #ff4081;      /* pink */
    color: #fff;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 0 0 2px #fff; /* white ring حوالَيها */
}

/* المنيو الزهري */
.header-menu {
    background: var(--lina-pink);
    padding: 0;
    border: 0;
}

.header-menu .navbar-nav .nav-link {
    color: #ffffff;
    padding: 10px 28px;
    font-size: 18px;
    font-family: 'BaskOldFace', 'Times New Roman', serif;
    letter-spacing: 0.08em;
    font-weight: 100 !important;
}

.header-menu .navbar-nav .nav-link:hover,
.header-menu .navbar-nav .nav-link.active {
    text-decoration: underline;
    color: #ffffff;
}

/* نلغي تأثير الألوان القديمة للـ navbar */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: inherit;
}

/* موبايل */
@media (max-width: 767.98px) {
    .header-main {
        padding: 14px 0;
    }

    .header-search {
        margin-top: 4px;
    }

    .header-menu .navbar-nav .nav-link {
        padding: 8px 18px;
        text-align: center;
    }
}

/*** Blog Start ***/
.blog .blog-item .blog-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: rgba(77, 101, 249, .7);
    border-radius: 10px 10px 0 0;
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
    opacity: 1;
}

.blog .blog-item .blog-date-comments {
    padding-top: 150px !important;
    margin-top: -125px;
}

.blog .blog-item .blog-img img,
.blog .blog-item .blog-content img,
.blog .blog-item .blog-text-inner a.h4 {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-content img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-text-inner a.h4 {
    color: var(--bs-primary);
}

.blog-foot {
    margin-top: -30px;
    line-height: 0;
    width: 100%;
}

/* الصورة نفسها */
.blog-foot img {
    display: block;
    width: 100%;
    height: auto;
}
/*** Blog End ***/

/* ===== Footer (Lina style) ===== */
.footer {
    position: relative;
    padding: 30px 0 15px 0;
    background: #ff6ba5;
    color: #ffffff;
    margin-bottom: 2px;
}

.bg-footer {
    color: #ff6ba5;
}

/* كل ويدجت */
.footer .footer-widget {
    position: relative;
    width: 100%;
    margin-bottom: 5px;
}

/* عناوين الأعمدة: Get in touch / Follow us / Location / Purchase Info */
.footer .footer-widget h2 {
    font-family: 'Allura', cursive;
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    white-space: nowrap;
}

/* لستة الروابط / المعلومات */
.footer .footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer .footer-widget ul li {
    margin-bottom: 10px;
}

.footer .footer-widget ul li:last-child {
    margin-bottom: 0;
}

/* النص داخل الروابط – سيريف أبيض مثل الصورة */
.footer .footer-widget ul li a {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 17px;
    color: #ffffff;
    white-space: nowrap;
    display: block;
    line-height: 24px;
    text-decoration: none;
    transition: opacity .3s;
}

/* السهم الصغير قبل كل link */
.footer .footer-widget ul li a::before {
    content: '▸';
    display: inline-block;
    margin-right: 6px;
    font-size: 14px;
}

/* hover خفيف بس */
.footer .footer-widget ul li a:hover {
    opacity: 0.8;
}

/* معلومات التواصل (Tripoli, email, Whatsapp...) */
.footer .contact-info p {
    margin-bottom: 10px;
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 17px;
    color: #ffffff;
}

.footer .contact-info p i {
    margin-right: 8px;
    font-size: 18px;
}

/* سوشال ميديا بالفوتر (إذا عندك أيقونات) */
.footer .social {
    position: relative;
    width: 100%;
}

.footer .social a {
    display: inline-block;
    margin: 6px 8px 0 0;
    font-size: 18px;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 4px;
    width: 40px;
    height: 40px;
    text-align: center;
    padding-top: 7px;
    transition: background .3s, color .3s, border-color .3s;
}

.footer .social a:hover {
    background: #ffffff;
    color: #ff6ba5;
    border-color: #ffffff;
}

/* الشريط التحتاني (Payment / حقوق) إذا حابب تخليه */
.footer .payment {
    padding-top: 20px;
    padding-bottom: 10px;
    border-top: 1px solid rgba(255,255,255,0.3);
}

@media (min-width: 992px) {
    .footer .payment {
        max-width: 80%;
        margin: 0 auto;
    }
}

.footer .payment-method,
.footer .payment-security {
    overflow: hidden;
    color: #ffffff;
}

.footer .payment-method {
    text-align: left;
}

.footer .payment-security {
    text-align: right;
}

@media (max-width: 768.98px) {
    .footer .payment-method {
        margin-bottom: 15px;
    }

    .footer .payment-method,
    .footer .payment-security {
        text-align: center;
    }
}

.footer .payment-method h2,
.footer .payment-security h2 {
    display: inline-block;
    margin: 0 10px 0 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    font-family: 'Playfair Display', 'Times New Roman', serif;
}

.footer .payment-method img,
.footer .payment-security img {
    height: 25px;
}

/* Old mobile menu styles - keeping for reference but they're overridden by new styles */
@media (max-width: 991.98px) {
    .mobile-menu {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: #ff6ba5;
        z-index: 99;
        padding: 10px 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .mobile-menu .nav-link {
        color: #fff;
        font-size: 16px;
        padding: 10px 20px;
        text-align: center;
    }

    .mobile-menu .nav-link:hover {
        background-color: rgba(255,255,255,0.1);
    }
}

/* ===== Product card hover icons ===== */
.product-card {
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}

.product-img-wrapper img {
    transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.04);
}

/* overlay اللي بيطلع على الصورة */
.product-img-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 10px;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none; /* ما يعرقل الكليك على الصورة وقت يكون مخفي */
}

.product-card:hover .product-img-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* الأزرار الدائرية (wishlist / cart) */
.product-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ff4f8a; /* زهري */
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.product-icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(0,0,0,0.22);
    background: #ff4f8a;
    color: #ffffff;
}

/* زر الكارِت بلون توركواز */
.product-icon-cart {
    background: #25c2c1; /* توركواز */
    color: #ffffff;
}

.product-icon-cart:hover {
    background: #1aa5a3;
    color: #ffffff;
}

/* ====== HERO BANNER (newbanner.png + TEXT + BUTTON) ====== */
.hero-main-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-main-banner-img {
    display: block;
    width: 100%;
    height: 480px !important;          /* ارتفاع طبيعي على الديسكتوب */
    object-fit: cover;
}

.hero-main-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-main-banner-content {
    position: absolute;
    top: 20%;
    right: 30%;
    text-align: left;
    pointer-events: auto;
}

.hero-main-banner-title-top {
    font-family: 'Allura', cursive;
    font-size: 70px;
    color: #ffffff;
    text-shadow: 0 3px 6px rgba(0,0,0,0.15);
    margin-bottom: -20px;
}

.hero-main-banner-title-main {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 80px;
    font-weight: 500;
    color: #ff6ba5;
    text-shadow: 0 3px 6px rgba(0,0,0,0.15);
    margin-bottom: 5px;
}

.hero-main-banner-btn {
    display: inline-block;
    padding: 10px 36px;
    border-radius: 999px;
    background-color: #ff4f8f;
    color: #ffffff;
    border: none;
    font-family: 'Playfair Display', 'Montserrat', sans-serif;
    font-size: 22px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 6px 14px rgba(255,79,143,0.45);
    text-decoration: none;
}

.hero-main-banner-btn:hover {
    background-color: #ff2f78;
    color: #ffffff;
    text-decoration: none;
}

/* تابلِت و موبايل كبار */
@media (max-width: 991.98px) {
    .hero-main-banner-content {
        right: 6%;
    }
    .hero-main-banner-title-top {
        font-size: 40px;
    }
    .hero-main-banner-title-main {
        font-size: 46px;
    }
    .hero-main-banner-btn {
        font-size: 18px;
        padding: 8px 26px;
    }
}

/* موبايل صغير */
@media (max-width: 575.98px) {
    .hero-main-banner {
        /* مش ضروري min-height كبيرة هون، منخلي الصورة تتحكم */
        min-height: 0;
    }
    .hero-main-banner-img {
        width: 100%;
        height: auto;       /* ما بقى 420px ثابتة */
        max-height: 145px;  /* تقدري تعمليها 300 أو 340 حسب ما يعجبِك */
        object-fit: cover;
    }

    .hero-main-banner-content {
        top: 6%;
        right: 42%;
        transform: translateX(50%);
        text-align: center;
    }
    .hero-main-banner-title-top {
        font-size: 36px;
    }
    .hero-main-banner-title-main {
        font-size: 32px;
    }
    .hero-main-banner-btn {
        font-size: 17px;
        padding: 8px 24px;
    }
}


/* ====== TICKER STRIP (مثل قبل) ====== */
.personalized-strip .ticker-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
}

/* ====== ARTS CAROUSEL ====== */
/* عنوان الكاروسيل بالنص على كل الشاشات */
.home-section-heading {
    padding-left: 0;
    text-align: center;
    display: block;
    margin: 0 auto 1.5rem auto;
}

/* نقلّل البادينغ تحت الكاروسيل خصوصاً على الموبايل */
.home-collections {
    padding-bottom: 3rem; /* الديف عليه py-5 = 3rem افتراضياً */
}
@media (max-width: 575.98px) {
    .home-collections {
        padding-bottom: 1.5rem; /* أقل تحت الكاروسيل على الموبايل */
    }
}

.arts-carousel-wrapper {
    padding: 0 40px;
    position: relative;
}

@media (max-width: 575.98px) {
    .arts-carousel-wrapper {
        padding: 0 10px; /* تاخد تقريباً كل الخط على الموبايل */
    }
}

.arts-carousel .item {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

/* مربعات ثابتة نفس المقاس */
.arts-grid .arts-box {
    width: 220px;
    height: 220px;
    border: 3px solid #f9a3b6;
    background-color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

@media (max-width: 575.98px) {
    .arts-grid .arts-box {
        width: 130px;
        height: 130px;
    }
}

.arts-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.arts-item-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.arts-label {
    font-family: 'Allura', 'Playfair Display', cursive;
    font-size: 26px;
    color: #666666;
    letter-spacing: 0.03em;
    margin-top: 12px;
}

@media (max-width: 575.98px) {
    .arts-label {
        font-size: 22px;
    }
}

/* Overlay تبع Click Here */
.arts-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
    border-radius: inherit;
}
.arts-overlay span {
    color: #ffffff;
    font-weight: 400;
    font-size: 26px;
    font-family: 'Allura', 'Playfair Display', cursive;
    letter-spacing: 0.08em;
}
.arts-item-link:hover .arts-overlay {
    opacity: 1;
}

/* Owl nav arrows */
.arts-carousel .owl-nav {
    position: absolute;
    top: 50%;                  /* بالنص على الديسكتوب */
    transform: translateY(-50%);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: auto !important;
}

.arts-carousel .owl-nav button.owl-prev,
.arts-carousel .owl-nav button.owl-next {
    background: #ffffff;
    border-radius: 999px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border: none;
    pointer-events: auto !important;
    cursor: pointer;
}

.arts-carousel .owl-nav i {
    color: #ff6ba5;
}

.arts-carousel .owl-dots {
    margin-top: 18px;
    text-align: center;
}

.arts-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    background: #ffc0d5;
}

.arts-carousel .owl-dot.active span {
    background: #ff6ba5;
}

/* على الموبايل: نخلي الأسهم تحت الكاروسيل مش فوق الصور */
@media (max-width: 575.98px) {
    .arts-carousel .owl-nav {
        position: static;
        transform: none;
        justify-content: center;
        gap: 32px;
        margin-top: 1px;   /* المسافة بين الكروت والأسهم */
    }
}

/* ====== NEWSLETTER (merged) ====== */
.newsletter-section {
    margin-top: 0px;
    padding: 0 0 0;
    background-color: #fed2d7;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 220px;
    display: flex;
    align-items: center;
}

.newsletter-inner {
    width: 100%;
    padding: 30px 15px;
}

.newsletter-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-content {
    text-align: left;
}

.newsletter-title {
    font-family: 'Allura', cursive;
    font-size: 50px;
    color: #ff6ba5;
    margin-bottom: 4px;
}

.newsletter-subtitle {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 20px;
    color: #555555;
    margin-bottom: 18px;
}

.newsletter-form .input-group {
    max-width: 420px;
}

.newsletter-form .form-control {
    border-radius: 999px 0 0 999px;
    border: none;
    padding-left: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.newsletter-form .btn-subscribe {
    border-radius: 0 999px 999px 0;
    background-color: #ff6ba5;
    border: none;
    color: #fff;
    padding: 10px 26px;
    font-family: 'Playfair Display', 'Montserrat', sans-serif;
    font-size: 16px;
}

.newsletter-form .btn-subscribe:hover {
    background-color: #ff4f8f;
}

@media (max-width: 767.98px) {
    .newsletter-section {
        background-position: left center;
        padding: 25px 0 35px;
    }
    .newsletter-content {
        text-align: center;
        margin-top: 10px;
    }
    .newsletter-title {
        font-size: 40px;
    }
    .newsletter-subtitle {
        font-size: 18px;
    }
    .newsletter-form .input-group {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* ====== WHY LINA SECTION (merged) ====== */
.why-lina-section {
    background-color: #fff;
    padding: 50px 0 70px 0;
}

.why-lina-cards {
    margin-bottom: 40px;
}

.why-lina-card-link {
    display: inline-block;
    text-decoration: none;
}

.why-lina-card {
    position: relative;
    display: inline-block;
}

.why-lina-img {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.why-lina-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
}

.why-lina-card-overlay span {
    color: #fff;
    font-family: 'Allura', cursive;
    font-size: 30px;
    letter-spacing: 0.07em;
}

.why-lina-card:hover .why-lina-card-overlay {
    opacity: 1;
}

@media (max-width: 767.98px) {
    .why-lina-img {
        max-width: 180px; /* يكبرو شوي على الموبايل بس يضلو مرتبين */
    }
}

.why-lina-text-title {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 26px;
    color: #ff6ba5;
    margin-bottom: 6px;
}

.why-lina-text-body {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 18px;
    color: #555;
    line-height: 1.5;
}

.why-lina-icon {
    font-size: 32px;
    color: #555;
    margin-bottom: 10px;
}

@media (max-width: 767.98px) {
    .why-lina-text-body {
        font-size: 16px;
    }
}

/* ====== ABOUT ====== */
.about-wrapper {
    background-color: #fff;
    position: relative;
}

/* top banner image */
.about-top-banner {
    position: relative;
    z-index: 1;
}
.about-top-banner img {
    display: block;
    width: 100%;
    height: auto;
}

/* main text area */
.about-content {
    background-color: #ffffff;
    margin-top: 0px;
    position: relative;
    z-index: 2;
}

.about-subtitle {
    font-family: 'Allura', cursive;
    font-size: 56px;
    color: #ff6ba5;
    margin-bottom: 18px;
}

.about-paragraph {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 23px;
    line-height: 1.6;
    color: #777777;
    margin-bottom: 18px;
}

@media (max-width: 767.98px) {
    .about-subtitle {
        font-size: 28px;
    }
    .about-paragraph {
        font-size: 18px;
    }
    .about-content {
        margin-top: 10px;
    }
}

/* bottom banner image */
.about-bottom-banner img {
    display: block;
    width: 100%;
    height: auto;
}
