@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
      font-family: "Roboto", sans-serif;
    scroll-behavior: smooth;

}
*{
  font-family: "Roboto", sans-serif;

}
:root{
 --color-1:rgba(253, 184, 6);
 --color-2:rgba(1, 68, 33);
 --color-text:rgba(0,0,0,0.7);
   --box-shadow-s :0px 0px 10px 5px rgba(0, 0, 0, 0.05);
  --box-shadow-s-bottom : 0px 10px 5px rgba(0, 0, 0, 0.05);
}

/* PROMO BAR */
.art-promo-bar {
    background: linear-gradient(90deg, var(--color-1), var(--color-2));
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    letter-spacing: 1px;
}

/* HERO */
.art-hero {
    position: relative;
    height: 100vh;
    background: url('/images/hero.jpg') center/cover no-repeat;
    color: #fff;
}

/* HERO VIDEO */
.art-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay stays above video */
.art-overlay {
    position: absolute;
    inset: 0;
    background: rgba(1, 68, 33,0.7);
    z-index: 1;
}

/* Content above everything */
.art-navbar,
.art-hero-content {
    position: relative;
    z-index: 2;
}


/* DARK OVERLAY */
.art-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* NAVBAR */
.art-navbar {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    z-index: 999;
    box-sizing: border-box;
}


.menu-item {
    display: inline-block;
    position: relative;
}

/* DROPDOWN */
.menu-item .drop-menu {
    position: absolute;
    top: 110%;
    left: 0%;
    background: #fff;
    box-shadow: var(--box-shadow-s-bottom);
    padding: 20px 30px;
    display: none;
    z-index: 1000;
    border-radius: 10px;
}
.menu-item .drop-menu::after {
   content: "";
  position: absolute;
  top: -8px;          /* move above menu */
  left: 0px;   
  width: 100%;
  height: 20px;
  background-color: transparent;
}
.menu-item .drop-menu::before {
  content: "";
  position: absolute;
  top: -8px;          /* move above menu */
  left: 40px;         /* adjust horizontally */
  
  width: 0;
  height: 0;

  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff; /* arrow color */
}
/* SHOW ON HOVER */
.menu-item:hover .drop-menu {
    display: block;
}

/* ITEMS GRID */
.drop-menu-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.drop-menu-items a {
    color: #3a3a3a;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.drop-menu-items a:hover {
    color: var(--color-1);
}

.logo-bg{
  background-color: var(--color-2);
}

/* SCROLLED STATE */
.art-navbar.art-navbar-scrolled {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    left: 0;
        padding: 10px 60px;

    background: var(--color-2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.logo{
    width: 120px;
}

.art-navbar.art-navbar-scrolled 
.art-menu a:hover {
    opacity: 1;
    color: var(--color-1);
    border-bottom: 1px solid var(--color-1);
}
.art-navbar.art-navbar-scrolled 
.top-header-right {

    color:  var(--color-1);
}


.art-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.art-menu .item {
    margin: 0 12px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.9;
    cursor: pointer;
}

.art-menu .item:hover {
    opacity: 1;
    border-bottom: 1px solid #fff;
}

/* HERO CONTENT */
.art-hero-content {
    position: relative;
    z-index: 2;
    height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.art-collection {
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.art-hero-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 15px;
}

.art-hero-content p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 35px;
}

/* BUTTON */
.art-btn {
    padding: 14px 40px;
    border: 1px solid var(--color-1);
    color: var(--color-1);
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
}
.special-p{
color: var(--color-1);
font-weight: bold;
}
.art-btn:hover {
    background: #fff;
    color: #000;
}

.top-header{
    display: flex;
    justify-content: space-between;
z-index: 2;
padding: 10px 20px;
box-sizing: border-box;

}

.top-header-right{
    display: flex;
    gap: 20px;
}
.top-header-right i{
  font-size:2rem;
}

.products-container{
  display: grid;
  grid-template-columns: repeat(5,1fr);
  padding: 20px;
  margin: 10px;
  box-sizing: border-box;
  gap: 10px;
}

.product-card {
    position: relative;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid rgba(207, 207, 207, 0.5);
  cursor:pointer;
}
.product-card:hover .product-hover{
 display: flex;
}
.product-hover{
    display: none;
        gap: 5px;

     position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}
.product-hover .button{
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow-s);
    cursor: pointer;
    transition: 0.2s;
    animation: smoth-down 0.3s linear;
    font-size: 1rem;
}
@keyframes smoth-down {
  0%{
   transform: translateY(-10px);
  }
  100%{
   transform: translateY(0px);

  }
}

.product-hover button:hover{
    transform: translateY(-2px);
    background: var(--color-1);
    color: #fff;
      border: 1px solid rgba(253, 184, 6,0.5);

}

.product-card:hover {
  transform: translateY(-3px);
        border: 1px solid var(--color-1);

}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-1);
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.product-info {
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.product-price {
  font-size: 13px;
  color: #555;
}



.art-product-page {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding: 40px;
}

/* GALLERY */
.art-gallery {
  display: flex;
  gap: 15px;
}

.art-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.art-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  background: #fff;
}

