body {
    margin: 0;
    font-family: 'Lora', serif;
    background: #fff;
}

/* TOP NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Playfair Display', serif;
}

.logo {
    font-size: 34px;
    letter-spacing: 3px;
    font-weight: 500;
}

.search-text {
    margin-left: 5px;
}

.nav-right span {
    margin-left: 10px;
}

/* MENU */
.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px 0;
    font-size: 14px;
    font-family: 'Lora', serif;
}

.menu ul li {
    position: relative;
    cursor: pointer;
    padding-bottom: 10px;
}

.menu ul li:hover {
    color: #000;
    border-bottom: 2px solid black;
}

/* Dropdown parent */
.dropdown {
    position: relative;
    padding-bottom: 20px; /* invisible buffer to avoid gap */
}

/* Keep dropdown visible when hovering */
.dropdown:hover .mega-menu,
.mega-menu:hover {
    display: flex;
}

/* MEGA MENU */
.mega-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;        /* attaches dropdown directly under menu */
    background: #fff;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.15);
    padding: 25px 40px;
    width: 650px;
    gap: 30px;
    z-index: 999;
}

.mega-menu .column {
    display: flex;
    flex-direction: column;
}

.mega-menu h4 {
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.mega-menu a {
    color: #333;
    text-decoration: none;
    margin-bottom: 6px;
    font-size: 15px;
}

.mega-menu a:hover {
    text-decoration: underline;
}

/* HAMBURGER (MOBILE) */
.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .menu ul {
        flex-direction: column;
        text-align: center;
        display: none;
        background: #fff;
        padding: 20px;
    }

    .menu.show ul {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        flex-direction: column;
        padding: 15px 0;
    }
}
/* Slider Image */
.slider-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
}

.slide img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    border-radius: 0;
}

/* Fade animation */
.fade {
    animation-name: fadeEffect;
    animation-duration: 1.2s;
}

@keyframes fadeEffect {
    from {opacity: 0.4;}
    to {opacity: 1;}
}

/* Prev / Next Buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    font-size: 32px;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
    transition: 0.3s;
    user-select: none;
    z-index: 100;
}

.prev:hover, .next:hover {
    background: rgba(0,0,0,0.6);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Dots */
.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

.active-dot, .dot:hover {
    background-color: #333;
}

/* Mobile */
@media (max-width: 700px) {
    .slide img {
        height: 45vh;
    }
    .prev, .next {
        width: 30px;
        height: 30px;
        font-size: 24px;
    }
}

/* Product Slider */
/* Background */
.product-slider-section {
    background: #FAF6EF;
    padding: 50px 20px;
    text-align: center;
    font-family: 'Lora', serif;
}

/* Title */
.section-title {
    font-size: 22px;
    color: #2f2f2f;
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Arrows */
.arrow-left, .arrow-right {
    font-size: 26px;
    cursor: pointer;
    padding: 0 15px;
    color: #224C8E;
    transition: 0.3s;
}

.arrow-left:hover, .arrow-right:hover {
    color: #000;
}

/* Slider container */
.product-slider-container {
    width: 100%;
    overflow: hidden;
}

/* Track */
.product-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

/* Individual product */
.product-card {
    width: 25%;
    min-width: 25%;
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.product-name {
    font-size: 18px;
    font-family: 'Lora', serif;
    margin-top: 15px;
}

/* RESPONSIVE */
@media(max-width:1200px) {
    .product-card {
        min-width: 33.33%;
    }
}
@media(max-width:900px) {
    .product-card {
        min-width: 50%;
    }
}
@media(max-width:600px) {
    .product-card {
        min-width: 100%;
    }
    .section-title {
        font-size: 18px;
    }
}
/* Container */
.split-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 5%;
    background: #ffffff;
    gap: 60px;
}

/* Left Image */
.split-left img {
    width: 100%;
    max-width: 520px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 0 0 rgba(0,0,0,0);
}

/* Right Content */
.split-right {
    max-width: 500px;
}

.split-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #2b2b2b;
    margin-bottom: 15px;
}

.split-text {
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
}

/* Button Exact Style */
.split-btn {
    background: #8E1B22;
    color: #fff;
    padding: 12px 35px;
    font-size: 14px;
    font-family: 'Lora', serif;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: 0.3s;
    text-transform: uppercase;
}

.split-btn:hover {
    background: #6a1117;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .split-section {
        flex-direction: column;
        text-align: center;
    }

    .split-left img {
        max-width: 100%;
    }

    .split-right {
        max-width: 100%;
    }
}


.slider-container {
text-decoration: line-through;
color: #777;
margin-left: 8px;
}


.sale {
color: red;
margin-left: 8px;
font-weight: bold;
}


.arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: transparent;
border: 2px solid #999;
width: 45px;
height: 45px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
font-size: 22px;
color: #444;
transition: 0.3s;
}


.arrow:hover {
background: #ddd;
}


#left-arrow {
left: 20px;
}


#right-arrow {
right: 20px;
}


@media (max-width: 600px) {
.product-card {
min-width: 250px;
max-width: 250px;
}
.arrow { width: 38px; height: 38px; font-size: 18px; }
}
/*product 2*/
.awh-section {
    background: #f7f4ec;
    padding: 50px 40px;
    font-family: 'Lora', serif;
}

.awh-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.awh-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #0b3b8c;
}

