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

:root {
  --gold: #c4962d;
  --light-gold: #e5d9b6;
  --dark-gold: #a67c00;
  --burgundy: #901a1d;
  --white: #ffffff;
  --off-white: #f9f9f9;
  --gray: #d9d9d9;
}

.gold-frame {
  position: relative;
  background-color: var(--white);
  margin-top: 30px;
}

.title-banner {
  position: absolute;
  top: 0;
  right: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--burgundy);
  color: var(--gold);
  padding: 10px 40px;
  border-radius: 30px;
  font-size: 24px;
  border: 4px solid var(--gold);
  text-align: center;
  z-index: 10;
}

.title-banner h1 {
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
}

.banner-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
}

/* قسم المعلومات */
.info-section {
  position: relative;
  padding: 40px 0 0;
  border-radius: 10px;
  margin: 60px 0 30px;
}
.bottom-pattern img {
 border: 1px solid #bd9039;
}

.info-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-image: url("../../pattern.jpg");
  opacity: 0.05;
  border-radius: 10px;
}


.info-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.info-text {
  text-align: left;
}

.section-title {
  color: var(--burgundy);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-desc {
  color: var(--gold);
  font-size: 20px;
  font-weight: 500;
}

.shop-now {
  text-align: center;
}

.shop-btn {
  display: inline-block;
  background-color: var(--burgundy);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s;
}

.shop-btn:hover {
  background-color: #7a1518;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 40px;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray);
  cursor: pointer;
  transition: background-color 0.3s;
}

.nav-dot.active {
  background-color: var(--gold);
}

@media (max-width: 768px) {
    .products-row {
margin: 0 !important;
}
.products-row
.product-card:first-child {
width: 100%;
max-width: 100%;
}

.products-row .product-card {
width: 40%;
}
  .info-content {
    flex-direction: column;
    gap: 30px;
  }

  .info-text {
    text-align: center;
  }

  .title-banner h1 {
    font-size: 18px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-desc {
    font-size: 18px;
  }
  .card-grid {
grid-template-columns: repeat(2, 1fr) !important;
gap: 24px;
}

.card-title {
font-size: 14px !important;
}

.card {
height: auto !important;
}
.image-container {
height: auto !important;
}
}

@media (max-width: 480px) {
  .title-banner {
    padding: 8px 30px;
  }

  .title-banner h1 {
    font-size: 16px;
  }

  .gold-frame {
    padding: 15px;
    border-width: 6px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-desc {
    font-size: 16px;
  }

  .shop-btn {
    padding: 10px 25px;
    font-size: 16px;
  }
}



.tall-img {
    height: 100%;
    /* عرض الصورة بالطول الكامل */
    object-fit: cover;
    width: 100%;
}
.background-pattern {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/pattern.png');
    background-size: 800px;
    background-repeat: repeat;
    opacity: 0.05;
    z-index: -1;
}

/* ===== قسم الترحيب ===== */
.welcome-section {
    padding: 80px 20px 20px;
    text-align: center;
}

.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
}

.main-title {
    /* font-family: 'Amiri', serif; */
    font-size: 52px;
    font-weight: 700;
    color: #C4962D;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}

.subtitle {
    font-family: 'Lateef', cursive;
    font-size: 24px;
    color: #901A1D;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* ===== قسم الوصف ===== */
.description-section {
    padding: 0 20px 60px;
    text-align: center;
}

.description-container {
    max-width: 900px;
    margin: 0 auto;
}

.description-text {
    font-size: 24px;
    line-height: 1.6;
    color: #C4962D;
    font-weight: 500;
}

/* ===== قسم بطاقات المنتجات ===== */
.products-section {
    padding: 0 20px 80px;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
}

.products-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    min-width:auto !important;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    max-width: 100% !important;
    /* height: 260px; */
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.05);
}

.card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #C4962D;
    color: white;
    padding: 12px 30px;
    border-top-right-radius: 30px;
    font-size: 24px;
    font-weight: 700;
    min-width: 160px;
    text-align: center;
}

/* ===== تجاوب الشاشة ===== */
@media (max-width: 992px) {
    .main-title {
        font-size: 44px;
    }

    .subtitle {
        font-size: 20px;
    }

    .description-text {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding-top: 60px;
    }

    .main-title {
        font-size: 38px;
    }

    .subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .description-text {
        font-size: 20px;
    }

    .products-row {
        gap: 20px;
    }

    .product-card {
        max-width: 320px;
    }

    .card-image {
        /* height: 230px; */
    }

    .card-label {
        font-size: 20px;
        padding: 10px 25px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
    }

    .description-text {
        font-size: 18px;
    }

    .product-card {
        max-width: 100%;
    }

    .card-label {
        font-size: 18px;
        padding: 8px 20px;
    }
}
.image-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.p-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-container {
    text-align: center;
    margin-top: 30px;
}

.col-md-3 {
    height: 100%;
}

.col-md-6 {
    display: flex;
    justify-content: space-between;
}


.tall-img-right,
.tall-img-left {
    height: 130%;
    object-fit: cover;
}

.center-img {
    width: 130%;
     object-fit: cover;
}
.card-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 32px;
justify-items: center;
}

