﻿/* Basic reset */
* { box-sizing: border-box;
   margin: 0; padding: 0;
   }
:root{
  --bg:#ffffff; --text:#222; --muted:#666; --accent:#F07E2D; --card:#fff;
  --primary: #F07E2D; --secondary: #1a1a1a; --dark: #1a1a1a; --light: #ffffff;
}
/* ensure html & body allow content to flow and prevent horizontal scroll */
html { height: auto; overflow-x: hidden; }
body { font-family: Inter, system-ui, Arial, sans-serif; background:#ffffff; color:var(--text); line-height:1.4; display:flex; flex-direction:column; min-height:100vh; padding-top:0; overflow-x: hidden; }
main{ flex:1 0 auto; margin-top:0; }
/* Ensure a top-level .container directly under body fills the remaining space
  so footer will be pushed to the bottom without changing page markup. */
body > .container { flex: 1 0 auto; display: flex; flex-direction: column; }
.container{ max-width:1200px; margin:0 auto; padding:0 20px; }
/* Top Promo Bar - stays at very top */
.promo-strip {
  position: static;
  width: 100%;
  z-index: auto;
}

header.site-header{ 
  background:#fff; 
  border-bottom:1px solid #eee; 
  height:85px; 
  display:flex; 
  align-items:center;
  position: sticky; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 1001; 
  width: 100%; 
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);  
}
.site-nav{ display:flex; align-items:center; justify-content:space-between; max-width:1200px; margin:0 auto; padding:0px; width:100%; height:85px; }

.mfc {
  background: radial-gradient(
    circle,
    rgba(69, 68, 68, 0.9) 0%,   /* light center */
    rgb(4, 4, 4) 100%    /* dark edges */
  );
  color: white;
  padding: 50px;
  text-align: center;
}
.featured-blogs-section,
.featured,
.mfc {
  position: relative;
  /* background: #111;
  color: #fff;
  padding: 60px; */
}
.featured-blogs-section::before {
  
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: inherit;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.featured::before,
.mfc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: inherit;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}