.awh-nav {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #0b3b8c;
}

.awh-viewall {
    display: block;
    text-align: center;
    margin: 10px 0 30px;
    font-size: 13px;
    text-decoration: underline;
    color: #000;
}

.awh-slider-wrapper {
    overflow: hidden;
}

.awh-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.4s ease;
}

.awh-product {
    min-width: 260px;
    background: transparent;
}

.awh-img-wrapper {
    position: relative;
    overflow: hidden;
}

.awh-img-slider img {
    width: 100%;
    display: none;
}

.awh-img-slider img.active {
    display: block;
}

.awh-off {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e6f0ff;
    padding: 5px 10px;
    font-size: 12px;
}

.awh-img-prev,
.awh-img-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    font-size: 18px;
    padding: 6px 10px;
    cursor: pointer;
    display: none;
}

.awh-img-prev { left: 8px; }
.awh-img-next { right: 8px; }

.awh-img-wrapper:hover .awh-img-prev,
.awh-img-wrapper:hover .awh-img-next {
    display: block;
}

.awh-product h4 {
    font-size: 14px;
    margin: 12px 0 6px;
}

.price {
    font-size: 14px;
}

.price span {
    text-decoration: line-through;
    color: #999;
    margin-left: 5px;
}

.price b {
    color: red;
    margin-left: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .awh-product {
        min-width: 200px;
    }
}


/* SMALL DROPDOWN MENU */
.small-menu {
    display: none;           /* hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 10px 15px;
    min-width: 160px;
    border-radius: 4px;
    z-index: 999;
}

.small-menu a {
    display: block;
    padding: 8px 10px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: 0.2s;
}

.small-menu a:hover {
    background: #f0f0f0;
    color: #000;
}

/* Show small menu on hover */
.dropdown:hover .small-menu {
    display: block;
}

/* RESPONSIVE - small menu becomes static for mobile */
@media (max-width: 900px) {
    .small-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
    }
}
.awh-product {
    position: relative;
    overflow: hidden;
}

/* Quick Buy Button */
.awh-quick-buy {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 10px 0;
    background: white;
    color: black;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 5;
}

/* Show on hover */
.awh-product:hover .awh-quick-buy {
    bottom: 10px;
    opacity: 1;
}

/* Optional hover effect */
.awh-quick-buy:hover {
    background: #c59d5f; /* gold-ish luxury tone */
}
.site-footer {
  background: #e3e3e3;
  color: black;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  color: #fff;
  font-size: 32px;
  margin-bottom: 15px;
}

.footer-text {
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: black;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #8E1B22;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #8E1B22;
  color: #fff;
  border-radius: 6px;
  margin-right: 10px;
  text-decoration: none;
  font-size: 18px;
}

.footer-bottom {
  background: #8E1B22;
  text-align: center;
  padding: 15px;
  color: #fff;
  font-weight: 500;
}

/* 🔹 Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
/* wooden sculpture */

.wsp-section {
    background: #f7f4ec;
    padding: 50px 40px;
    font-family: 'Lora', serif;
}

.wsp-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.wsp-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #0b3b8c;
}

.wsp-nav {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #0b3b8c;
}

.wsp-viewall {
    display: block;
    text-align: center;
    margin: 10px 0 30px;
    font-size: 13px;
    text-decoration: underline;
    color: #000;
}

.wsp-slider-wrapper {
    overflow: hidden;
}

.wsp-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.4s ease;
}

.wsp-product {
    min-width: 260px;
    position: relative;
}

.wsp-img-wrapper {
    position: relative;
    overflow: hidden;
}

.wsp-img-slider img {
    width: 100%;
    display: none;
}

.wsp-img-slider img.active {
    display: block;
}

.wsp-off {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e6f0ff;
    padding: 5px 10px;
    font-size: 12px;
}

.wsp-img-prev,
.wsp-img-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    font-size: 18px;
    padding: 6px 10px;
    cursor: pointer;
    display: none;
}

.wsp-img-prev { left: 8px; }
.wsp-img-next { right: 8px; }

.wsp-img-wrapper:hover .wsp-img-prev,
.wsp-img-wrapper:hover .wsp-img-next {
    display: block;
}

/* Quick Buy Button */
.wsp-quick-buy {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 10px 0;
    background: white;
    color: black;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 5;
}

.wsp-product:hover .wsp-quick-buy {
    bottom: 10px;
    opacity: 1;
}

.wsp-quick-buy:hover {
    background: #c59d5f;
}

.wsp-product h4 {
    font-size: 14px;
    margin: 12px 0 6px;
}

.wsp-price {
    font-size: 14px;
}

.wsp-price span {
    text-decoration: line-through;
    color: #999;
    margin-left: 5px;
}

.wsp-price b {
    color: red;
    margin-left: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .wsp-product {
        min-width: 200px;
    }
}

/* wooden sculpture end */

/* FAQ*/
.faq-section {
  background: #fff;
  padding: 60px 20px;
  font-family: 'Lora', serif;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-title {
  font-size: 26px;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 25px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display Grove: flex;
  justify-content: space-between;
  align-items: left;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
}

.faq-icon {
  font-size: 22px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* Open State */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  content: "−";
}

/* Responsive */
@media (max-width: 600px) {
  .faq-question {
    font-size: 17px;
  }

  .faq-answer p {
    font-size: 15px;
  }
}