.card {
width: 100%;
height: 400px;
background-color: white;
border-radius: 24px;
overflow: hidden;
position: relative;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-container {
width: 100%;
height: 335px;
position: relative;
}

.image-container img {
width: 100%;
height: 100%;
object-fit: cover;
}

.gradient-overlay {
position: absolute;
bottom: 0;
right: 0;
width: 100%;
height: 132px;
background: linear-gradient(to top, white 0%, rgba(255, 255, 255, 0) 100%);
}

.card-title {
position: absolute;
bottom: 35px;
width: 100%;
text-align: center;
color: black;
font-size: 32px;
font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
.card-grid {
grid-template-columns: repeat(2, 1fr);
}

.card {
width: 100%;
max-width: 334px;
}
}

@media (max-width: 768px) {
.card-grid {
grid-template-columns: 1fr;
gap: 24px;
}
}
.top-border {
width: 100%;
height: 2px;
background-color: #b27b00;
position: absolute;
top: 0;
right: 0;
}

.content {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
position: relative;
padding: 40px 20px;
}

.arabesque-decoration {
position: absolute;
top: 0;
right: 0;
width: 300px;
height: 200px;
background-size: 400px;
background-position: -20px 0;
background-repeat: no-repeat;
z-index: -1;
opacity: 0.5;
}

.text-section {
text-align: center;
margin-top: 60px;
}

.main-title {
font-size: 40px;
font-weight: 700;
color: #b27b00;
margin-bottom: 10px;
}

.english-subtitle {
font-size: 18px;
color: #a02a2a;
margin-bottom: 30px;
}

.book-button {
display: inline-block;
background-color: #c4962d;
color: white;
padding: 10px 30px;
border-radius: 25px;
text-decoration: none;
font-size: 18px;
font-weight: 500;
transition: all 0.3s ease;
}

.book-button:hover {
background-color: #8a2323;
transform: translateY(-2px);
}

.app-section {
margin-top: 120px;
text-align: center;
}

.app-title {
font-size: 30px;
font-weight: 700;
color: #b27b00;
margin-bottom: 30px;
}

.app-buttons {
display: flex;
justify-content: center;
gap: 20px;
}

.app-button {
display: inline-block;
transition: all 0.3s ease;
}

.app-button:hover {
transform: translateY(-2px);
}

.app-button img {
height: 50px;
border-radius: 8px;
}

.bottom-pattern {
width: 100%;
height: 50px;
margin-top: 40px;
overflow: hidden;
}

.pattern-image {
width: 100%;
height: 50px;
object-fit: cover;
}

@media (max-width: 768px) {
.arabesque-decoration {
width: 200px;
height: 150px;
background-size: 300px;
}

.main-title {
font-size: 32px;
}

.english-subtitle {
font-size: 16px;
}

.app-title {
font-size: 24px;
}

.app-buttons {
flex-direction: column;
align-items: center;
}
}
.logo-section {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    width: 300px;
    margin-bottom: 10px;
}

.content-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
}