.section-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.section-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 4px;
    margin: 10px 0px;
    margin-top: 30px;
}
.section-header h1{
   color: var(--color-2);
   font-size: 3rem;
   font-weight: 400;
   letter-spacing: 2px;
   margin: 0;
}
.section-header span{
   color: var(--color-text);
}

/* COLLECTIONS SECTION */
.art-collections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 80vh;
}

/* ITEM */
.art-collection-item {
    position: relative;
    overflow: hidden;
}

.art-collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.art-collection-item:hover img {
    transform: scale(1.05);
}

/* OVERLAY */
.art-collection-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.518);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 30px;
}

.art-collection-overlay h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 10px;
}

.art-collection-overlay p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* BUTTON */
.art-btn-outline {
    padding: 12px 38px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.art-btn-outline:hover {
    background: #fff;
    color: #000;
}



/* REVIEWS SECTION */
.art-reviews {
    padding: 10px 60px;
    text-align: center;
}

/* SUMMARY */
.art-review-summary {
    display: inline-block;
    border: 1px solid #ddd;
    padding: 8px 18px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}

/* GALLERY */
/* .art-review-gallery {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 60px;
} */

.art-review-card {
    position: relative;
    width: 210px;
    height: 260px;
    border-radius: 10px;
    overflow: hidden;
}

.art-review-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.art-review-card span {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 13px;
    background: rgba(0,0,0,0.5);
    padding: 4px;
}

/* NEXT BUTTON */
.art-review-next {
    position: absolute;
    right: -40px;
    border: none;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
}

/* BIG REVIEW */
.art-review-content {
    max-width: 700px;
    margin: auto;
}

.art-quote {
    font-size: 120px;
    color: #eee;
    line-height: 1;
}

.art-review-text {
    font-size: 20px;
    margin: -40px 0 30px;
}

.art-review-stars {
    font-size: 20px;
    margin-bottom: 10px;
}

.art-review-author {
    font-size: 14px;
    font-weight: 600;
}
/* INSTAGRAM */
.art-instagram {
    text-align: center;
    padding: 20px 0;
}
.art-instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.art-instagram-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* INSTAGRAM GRID */
.art-instagram {
    text-align: center;
    padding: 10px 0 40px;
}

.art-instagram-title {
    font-size: 42px;
    margin: 20px 0px;
    padding: 0;
}

/* GRID */
.art-instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* ITEM */
.art-insta-item {
    position: relative;
    display: block;
    overflow: hidden;
}

.art-insta-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* OVERLAY */
.art-insta-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.4s ease;
}

/* ICON */
.art-insta-overlay i {
    font-size: 42px;
    color: #fff;
}

/* HOVER EFFECT */
.art-insta-item:hover img {
    transform: scale(1.05);
}

.art-insta-item:hover .art-insta-overlay {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .art-instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .art-insta-item img {
        height: 220px;
    }
}


/* VALUES */
.art-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 20px 60px;
    text-align: center;
        color: #3a3a3a;

}
.art-value i {
    font-size: 60px;
    margin-bottom: 15px;
    color: #b6b6b6;
}

/* PRESS */
.art-press {
    text-align: center;
    padding: 20px 0;
}
.art-instagram-sub{
  padding: 0px;
  margin: 0px;
}
.art-press-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}
.side-1 span{
text-decoration: underline;
margin-right: 10px;
}
.art-press-logos img {
    height: 60px;
}

/* FOOTER */
.art-footer {
    background: var(--color-2);
    padding: 80px 60px 30px;
    color: #e8e8e8;
}
.art-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.art-footer a {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
        color: #b6b6b6;

}
.art-footer a:hover{
    color: var(--color-1);

}
.art-socials i {
    font-size: 22px;
    margin-right: 10px;
}
.art-footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
}
/* PRODUCT PAGE */
.art-product-page {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    padding: 80px 60px;
    background: #fff;
}