.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; color:var(--text); height:85px; }
.brand img{ height:40px; width:auto; }
.nav-links{ display:flex; gap:18px; align-items:center; height:85px; }
.nav-links a{ text-decoration:none; color:var(--text); font-weight:600; height:85px; display:flex; align-items:center; padding:0 18px; }
.search{ display:flex; gap:8px; align-items:center; }
.nav-right{ display:flex; gap:16px; align-items:center; }
.nav-user{ position:relative; display:inline-block; margin-right:8px; }
.user-area{ display:flex; gap:8px; align-items:center; }
.user-btn{ display:inline-flex; gap:8px; align-items:center; text-decoration:none; color:var(--text); border:none; background:transparent; cursor:pointer; }
.user-icon{ width:36px; height:36px; border-radius:50%; background:#e9e9e9; display:inline-flex; align-items:center; justify-content:center; font-weight:700; color:#333; }
.username-name{ font-weight:600; margin-left:6px; }
.small-link{ margin-left:8px; color:var(--muted); text-decoration:none; font-size:14px; }
.user-dropdown{ position:absolute; left:0; top:calc(100% + 8px); background:#fff; border:1px solid #eee; box-shadow:0 6px 20px rgba(0,0,0,0.08); border-radius:8px; min-width:160px; padding:8px 6px; z-index:1200; display:none; }
.user-dropdown a{ display:block; padding:8px 10px; text-decoration:none; color:var(--text); border-radius:6px; }
.user-dropdown a:hover{ background:#f6f6f6; }
.search input{ padding:8px 10px; border:1px solid #e6e6e6; border-radius:6px; }
.btn{ background:var(--accent); color:#fff; padding:10px 14px; border-radius:8px; text-decoration:none; display:inline-block; }
.hero{ position:relative; padding:0; margin:none; min-height:550px; }
.slider{ position:relative; /* will be made full-bleed below */ height:100%; min-height:550px; }
.hero .slider { position:relative; }
/* full-bleed technique: let slider span viewport width while keeping content centered */
.hero .slider { position:relative; left:50%; transform:translateX(-50%); width:100vw; height:100%; overflow:hidden; }
.slide{ position:absolute; width:100%; height:100%; opacity:0; transform:translateX(0); }
.slide.active{ opacity:1; }
.slide img{ width:100%; height:100%; object-fit:cover; display:block; }
.slide video{ width:100%; height:100%; object-fit:cover; display:block; }

/* ===== SLIDE ANIMATION STYLES ===== */
/* Slide enters from right, exits to left */
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutToLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}

/* Previous slide: enter from left */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Previous slide: exit to right */
@keyframes slideOutToRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

.slide.active {
  opacity: 1;
  animation: slideInFromRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  z-index: 5;
}

.slide.prev-active {
  animation: slideOutToLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  z-index: 4;
}

.slide.prev-direction.active {
  animation: slideInFromLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  z-index: 5;
}

.slide.prev-direction.prev-active {
  animation: slideOutToRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  z-index: 4;
}

/* ===== TEXT ANIMATION STYLES ===== */
.hero-content { 
  position: absolute; 
  z-index: 5; 
  background: #ed8712; 
  padding: 18px 24px; 
  border-radius: 8px; 
  max-width: 520px; 
  left: 50%; 
  transform: translateX(-50%); 
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero-content h1{ 
  font-size: 42px; 
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-content p { 
  color: black; 
  font-size: 16px; 
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-content .btn {
  opacity: 0;
  transform: translateY(30px);
  display: inline-block;
  transition: all 0.3s ease;
  height: 42px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
}

.hero-content .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Text animation keyframes */
@keyframes textFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animations only when slide is active */
.slide.active .hero-content h1 {
  animation: textFadeInUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.3s;
}

.slide.active .hero-content p {
  animation: textFadeInUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.5s;
}

.slide.active .hero-content .btn {
  animation: textFadeInUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.7s;
}

.slider-arrow{ 
  position:absolute; 
  top:50%; 
  transform:translateY(-50%); 
  background:rgba(0,0,0,0.5); 
  color:#fff; 
  border:none; 
  font-size:24px; 
  padding:12px 16px; 
  cursor:pointer; 
  z-index:10; 
  border-radius:4px;
  transition: all 0.3s ease;
}
.slider-arrow.prev{ left:14px; }
.slider-arrow.next{ right:14px; }
.slider-arrow:hover{ 
  background:rgba(0,0,0,0.8);
  transform: translateY(-50%) scale(1.1);
}

/* ===== OPTIONAL SLIDER DOT INDICATORS ===== */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 15;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.2);
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
} 

/* featured category card */
.featured-category-overlay::before {
  content: "";
  position: absolute;
  inset: 0; /* cover full card */
  padding: 8px; /* thickness of border */
  border-radius: 2px;
  background: linear-gradient(
    270deg,
    #ff00ff,
    #d13b52,
    #ff9900,
    #e6cf3c
  );
  background-size: 800% 800%;
  animation: moveGradient 8s linear infinite;
  
  /* Mask so only border shows */
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@keyframes moveGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* featured category card */
/* video container */
.video-container::before {
  content: "";
  position: absolute;
  inset: 0; /* cover full card */
  padding: 8px; /* thickness of border */
  border-radius: 2px;
  background: linear-gradient(
    270deg,
    #ff00ff,
    #d13b52,
    #ff9900,
    #e6cf3c
  );
  background-size: 800% 800%;
  animation: moveGradient 8s linear infinite;
  
  /* Mask so only border shows */
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@keyframes moveGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* video container */

.cat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:14px; }
.cat-card{ background:var(--card); padding:0; border-radius:4px; text-align:center; text-decoration:none; color:var(--text); box-shadow:0 2px 8px rgba(0,0,0,0.04); font-weight:700; aspect-ratio:4/3; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.featured h2, .categories h2{ margin-top:0; margin-bottom:30px; text-align:center; }
.product-grid{ display:grid; margin-bottom: 20px; grid-template-columns:repeat(4,1fr); gap:30px; margin-left:auto; margin-right:auto; padding:0; max-width:1320px; }
/* .product-display-wrapper::before { content: ""; position: absolute; inset: 0; clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); border: 3px solid #ff6600; /* orange outline */ 
/* pointer-events: none;  }   */

.product-display-wrapper{  background:transparent; border: 2px solid #ff6600; display:flex;  
   /* flex-direction:column; text-decoration:none; color:inherit; padding:0;  */
   background:transparent; margin:0; }
.product-display-wrapper .price{ margin:0; font-size:14px; color:var(--accent); font-weight:700; }
.product{ display:flex; flex-direction:column; text-decoration:none; color:inherit; }
.product img{ width:100%; height:280px; object-fit:cover; display:block; }
.product h3{ margin:10px 0 4px 0; font-size:13px; font-weight:600; color:#333; }
.product .price{ margin:0; font-size:13px; color:var(--accent); font-weight:700; }
.product-image-link{ display:block; text-decoration:none; width:100%; height:100%; overflow:hidden; margin:0; padding:0; }
.product-image-link img{ width:100%; height:100%; object-fit:cover; display:block; margin:0; padding:0; }
.product-card-with-actions { padding: 0; background:transparent; margin:0; }
.product-card-image-wrapper img { padding: 0; }

.featured .product-display-wrapper { padding: 0; background:transparent; }
.featured-product-card {  padding:0; margin:0; border:none; box-shadow:none; }
.product-card-image-wrapper { padding:0; margin:0; background:#f5f5f5; overflow:hidden; position:relative; aspect-ratio:3/4; }
.product-card-image-wrapper img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.product-card-image-wrapper:hover img { transform:scale(1.05); }
.latest-products .product-display-wrapper { padding: 0; background:transparent; }
.latest-product-card { background:transparent; padding:0; margin:0; border:none; box-shadow:none; position:relative; overflow:hidden; 
    /* diagonal cut shape: bottom-right corner slanted  */
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); 
}
.featured-product-card { /* also apply shape to featured cards */
    position: relative; overflow:hidden;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%); 
 } 
.latest-product-card .product-card-image-wrapper { aspect-ratio:3/4; width:100%; height:100%; }
.latest-product-card .product-card-image-wrapper img { transition:transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); object-fit:cover; width:100%; height:100%; }
.latest-product-card:hover .product-card-image-wrapper img { transform:scale(1.05); }
.featured-product-card .product-card-image-wrapper img { object-fit:cover; width:100%; height:100%; }
.product-info{ padding:0; }
.product-info h3{ margin:12px 0 6px 0; font-size:15px; font-weight:600; color:#333; }
.product-info .price{ margin:0; font-size:14px; color:var(--accent); font-weight:700; }
.price{ color:var(--accent); font-weight:700; }
.newsletter{ background:#fff; padding:18px; margin-top:30px; border-radius:8px; text-align:center; }
.nl-form{ display:flex; gap:8px; justify-content:center; margin-top:12px; }
.nl-form input{ padding:10px 12px; border-radius:6px; border:1px solid #e6e6e6; width:320px; }
.site-footer{ background:#fff; padding:24px 18px; border-top:1px solid #eee; margin-top:auto; }
.site-footer .foot-grid{ display:flex; justify-content:space-between; max-width:1100px; margin:0 auto; }
.muted{ color:var(--muted); }
/* Marquee Animation */
@keyframes marquee-scroll {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}
.marquee-banner {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
  overflow: hidden;
}
.marquee-content {
  padding: 16px 0;
  white-space: nowrap;
  will-change: transform;
}
/* Modal Styles */
.modal{ display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.5); z-index:100; justify-content:center; align-items:center; }
.modal-content{ background:#fff; padding:24px; border-radius:8px; max-width:600px; width:90%; max-height:90vh; overflow-y:auto; box-shadow:0 8px 24px rgba(0,0,0,0.15); }
.modal-close{ float:right; font-size:28px; font-weight:bold; cursor:pointer; color:#999; }
.modal-close:hover{ color:#000; }
.modal h2{ margin-bottom:14px; }
.modal h4{ margin-top:14px; margin-bottom:8px; }
@media (max-width:800px){
  .hero{ flex-direction:column; text-align:center; }
  .hero-image img{ max-width:300px; }
  .site-nav{ padding:10px; }
  .nav-links{ display:none; }
}

/* Make category */
.categories, .featured {
  position: relative;
  padding: 40px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.categories .cat-grid, .featured .product-grid {
  display: grid;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
  padding: 0 20px;
}

/* ensure headings align to the left edge of the inner grid */
.categories h2, .featured h2 { text-align: center; padding-top: 50px; margin-left: auto; margin-right: auto; }

/* Marquee Scrolling Text Banner */
@keyframes scroll-left-marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.marquee-banner {
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 50;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation-timing-function: linear;
  letter-spacing: 1px;
}

/* Product Detail Page Styling */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  margin-top: 18px;
}

.product-detail > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#mainProductImage {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 8px;
}

.product-gallery img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid #ddd;
  transition: border-color 0.3s ease;
}

.product-gallery img.active {
  border-color: #F07E2D;
}

@media (max-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
  
  #mainProductImage {
    height: 400px;
  }
}

@media (max-width:600px){
  .categories, .featured { padding: 18px 10px; }
  .categories .cat-grid, .featured .product-grid { grid-template-columns: repeat(2, 1fr); }
  .latest-products .product-grid { grid-template-columns: repeat(2, 1fr); }
  .latest-products .product img { height: 160px; }
  .container { padding: 0 10px; }
}

/* Back to Top Button */
#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #F07E2D;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

#backToTopBtn:hover {
  background: #d16a95;
  transform: translateY(-3px);
}

#backToTopBtn.show {
  display: block;
}

/* Info Cards Animation */
.info-card {
  transform: translateY(0);
}

/* Featured Categories Hover Effect */
.featured-category img {
  transition: transform 0.4s ease;
}

.featured-category:hover img {
  transform: scale(1.05);
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  box-sizing: border-box;
}

.carousel-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  background: #f0f0f0;
}

.carousel-slide-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.carousel-item {
  min-width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.carousel-item-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.carousel-item-content h3 {
  font-size: 36px;
  margin-bottom: 16px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-btn-shop {
  background: #F07E2D;
  color: #fff;
  padding: 12px 32px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  font-weight: 600;
  transition: background 0.3s ease;
}

.carousel-btn-shop:hover {
  background: #c76b8a;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #333;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn-prev {
  left: -70px;
}

.carousel-btn-next {
  right: -70px;
}

.carousel-dots {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #F07E2D;
  width: 32px;
  border-radius: 6px;
}

.carousel-dot:hover {
  background: #ccc;
}

/* Category Carousel Styles (4 items) */
.category-carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  position: relative;
  max-width: 1200px;
  margin: auto;
  /* padding: 0 7px; */
  box-sizing: border-box;
}

.category-carousel-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

.category-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.category-carousel-card {
  flex: 0 0 25%;
  min-width: 25%;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.category-carousel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.category-carousel-image {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
  box-sizing: border-box;
}

.category-carousel-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.category-carousel-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: transparent;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  z-index: 2;
}

.category-carousel-label h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.category-carousel-arrow {
  font-size: 28px;
  color: #fff;
  font-weight: 700;
  transition: transform 0.3s ease;
  display: inline-block;
  width: fit-content;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.category-carousel-card:hover .category-carousel-arrow {
  transform: translateX(4px);
}

.category-carousel-btn {
  display: none !important;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #333;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  flex-shrink: 0;
}

.category-carousel-btn:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: scale(1.1);
}

.category-carousel-btn-prev {
  margin-right: -25px;
}

.category-carousel-btn-next {
  margin-left: -25px;
}

/* Latest Products Section */
.latest-products {
  background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
  border-radius: 8px;
  
  display: flex;
  flex-direction: column;
  align-items: center;
}

.latest-products .section-header {
  margin-bottom: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.latest-products .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 275px);
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
    padding: 0 20px;
 
}

.latest-products .product {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.latest-products .product img {
  width: 100%;
  height: 275px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
  padding: 0;
}

.latest-products .product h3 {
  margin: 12px 0 6px 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.latest-products .product .price {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #F07E2D;
}

/* Video Modal Styling */
.video-modal {
  animation: fadeIn 0.3s ease-in-out;
}

.video-modal.active {
  display: flex !important;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.video-modal-content {
  animation: slideUp 0.3s ease-in-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.video-modal-close:hover {
  background: rgba(0, 0, 0, 0.8) !important;
  transform: scale(1.1);
}

.video-thumbnail {
  transition: all 0.3s ease;
  width: 100%;
  max-width: 1000px;
  max-width: var(--content-width);
  height: 500px;
  margin: 0 auto;
}

.video-thumbnail:hover {
  box-shadow: 0 12px 40px rgba(225, 123, 169, 0.3);
}

.video-play-button:hover {
  background: rgba(225, 123, 169, 1) !important;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px rgba(225, 123, 169, 0.6);
}

/* Footer Styling */
.site-footer {
  color: #fff;
  padding: 50px 15px;
  background: #fff;
  border-top: 1px solid #eee;
  margin-top: auto;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h3 {
  margin: 0 0 14px 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 14px;
}

.footer-column a {
  color: #ff9dc9;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ff9fc0;
}

.footer-column input[type="email"] {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #555;
  background: #333;
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
}

.footer-column input[type="email"]::placeholder {
  color: #999;
}

.footer-column button {
  background: #F07E2D;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.3s ease;
}

.footer-column button:hover {
  background: #c76b8a;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer {
    padding: 50px 12px;
  }

  .hero { min-height: 320px; }
  .slider { min-height: 320px; }

  .hero-content {
    max-width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 20px;
  }

  .categories .cat-grid, .featured .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .latest-products .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .latest-products .product img {
    height: 200px;
  }

  .search-form {
    max-width: 250px;
  }

  .nav-right {
    gap: 8px;
  }

  #languageSelect,
  #currencySelect {
    font-size: 11px;
    padding: 3px 5px;
  }
}

/* Info Cards SVG Icon Styling */
.info-card {
  display: flex;
  gap: 20px;
}

.info-icon {
  color: #333;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  cursor: pointer;
  width: 48px;
  height: 48px;
}

.info-icon:hover {
  color: #F07E2D;
  transform: translateY(-8px);
}

.info-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  transition: stroke 0.3s ease;
}

.info-icon:hover svg {
  stroke: #F07E2D;
}

.info-card svg {
  display: block;
}

/* header tag  */

/* New Header Styles - Phase 8 */
.search-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.search-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  padding: 8px;
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon-btn:hover {
  transform: scale(1.1);
}

.search-form {
  display: none;
  gap: 8px;
  align-items: center;
  width: 100%;
  max-width: 300px;
  animation: slideDown 0.3s ease;
}

.search-form.active {
  display: flex;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-form input {
  padding: 8px 10px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  font-size: 13px;
  flex: 1;
}

.search-form input:focus {
  outline: none;
  border-color: #F07E2D;
}

.search-form button {
  padding: 8px 14px;
  background: #F07E2D;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.search-form button:hover {
  background: #c76b8a;
}

/* Dropdown Styles for Language and Currency */
#languageSelect,
#currencySelect {
  background: #1a1a1a;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  outline: none;
  padding: 4px 6px;
  border-radius: 3px;
  transition: all 0.2s ease;
}

#languageSelect:hover,
#currencySelect:hover {
  background: #333;
}

#languageSelect:focus,
#currencySelect:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

#languageSelect option,
#currencySelect option {
  background: #1a1a1a;
  color: #fff;
}

/* User Icon Button */
.user-btn {
  font-size: 18px;
  padding: 8px;
  transition: transform 0.2s ease;
}

.user-btn:hover {
  transform: scale(1.1);
}

/* Responsive adjustments for header */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .search-form {
    max-width: 250px;
  }

  .nav-right {
    gap: 8px;
  }

  #languageSelect,
  #currencySelect {
    font-size: 11px;
    padding: 3px 5px;
  }
}

@media (max-width: 480px) {
  .nav-right {
    gap: 6px;
  }

  .search-icon-btn,
  .user-btn {
    font-size: 16px;
    padding: 6px;
  }

  #languageSelect,
  #currencySelect {
    font-size: 10px;
    padding: 2px 4px;
  }
}

/* LOGO- ICON-SECTION */
.logo-block {
  text-align: center;
  margin: 20px;
  cursor: pointer;
  display: flex;
  margin: 5%;
  background: linear-gradient(135deg, #F07E2D 0%, #FF9B5A 100%);
  border-radius: 12px;
  padding: 30px 0;
  box-shadow: 0 4px 15px rgba(240, 126, 45, 0.2);
}

.logo-icon {
  font-size: 80px;
  color: #ffffff;
  transition: color 0.3s ease;
}
.logo-icon img {
  max-height: 80px;
  max-width: 100%;
}
.logo-label {
  font-size: 16px;
  margin-top: 8px;
  color: #ffffff;
  font-weight: 600;
}

.icon:hover .logo-icon {
  color: #fff4e6; 
}
.icon:hover .logo-label {
  color: #fff4e6;
}
.logo-icon
{
padding: 10px; 
margin: 50px;
margin-bottom: 2px;
}

/* ===== COLOR SWATCHES STYLES ===== */
.color-swatches-container {
  margin: 16px 0;
  padding: 12px;
  background: #f9f9f9;
  border-radius: 6px;
}

.color-swatches-container strong {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-size: 14px;
}

.color-swatches-grid {
  padding-top: 9px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.color-swatch {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #ddd;
  transition: all 0.3s ease;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.color-swatch:hover {
  transform: scale(1.1);
  border-color: #999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.color-swatch.active {
  border-color: #F07E2D;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #F07E2D;
  transform: scale(1.15);
}

.color-swatch[data-color-name]::after {
  content: attr(data-color-name);
  position: absolute;
  bottom: -25px;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
}

.color-swatch:hover::after {
  bottom: -18px;
  opacity: 1;
}

/* ===== PRODUCT ACTIONS STYLES ===== */
.product-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.action-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #F07E2D;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #F07E2D;
}

.action-icon-btn:hover {
  background: #F07E2D;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(225, 123, 169, 0.3);
}

.action-icon-btn.active {
  background: #F07E2D;
  color: #fff;
}

.action-icon-btn.wishlist-btn {
  border-color: #F07E2D;
  color: #F07E2D;
}

.action-icon-btn.wishlist-btn.active {
  background: #F07E2D;
  color: #fff;
}

.action-icon-btn.cart-btn {
  border-color: #667eea;
  color: #667eea;
}

.action-icon-btn.cart-btn:hover {
  background: #667eea;
  color: #fff;
  border-color: #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.product-action-label {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  margin-top: 4px;
}

/* Product display wrapper - container for card + info */
.product-display-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Product info positioned outside the card */
.product-info-outside {
  padding: 0;
  background: transparent;
  justify-content: center;
}

/* Product card with action icons */
.product-card-with-actions {
  position: relative;
  background: #fff;
  border-radius: 0px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
}

.product-card-with-actions:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-card-image-wrapper {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3/4;
}

.product-card-image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  margin: 0;
  padding: 0;
}

.product-card-with-actions:hover .product-card-image-wrapper img {
  transform: scale(1.05);
}

.product-quick-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.product-card-with-actions:hover .product-quick-actions {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.quick-action-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.quick-action-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quick-action-btn.wishlist {
  color: #F07E2D;
}

.quick-action-btn.wishlist.active {
  background: #F07E2D;
  color: #fff;
}

.quick-action-btn.cart {
  color: #667eea;
}

.product-info-section {
  padding: 15px;
}

.product-info-section h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
}

.product-info-section .price {
  margin: 6px 0 0 0;
}

/* Responsive for swatches */
@media (max-width: 1199px) {
  .container { padding: 0 12px; }
  
  .hero { min-height: 420px; }
  .slider { min-height: 420px; }

  .categories .cat-grid, .featured .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .latest-products .product-grid {
    grid-template-columns: repeat(3, 1fr);
    
  }

  .latest-products .product img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .color-swatch {
    width: 42px;
    height: 42px;
  }
  
  .product-quick-actions {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    margin-top: 10px;
    flex-direction: row;
    justify-content: center;
  }
  
  .product-card-with-actions:hover .product-quick-actions {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .color-swatch {
    width: 38px;
    height: 38px;
  }
  
  .action-icon-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

/* Blog Sidebar Styles */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: sticky;
  top: 20px;
}

.sidebar-widget {
  background: #fff;
  padding: 30px 25px;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #f0f0f0;
}

.sidebar-widget h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
}

.sidebar-widget h3::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 40px;
  height: 2px;
  background: #F07E2D;
}

/* Search Widget */
.search-widget .search-form {
  display: flex;
  gap: 0;
}

.search-widget input[type="text"] {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.search-widget button {
  padding: 12px 20px;
  background: #F07E2D;
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.search-widget button:hover {
  background: #c76b8a;
}

/* Categories Widget */
.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget li {
  margin-bottom: 14px;
}

.categories-widget li:last-child {
  margin-bottom: 0;
}

.categories-widget a {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  font-size: 14px;
  transition: color 0.3s;
  font-weight: 500;
}

.categories-widget a:hover {
  color: #F07E2D;
}

.category-count {
  color: #999;
  font-size: 13px;
}

/* Recent Posts Widget */
.recent-posts-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-posts-widget li {
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-posts-widget li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-posts-widget a {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s;
}

.recent-posts-widget a:hover {
  transform: none;
}

.recent-posts-widget img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.recent-posts-widget .post-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recent-posts-widget .post-info h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.4;
  color: #333;
}

.recent-posts-widget .post-info span {
  font-size: 12px;
  color: #999;
}

/* Tags Widget */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-cloud-item {
  display: inline-block;
  padding: 6px 12px;
  background: #f5f5f5;
  color: #666;
  text-decoration: none;
  border-radius: 16px;
  font-size: 12px;
  transition: all 0.3s;
  border: 1px solid #e8e8e8;
  font-weight: 500;
}

.tag-cloud-item:hover {
  background: #F07E2D;
  color: #fff;
  border-color: #F07E2D;
  transform: translateY(-1px);
}

/* Blog List Layout - Matching Demo */
.blog-page-wrapper {
  background: #fff;
  padding: 60px 0;
  min-height: calc(100vh - 300px);
}

.blogs-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 80px;
}

.blog-post-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 80px;
  margin-bottom: 0;
  transition: all 0.3s;
}

.blog-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-post-item:hover {
  box-shadow: none;
  transform: none;
}

.blog-post-item:hover .blog-post-image {
  transform: scale(1.03);
}

.blog-post-image-link {
  flex-shrink: 0;
  width: 100%;
  height: 350px;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
}

.blog-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

/* Image Orientation Styles */
.blog-image-landscape {
  min-height: 380px;
  aspect-ratio: 16/9;
}

.blog-image-portrait {
  min-height: 500px;
  aspect-ratio: 3/4;
}

.blog-image-square {
  min-height: 500px;
  aspect-ratio: 1/1;
}

/* Size-specific height adjustments */
.blog-image-small.blog-image-landscape {
  min-height: 250px;
}

.blog-image-small.blog-image-portrait {
  min-height: 350px;
}

.blog-image-small.blog-image-square {
  min-height: 350px;
}

.blog-image-large.blog-image-landscape {
  min-height: 450px;
}

.blog-image-large.blog-image-portrait {
  min-height: 600px;
}

.blog-image-large.blog-image-square {
  min-height: 600px;
}

.blog-post-image-link:hover .blog-post-image {
  transform: scale(1.03);
}

.blog-post-content {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.blog-post-category {
  display: inline-block;
  background: #F07E2D;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 20px;
  width: fit-content;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
  letter-spacing: 0.5px;
}

.blog-post-category:hover {
  background: #c76b8a;
}

.blog-post-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.35;
  color: #000;
}

.blog-post-title a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-post-title a:hover {
  color: #F07E2D;
}

.blog-post-meta {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #999;
  margin-bottom: 25px;
  padding-bottom: 0;
  border-bottom: none;
}

.blog-post-meta a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.blog-post-meta a:hover {
  color: #F07E2D;
}

.blog-post-excerpt {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  flex: 1;
}

.read-more-link {
  display: inline-block;
  color: #F07E2D;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  align-self: flex-start;
}

.read-more-link:hover {
  color: #c76b8a;
  text-decoration: underline;
}

/* Blog Card Updates for Demo Match */
.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s;
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.blog-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #ecf0f1;
}

.blog-card-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-category {
  display: inline-block;
  background: #F07E2D;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
  width: fit-content;
  text-transform: uppercase;
}

.blog-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2c3e50;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  flex: 1;
  line-height: 1.6;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #999;
  padding-top: 15px;
  border-top: 1px solid #ecf0f1;
}

/* Responsive Blog Sidebar */
@media (max-width: 992px) {
  .blog-content-wrapper,
  .blog-page-container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  
  .blog-sidebar {
    margin-top: 40px;
  }
  
  .blog-post-item {
    flex-direction: column;
  }
  
  .blog-post-image-link,
  .blog-image-link-small,
  .blog-image-link-medium,
  .blog-image-link-large {
    width: 100% !important;
    height: 250px;
  }
  
  .blog-post-image,
  .blog-image-landscape,
  .blog-image-portrait,
  .blog-image-square {
    min-height: 250px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .blog-post-content {
    padding: 0;
  }
  
  .blog-post-title {
    font-size: 20px;
  }
  
  .blog-post-meta {
    font-size: 12px;
    gap: 10px;
  }
  
  .blog-post-excerpt {
    font-size: 14px;
  }
  
  .blogs-list {
    gap: 30px;
  }
  
  .blog-post-item {
    padding-bottom: 30px;
  }
}

/* ===== SEO MANAGER PLUGIN STYLES ===== */
.seo-manager-widget {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.seo-manager-widget::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.seo-manager-widget:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.seo-manager-widget h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.seo-manager-widget p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.seo-manager-widget-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.seo-feature {
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.seo-feature-icon {
  font-size: 18px;
  margin-bottom: 4px;
  display: block;
}

.seo-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-top: 15px;
  position: relative;
  z-index: 1;
}

.seo-score-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 700;
  font-size: 24px;
  margin-right: 15px;
}

.seo-score-indicator.excellent {
  background: #22c55e;
  color: #fff;
}

.seo-score-indicator.good {
  background: #f59e0b;
  color: #fff;
}

.seo-score-indicator.warning {
  background: #ef4444;
  color: #fff;
}

/* SEO Console Menu Integration */
.console-seo-section {
  padding: 20px 0;
  border-top: 1px solid #e9ecef;
  margin-top: 20px;
}

.console-seo-section h3 {
  font-size: 14px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.console-seo-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.console-seo-menu li {
  margin-bottom: 8px;
}

.console-seo-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: #667eea;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s;
  font-size: 13px;
  font-weight: 500;
}

.console-seo-menu a:hover {
  background: #f0f4ff;
  padding-left: 16px;
}

.console-seo-menu a::before {
  content: 'â†’';
  font-weight: 700;
}

/* SEO Recommendations Panel */
.seo-recommendations {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.seo-recommendations-title {
  font-weight: 700;
  color: #d97706;
  margin-bottom: 12px;
}

.seo-recommendations-list {
  list-style: none;
  padding: 0;
}

.seo-recommendations-list li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #92400e;
  padding-left: 20px;
  position: relative;
}

.seo-recommendations-list li::before {
  content: 'âš¡';
  position: absolute;
  left: 0;
}

/* SEO Quick Stats */
.seo-quick-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.seo-stat-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 2px solid #e9ecef;
  transition: all 0.3s;
}

.seo-stat-card:hover {
  border-color: #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.seo-stat-label {
  font-size: 12px;
  color: #7f8c8d;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.seo-stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #667eea;
}

.seo-stat-change {
  font-size: 12px;
  margin-top: 8px;
}

.seo-stat-change.positive {
  color: #22c55e;
}

.seo-stat-change.negative {
  color: #ef4444;
}

/* Responsive SEO Styles */
@media (max-width: 768px) {
  .seo-manager-widget-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .seo-quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .analytics-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Hide the top Google Translate bar */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

/* Optional: Hide the "Powered by Google" text for a cleaner look */
.goog-logo-link {
    display: none !important;
}
.goog-te-gadget {
    color: transparent !important;
}