.story-section {
    flex: 1;
    position: relative;
    padding-right: 40px;
}

.gold-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background-color: #c9a84a;
    border-radius: 3px;
}

.title {
    color: #c9a84a;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: Tajawal
}

.story-text {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.highlight {
    color: #c9a84a;
}

.red-text {
    color: #a83232;
}

@media (max-width: 768px) {
    .content-section {
        flex-direction: column;
    }

    .story-section {
        padding-right: 0;
        padding-left: 20px;
        margin-top: 20px;
    }
}
.footer {
    position: relative;
    width: 100%;
    background-color: white;
    padding: 40px 50px 0;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    order: 3; /* Changed order to move to the right */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c9a84a;
    font-size: 16px;
    font-weight: 500;
}

.contact-item i {
    color: #c9a84a;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.contact-item a, .contact-item span {
    color: #c9a84a;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 30px;
    margin-left: auto;
    margin-right: auto;
    order: 2; /* Keep in the middle */
}

.nav-item {
    color: #777;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #c9a84a;
}

.social-icons {
    display: flex;
    gap: 15px;
    order: 1; /* Changed order to move to the left */
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    text-decoration: none;
}



.footer-image {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        order: 2;
    }


    .contact-info {
        align-items: center;
        order: 3;
    }

    .social-icons {
        order: 1;
    }
}

.gold-frame .shop-now {
position: absolute;
bottom: 0;
right: 0;
left: 0;
/* background: #000; */
}

a.shop-btn {
color: #c4962d;
background: #fff;
}
.info-content:after{
background: url('../../solid.png');
background-repeat: no-repeat;
background-position: right bottom;
height: auto;
bottom: 0;
top: 0;
right:0
}
.info-content {
border-bottom: 2px solid #dabc7a;
}
.grid.grid-cols-1.md\:grid-cols-2.gap-5 {
 display: flex;
 gap: 10px !important;
}

.grid.grid-cols-1.md\:grid-cols-2.gap-5 img {
 max-width: 100%;
 height: auto;
}

.content.bgbtm {
 margin: 40px;
}
@media (max-width: 768px) {


 a.shop-btn {
 font-size: 11px;
 background: #c4962d;
 color: #fff;
 margin-top: -15px;
}

.gold-frame .shop-now {
 position: relative;
 margin-top: -2px;
}
 .aishi {}
 .content.bgbtm * {
 text-align: left;
}

h1.main-title {
 font-size: 18px;
}

p.english-subtitle {
 font-size: 14px;
 margin-bottom: 5px;
}

.text-section {
 margin-top: 11px;
}

a.book-button {
 font-size: 10px;
}
.info-content:after {
width: 130px !important;
background-size: contain;
}

.info-content * {text-align: left;}

.info-content * {}

h2.section-title {
font-size: 20px;
}

p.section-desc {
font-size: 11px;
}

.info-content {
justify-content: start;
text-align: left;
gap: 0;
display: block;
padding: 0;
}

.info-section {
margin-top: 20px;
}

.info-section {
margin-bottom: 0;
padding: 0;
}
.products-container {
flex-direction: column;
}



}
.compine {
gap: 30px;
display: flex;
flex-direction: column;
}

.product-card {
margin: 0 !important;
border-radius: 0 !important;
}

.products-row .product-card {
width: 47%;
}


.products-container {
display: flex;
}

.compine {
width: 100%;
}

.products-row {
width: 100%;
}

.products-row .product-card:first-child {
width: 100%;
}

.ff .product-card {
display: flex;
flex-direction: column;
flex-basis: 100%;
flex: 1;
}

.products-row.ff {
display: flex !important;
}

.products-container {
gap: 30px;
}

.compine {
display: flex;
flex-direction: column;
flex-basis: 100%;
flex: 0.9999;
}