/* GALLERY */
.art-product-gallery {
    position: relative;
}
.art-main-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.art-gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: var(--box-shadow-s);
    cursor: pointer;
}
.art-gallery-btn.prev { left: 15px; }
.art-gallery-btn.next { right: 15px; }

/* INFO */
.art-product-info {
    display: flex;
    flex-direction: column;
}

.art-product-title {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 5px;
}

.art-product-subtitle {
    text-transform: uppercase;
    font-size: 13px;
    color: #777;
    margin-bottom: 20px;
}

.art-product-price {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
}



.art-option-label {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}

.art-option-buttons {
    display: flex;
    gap: 10px;
}

.art-option-buttons button {
    padding: 8px 14px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
}

.art-option-buttons button.active {
    background: var(--color-2);
    color: #fff;
    border-color: var(--color-2);
}

/* FRAME */
.art-frame-options {
    display: flex;
    gap: 10px;
}
.art-frame-options img {
    width: 70px;
    border: 2px solid transparent;
    cursor: pointer;
}
.art-frame-options img.active {
    border-color: var(--color-2);
}

/* QUANTITY */
.art-qty {
    display: flex;
    width: 120px;
    margin-bottom: 15px;
}
.art-qty button {
    width: 35px;
    border: none;
    background: #fff;
    cursor: pointer;
}
.art-qty input {
    width: 50px;
    border: none;
    text-align: center;
}

/* ADD TO CART */
.art-add-to-cart {
    background: var(--color-2);
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
}

/* EXTRA */
.art-extra-actions {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #666;
}



/* SECTION */
.art-compare-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

/* WRAPPER */
.art-compare-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    user-select: none;
}

/* IMAGES */
.art-compare-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* AFTER IMAGE CLIP */
.art-after-wrapper {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
}

/* LABELS */
.art-label {

    font-size: 12px;
    border-radius: 4px;
    z-index: 5;
}


/* SLIDER */
.art-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: ew-resize;
}

/* LINE */
.art-slider-line {
    width: 2px;
    height: 100%;
    background: #fff;
}

/* BUTTON */
.art-slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.old-price{
    font-size: 0.7rem;
    color: red;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .art-compare-wrapper {
        aspect-ratio: 4 / 5;
    }
}



.art-product-page {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding: 40px;
}

/* GALLERY */
.art-gallery {
  display: flex;
  gap: 15px;
}

.art-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.art-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
}

.art-thumb.active {
  border-color: var(--color-1);
}

.art-main-image img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}
.art-description{
  padding: 20px 40px;
}

/* INFO */
.art-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.art-title {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.art-rating {
  font-size: 14px;
  color: #f5a623;
}

.art-rating span {
  color: #555;
  margin-left: 10px;
}

.art-viewers {
  font-size: 13px;
  color: #777;
}

/* PRICE */
.art-price {
  display: flex;
  align-items: center;
  gap: 12px;
}

.art-price-new {
  font-size: 26px;
  font-weight: 700;
}

.art-price-old {
  text-decoration: line-through;
  color: #999;
}

.art-badge {
  background: #ff5722;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
}

/* OPTIONS */
.art-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: max-content;
}
.art-section p{
  margin: 0;
  padding: 0;
}

.art-label {
  font-weight: 500;
}

.art-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}



/* QTY */
.art-qty {
  display: flex;
  align-items: center;
  gap: 12px;
}

.art-qty button {
  width: 36px;
  height: 36px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

/* BUTTONS */
.art-add-cart {
  background: #1f1f1f;
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.art-buy-now {
  background: #f6d77a;
  color: #000;
  padding: 14px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}
.art-buy-whatsapp {
  background: rgb(105, 175, 0);
  color: #ffffff;
  padding: 14px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.art-wishlist {
  font-size: 14px;
  color: #444;
  cursor: pointer;
}

.art-option-img{
    width: 70px;
    height: 70px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.art-option {
  padding: 5px 10px;
  border: 1px solid #808080;
  background: #fff;
  cursor: pointer;
  height: max-content;
}

.art-option.active,
.art-option-img.active {
  background: var(--color-2);
  color: #fff;
}


/* ================= WHATSAPP MODAL ================= */
.art-whatsapp-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  box-sizing: border-box;

}

.art-whatsapp-modal.active {
  display: flex;
}
.art-whatsapp-product-info{
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9rem;
}
.art-whatsapp-box {
  background: #fff;

  width: 500px;
  max-width: 90%;
  padding: 25px;
  border-radius: 14px;
  position: relative;
  animation: fadeUp 0.3s ease;
    box-sizing: border-box;

}

@keyframes fadeUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.art-whatsapp-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

.art-whatsapp-box h2 {
  margin: 20px 15px;
  text-align: center;
}

.art-whatsapp-product {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.art-whatsapp-product img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}

.art-whatsapp-box input,
.art-whatsapp-box textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
    box-sizing: border-box;

}
.input{
    position: relative;
}
.input .input-element{
   padding-left: 30px;
}
.input .input-element:focus{
   outline: 1px solid var(--color-1);
}
.input i{
   position: absolute;
   top: 24%;
   left: 10px;
   color: var(--color-2);
}
.input-textarea i{
   top: 16%;

}
.art-whatsapp-box-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.art-whatsapp-box textarea {
  resize: none;
  height: 70px;
}

.art-whatsapp-send {
  width: 100%;
  background: #25d366;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
}


/* ---------------------------------menu ------------------------ */
/* ================= MOBILE MENU ================= */
.art-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 9998;
}

.art-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 90%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  color: #101010;
}
.art-mobile-menu::-webkit-scrollbar{
  display: none;
}

.art-mobile-menu.active {
  right: 0;
}

.art-mobile-overlay.active {
  display: block;
}

.art-mobile-header {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  align-items: center;
}

.art-mobile-header img {
  width: 100px;
}

.close-btn {
  font-size: 26px;
  cursor: pointer;
}

.art-mobile-subtitle {
  text-align: center;
  font-size: 13px;
  padding: 0 15px;
  color: #101010;
}

.art-mobile-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  margin: 15px auto;
  display: block;
}

.art-mobile-list {
  padding: 0 15px;
}

.art-mobile-list a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgb(236, 236, 236);
  text-decoration: none;
  color: #101010;
  font-size: 14px;
  font-weight: bold;
}

.mobile-accordion-header {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  cursor: pointer;
    color: #101010;
  font-size: 14px;
  font-weight: bold;

  border-bottom: 1px solid rgb(236, 236, 236);
}

.mobile-accordion-body {
  max-height: 0;
  overflow-y: auto;
  transition: max-height 0.35s ease;
  margin: 0px 20px;
    font-weight: bold;

}

.mobile-accordion-body a {
  padding: 10px 0;
  font-size: 13px;
  color: #101010;
    font-weight: bold;

}

.mobile-accordion.active .mobile-accordion-body {
  max-height: 300px;
}

.mobile-accordion.active .icon {
  transform: rotate(45deg);
}

.art-mobile-footer {
  margin-top: auto;
  padding: 15px;
  font-size: 13px;
  border-top: 1px solid #eee;
}



/* ===================================================== slide reviews =================== */
/* ======================================================
   IMAGE REVIEW GALLERY
   ====================================================== */

/* Wrapper */
.art-review-gallery-wrapper {
  position: relative;
  margin-bottom: 40px;
}

/* Viewport */
.art-review-gallery-viewport {
  overflow: hidden;
}

/* Slider */
.art-review-gallery {
  display: flex;
  gap: 15px;
  transition: transform 0.45s ease;
}

/* Card – DESKTOP (5 items) */
.art-review-card {
  flex: 0 0 calc((100% - 60px) / 5);
width: 200px;
max-width:200px ;
  height: 300px;
  overflow: hidden;
  background: #fff;
  border-radius: 14px;
}
.art-review-card video {
  
  object-fit: cover;
  width: 100%;
  height: 100%;

}
/* TABLET (3 items) */
@media (max-width: 1024px) {
  .art-review-card {
    flex: 0 0 calc((100% - 30px) / 3);
  }
}

/* MOBILE (1 item ONLY) */
@media (max-width: 600px) {
  .art-review-card {
    flex: 0 0 100%;
  }
    .art-review-card {
width: 100%;
max-width:100% ;
height: 550px !important;
}
}

/* ======================================================
   GALLERY ARROWS
   ====================================================== */

.art-review-prev,
.art-review-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #f1f1f1;
  color: #000;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
}

/* Desktop positions */
.art-review-prev {
  left: -10px;
}

.art-review-next {
  right: -10px;
}