.products-row.ll {
display: flex;
flex-direction: column;
flex-basis: 100%;
flex: 1.08;
}
.customtitlenew {
border: 1px solid #bc9139;
}
body{
background-image: url('../../Background.svg')
}
.card {
 box-shadow: none;
 border-radius: 0;
 height: auto;
 border: none;
}

.image-container {
 height: auto;
}

.gradient-overlay {
 position: relative;
 height: auto;
 bottom: auto;
 right: auto;
}

h2.card-title {
 position: relative;
 height: auto;
 bottom: auto;
 font-size: 18px;
 margin: 10px 0;
 text-align: left;
}

.image-container img {
 border-radius: 0;
}

section.products-section:before {
 content: no-close-quote;
 background: url('../../u.png');
 position: absolute;
 width: 40vw;
 height: 40vw;
 right: 0;
 top: 0;
 background-size: cover;
 z-index: -1;
}

section.products-section:after {
 content: no-close-quote;
 background: url('../../u.png');
 position: absolute;
 width: 40vw;
 height: 40vw;
 left: 0;
 bottom: 0;
 background-size: cover;
 z-index: -1;

}

section.products-section {
 position: relative;
 overflow: hidden;
}

.card-grid:before {
 content: no-close-quote;
 background: url('../../u.png');
 position: absolute;
 width: 40vw;
 height: 40vw;
 right: 0;
 top: 0;
 background-size: cover;
 z-index: -1;
}

.card-grid:after {
 content: no-close-quote;
 background: url('../../u.png');
 position: absolute;
 width: 40vw;
 height: 40vw;
 left: 0;
 bottom: 0;
 background-size: cover;
 z-index: -1;

}
.card {
 background: transparent;
}

.card-grid {
 position: relative;
 overflow: hidden;
}
.content.bgbtm:before {
 content: no-close-quote;
 position: absolute;
 height: 1px;
 right: -1000px;
 left: -1000px;
 background: #b27b00;
 top: -1px;
}
body  {
 overflow-x: hidden;}
html.no-js  {
 overflow-x: hidden;
 width: 100%;
}
.card-grid {
 overflow: visible !important;
}

section.products-section {
 overflow-x: visible;
 overflow-y: visible !important;
 /* overflow: visible; */
}
@media (max-width: 768px) {

 footer.footer {
 background-size: contain;
 padding-top: 1px;
}

.footer-content {
 margin-bottom: 82px !important;
}
.banner-slide:after,.banner-slide.active{
 position:relative
}

.banner-slide:after,.banner-slide.active:after {
 content: no-close-quote !important;
 position: absolute;
 height: 2px;
 right: -1000px;
 left: -1000px;
 background: #b27b00;
 bottom: 0px;
}


.book-button:hover {
 background: #a02a2a;
 color: #fff !important;
 text-decoration: none !important;
}

.banner-slider {
 padding: 0;
}



section.products-section:before {
 width: 100vw;
 height: 100vw;
 top: -100px;
 right: -173px;
 z-index: 33;
 z-index:-1
}

section.products-section:after {
 width: 100vw;
 height: 100vw;
 bottom: -50px;
 left: -173px;
 z-index: 33;
 z-index:-1
}

.card-grid:before {
 width: 100vw;
 height: 100vw;
 top: -60px;
 /* background: #000; */
 right: -170px;
}



.card-grid:after {
 width: 100vw;
 height: 170vw;
 bottom: -100px;
 left: -100px;
}

.customtitlenew {
 background-repeat: no-repeat;
 background-size: cover;
}


.arabesque-decoration {
 background: url('../../Frame 36813.png');
 background-repeat: no-repeat;
margin-right: -40px;
}
}


h2.card-title {
  color: #c4962d;
}

.card a {
  text-decoration: none !important;
}


.arabesque-decoration {
 background: url('../../Frame 36813.png');
 background-repeat: no-repeat;
 margin-right: -40px;
}
.story-text {
 color: #901A1D  ;
 font-weight: bold;
}

h2.title {
 font-family: inherit;
 color: #B27B00 ;
}

.aishi {
z-index: 99999;
}

.product-card.visible a:hover .card-label {
background: #941a1d;
}