/* Mobile – keep arrows visible */
@media (max-width: 600px) {
  .art-review-gallery-wrapper .art-review-prev {
    left: 10px;
  }

  .art-review-gallery-wrapper .art-review-next {
    right: 10px;
  }
}

/* Disabled state */
.art-review-prev:disabled,
.art-review-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ======================================================
   BIG REVIEW SLIDER
   ====================================================== */

.art-review-content-wrapper {
  position: relative;
  margin-top: 50px;
}

/* Viewport */
.art-review-content-viewport {
  overflow: hidden;
}

/* Slider */
.art-review-content-slider {
  display: flex;
  transition: transform 0.45s ease;
}

/* Slide */
.art-review-content-slide {
  flex: 0 0 100%;
  text-align: center;
  padding: 40px 20px;
}

/* Big review arrows */
.art-review-content-wrapper .art-review-prev,
.art-review-content-wrapper .art-review-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 32px;
  cursor: pointer;
  z-index: 10;
}

/* Mobile – keep arrows inside screen */
@media (max-width: 600px) {
  .art-review-content-wrapper .art-review-prev {
    left: 10px;
  }

  .art-review-content-wrapper .art-review-next {
    right: 10px;
  }
  /* .swiper-button-prev{
    font-size: 10px;
  }
  .swiper-navigation-icon{
    font-size: 10px !important;
    width: 10px !important;
    margin-left:200px;
  } */

}

 swiper-container {
      width: 100%;
      height: 100%;
    }

    swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

/* ===================================================== slide reviews =================== */





/* -------------------------------- collection -------------------------------- */
/* ================= COLLECTION ================= */

/* ===== PAGE ===== */
.collection-page {
  margin: auto;
  padding: 20px 20px;
  margin-top: 40px;
  background: #fff;
  box-sizing: border-box;
}

.collection-title {
  text-align: center;
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 40px;
}

/* ===== LAYOUT ===== */
.collection-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  box-sizing: border-box;
}

/* ===== SIDEBAR ===== */
.collection-sidebar {
  border-right: 1px solid #eee;
  padding-right: 20px;
}

.filter-title {
  font-size: 20px;
  margin-bottom: 20px;
}

.filter-tags {
  display: flex;
  gap: 10px;
}

.filter-tags a {
  padding: 6px 14px;
  border: 1px solid #000;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
    cursor: pointer;

}
.btn {
   padding: 6px 14px;
  border: 1px solid #000;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
.btn:hover{
  background-color: var(--color-1);
}
.filter-tags a:hover{
  background-color: var(--color-1);
}
.btn-success {
  color: #fff;
  background: var(--color-2);
}

.filter-block {
  margin-bottom: 30px;
}

.filter-header {
  font-size: 18px;
  padding: 10px 0;
  border-top: 1px solid #eee;
  cursor: pointer;
}

/* ===== COLORS ===== */
.color-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding-top: 15px;
}

.color-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: block;
}

/* ===== PRODUCTS ===== */
.collection-products {
  width: 100%;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 30px 0px;
}

.pagination a {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #000;
}

.pagination a.active {
  background: #000;
  color: #fff;
}






.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: #777;
}

.collection-page {
  width: 100%;
}

/* HEADER */
.collection-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

/* TITLE ROW */
.collection-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.collection-header h1 {
  font-size: 26px;
  font-weight: 700;
}

.collection-count {
  color: #777;
  font-size: 14px;
}

/* FILTER BAR */
.collection-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 14px;
    box-sizing: border-box;

}

/* INPUTS */
.collection-filters input,
.collection-filters select {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  min-width: 160px;
    box-sizing: border-box;

}

.collection-filters input:focus,
.collection-filters select:focus {
  border-color: #000;
}

/* FILTER TAGS */
.filter-tags {
  display: flex;
  gap: 8px;
}

.filter-tags a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #ddd;
  text-decoration: none;
  font-size: 14px;
  color: #000;
  transition: 0.2s;
}

.filter-tags a.active,
.filter-tags a:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* APPLY BUTTON */
.collection-filters button {
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

/* CONTENT */
.collection-layout {
  display: flex;
  gap: 40px;
}

/* PRODUCTS GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}


.art-page-hero {
    background: linear-gradient(135deg, #111, #333);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.art-page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
}

.art-page-content {
    padding: 60px 20px;
    background: #fafafa;
}

.art-page-container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.art-page-container h2,
.art-page-container h3 {
    margin-top: 30px;
}

.art-page-container p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.art-page-container img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}
.cart-icon {
  position: relative;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #ff3b30;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: 600;
}


/* -------------------------------------------------cart ---------------------- */
/* ================= CART OVERLAY ================= */
.art-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
}

.art-cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ================= CART SIDEBAR ================= */
.art-cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s ease;
}

/* OPEN STATE */
.art-cart-sidebar.active {
  transform: translateX(0);
}

/* ================= HEADER ================= */
.art-cart-header {
  display: flex;
  justify-content: space-between;

  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
}


.art-cart-header h3 {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.art-cart-header span {
  background: #111;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 20px;
}

.art-cart-header button {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* ================= FREE DELIVERY ================= */
.art-cart-info {
  padding: 12px 20px;
  font-size: 14px;
  background: #f7f7f7;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ================= BODY ================= */
.art-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 15px 20px;
}

/* ================= CART ITEM ================= */
.art-cart-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.art-cart-item img {
   width: 70px !important;
  height: 70px !important;
    border: 1px solid #e2e2e2;
      border-radius: 6px;
  object-fit: cover !important;
  
}

.art-cart-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.art-cart-item p {
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
}

/* ================= QTY ================= */
.art-cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.art-cart-qty button {
  width: 26px;
  height: 26px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
}

.art-cart-qty span {
  min-width: 20px;
  text-align: center;
}

/* ================= REMOVE ================= */
.art-cart-item > button {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 13px;
  color: #888;
  cursor: pointer;
}

/* ================= FOOTER ================= */
.art-cart-footer {
  border-top: 1px solid #eee;
  padding: 18px 20px;
}

/* TOTAL */
.art-cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* COMMAND BUTTON */
.art-cart-command {
  width: 100%;
  background: var(--color-2);
  color: var(--color-1);
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
}

/* ================= CART ICON ================= */
.cart-icon {
  position: relative;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #ff3b30;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: 600;
}

/* ================= CART TOAST ================= */
.art-cart-toast {
  position: fixed;
  top: 90px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #22c55e; /* green */
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  transform: translateX(120%);
  opacity: 0;
  z-index: 10000;
  transition: all .45s cubic-bezier(.4,0,.2,1);
}
.variant-selected-label {
  font-weight: 600;
  color: #000;
}


.art-cart-toast i {
  font-size: 20px;
}

/* SHOW */
.art-cart-toast.show {
  transform: translateX(0);
  opacity: 1;
}

/* MOBILE */
@media (max-width: 600px) {
  .art-cart-toast {
    right: 15px;
    left: 15px;
    width: auto;
  }
}

/* -------------------------------------------------cart ---------------------- */
/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .collection-header-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .collection-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .collection-filters input,
  .collection-filters select,
  .collection-filters button {
    width: 100%;
  }

  .filter-tags {
    justify-content: center;
  }

}

/* -------------------------------- collection -------------------------------- */

.art-footer-logo{
  width: 70%;
  transform: translateX(-30px);
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .collection-layout {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------menu ------------------------ */
/* ================= RESPONSIVE ================= */
@media (max-width: 1300px) {
     .drop-menu-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.products-container{
  grid-template-columns: repeat(4,1fr);
}
}
@media (max-width: 1000px) {
     .art-menu {
        display: none;
        
    }
    .products-container{
  grid-template-columns: repeat(3,1fr);
}
}
@media (max-width: 992px) {
    .art-product-page {
        grid-template-columns: 1fr;
        padding: 40px 20px;
          gap: 20px;

    }


    .art-gallery-btn {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .art-product-title {
        font-size: 28px;
    }
 
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .art-instagram-grid,
    .art-values,
    .art-footer-grid {
        grid-template-columns: 1fr;
    }
}



/* RESPONSIVE */
@media (max-width: 900px) {
    .art-collections {
        grid-template-columns: 1fr;
        height: auto;
    }

    .art-collection-item {
        height: 50vh;
    }
}


@media (max-width: 900px) {
   

    .menu-item.open .drop-menu {
        display: block;
        position: static;
        width: 100%;
        padding: 20px;
    }
}

@media (max-width: 750px) {
   
.products-container{
  grid-template-columns: repeat(2,1fr);
}

.art-navbar {
  
    padding: 20px 20px;
  
}
.art-navbar.art-navbar-scrolled {

        padding: 10px 20px;

}
.section-header h1{
   font-size: 2rem;

}
}
@media (max-width: 500px) {
   
.products-container{
  grid-template-columns: repeat(1,1fr);
}


}
