/* ============================================
   PCC Official Store - Custom Styles
   ============================================ */

/* Color Variables */
:root {
  --pcc-green: #75A640;
  --pcc-green-hover: #659335;
  --pcc-green-light: #8FBF57;
  --pcc-gray-bg: #E8E8E8;
  --pcc-light-gray: #F0F0F0;
  --pcc-white: #FFFFFF;
  --pcc-text-dark: #333333;
  --pcc-border: #E0E0E0;
}

/* ============================================
   Reset and Override External Styles
   ============================================ */

body {
  overflow-x: hidden !important;
  background-color: var(--pcc-light-gray) !important;
}

/* Override hero.css and other external styles */
body .pcc-header,
body header.pcc-header {
  background-color: var(--pcc-green) !important;
  background-image: none !important;
  padding: 15px 0 !important;
  margin: 0 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  display: block !important;
}

body .category-nav,
body section.category-nav {
  background-color: var(--pcc-light-gray) !important;
  background-image: none !important;
  padding: 40px 0 !important;
  margin: 0 !important;
  display: block !important;
}

/* ============================================
   Back to Main Link
   ============================================ */

.back-to-main {
  background-color: var(--pcc-light-gray) !important;
  padding: 10px 0 !important;
}

.back-link {
  color: var(--pcc-green) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: opacity 0.3s ease !important;
  width: auto !important;
}

.back-link:hover {
  opacity: 0.7 !important;
  color: var(--pcc-green) !important;
}

.back-link .icon {
  font-size: 14px !important;
}

/* ============================================
   Header Styles
   ============================================ */

.pcc-header {
  background-color: var(--pcc-green);
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 15px !important;
  margin: 0 auto;
  padding: 0;
}

.header-left {
  flex: 0 1 auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  transition: opacity 0.3s ease !important;
}

.header-left:hover {
  opacity: 0.9 !important;
}

.pcc-logo {
  width: 50px !important;
  height: auto !important;
  display: block !important;
  flex-shrink: 0 !important;
}

.header-text {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.header-brand {
  color: var(--pcc-white) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.header-subtitle {
  color: var(--pcc-white) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.header-right {
  flex: 0 0 auto !important;
}

.cart-link {
  color: var(--pcc-white) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: opacity 0.3s ease !important;
}

.cart-link:hover {
  opacity: 0.85 !important;
  color: var(--pcc-white) !important;
}

.cart-link .icon {
  font-size: 16px !important;
}

/* ============================================
   Category Navigation
   ============================================ */

.category-nav {
  background-color: var(--pcc-light-gray);
  padding: 40px 0;
}

.category-buttons {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 30px !important;
  flex-wrap: wrap !important;
  margin: 0 auto;
  padding: 0 20px;
}

.category-button {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 180px !important;
  height: 180px !important;
  background-color: var(--pcc-green) !important;
  border: 3px solid var(--pcc-green) !important;
  border-radius: 30px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  padding: 8px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.category-button:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 6px 16px rgba(117, 166, 64, 0.3) !important;
  background-color: var(--pcc-green-hover) !important;
}

.category-button:hover .category-label {
  color: var(--pcc-white) !important;
}

.category-icon {
  width: 100% !important;
  height: 120px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 10px !important;
  overflow: hidden !important;
}

.category-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background-image: none !important;
  background-color: #FFF;
  padding: 5px;
  border-radius: 20px 20px 0 0 !important;
  box-shadow: inset 0px 2px 2px rgba(30,30,30,0.6);
}

.category-icon svg {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 10px 10px 0 0 !important;
}

.category-label {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--pcc-white) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: color 0.3s ease !important;
}

/* ============================================
   Category Sections
   ============================================ */

.category-section {
  padding: 40px 0;
  scroll-margin-top: 20px;
  background-color: var(--pcc-light-gray) !important;
}

.category-header {
  background-color: var(--pcc-gray-bg);
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.category-title {
  color: var(--pcc-green);
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================
   Product Cards
   ============================================ */

.product-card {
  background-color: var(--pcc-white) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
}

.product-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-3px) !important;
}

.product-link {
  display: block;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 8px;
}

.product-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

.product-title-link {
  text-decoration: none;
  display: block;
  transition: opacity 0.3s ease;
}

.product-title-link:hover {
  opacity: 0.8;
}

.product-title {
  color: var(--pcc-green);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px 0;
  line-height: 1.4;
  min-height: 44px;
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px 0;
}

.product-compare-price {
  color: #999;
  font-size: 16px;
  font-weight: 500;
  text-decoration: line-through;
  margin: 0;
}

.product-compare-price:empty {
  display: none;
}

.product-price {
  color: var(--pcc-text-dark);
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.add-to-cart-button {
  background-color: var(--pcc-green) !important;
  color: var(--pcc-white) !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 12px 20px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease !important;
  width: 100%;
  margin-top: auto;
}

.add-to-cart-button:hover {
  background-color: var(--pcc-green-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(117, 166, 64, 0.4) !important;
}

.add-to-cart-button:active {
  transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablets and below */
@media screen and (max-width: 1023px) {
  .store-title {
    font-size: 16px;
  }

  .category-button {
    width: 150px;
    height: 150px;
  }

  .category-icon {
    width: 60px;
    height: 60px;
  }

  .category-label {
    font-size: 18px;
  }

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

/* Mobile */
@media screen and (max-width: 768px) {
  .pcc-header {
    padding: 12px 0;
  }

  .header-content {
    flex-direction: row !important;
    text-align: left !important;
    justify-content: space-between !important;
  }

  .store-title {
    font-size: 14px;
  }

  .pcc-logo {
    width: 40px;
  }

  .header-brand {
    font-size: 12px !important;
  }

  .header-subtitle {
    font-size: 10px !important;
  }

  .cart-link {
    font-size: 12px;
  }

  .cart-link span:not(.icon) {
    display: none !important;
  }

  .category-nav {
    padding: 8px 0 !important;
  }

  .category-buttons {
    gap: 10px !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
  }

  .category-button {
    width: 100px !important;
    height: 100px !important;
    border-radius: 15px !important;
    padding: 8px !important;
    flex-shrink: 0 !important;
  }

  .category-icon {
    width: 100% !important;
    height: 60px !important;
    margin-bottom: 4px !important;
    overflow: hidden !important;
  }

  .category-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background-image: none !important;
    background-color: #FFF;
    padding: 5px;
    border-radius: 10px 10px 0 0 !important;
    box-shadow: inset 0px 2px 2px rgba(30,30,30,0.6);
  }

  .category-icon svg {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  .category-label {
    font-size: 11px !important;
    letter-spacing: 0.3px !important;
  }

  .category-section {
    padding: 30px 0;
  }

  .category-title {
    font-size: 20px;
  }

  .product-card {
    flex-direction: row !important;
    padding: 12px !important;
    gap: 12px !important;
  }

  .product-link {
    flex-shrink: 0;
    width: 100px !important;
    height: 100px !important;
    margin-bottom: 0 !important;
    margin-right: 0 !important;
  }

  .product-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
  }

  .product-title {
    font-size: 13px !important;
    min-height: auto !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
  }

  .product-pricing {
    margin-bottom: 8px !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .product-price {
    font-size: 18px !important;
    font-weight: 700 !important;
  }

  .product-compare-price {
    font-size: 13px !important;
  }

  .add-to-cart-button {
    font-size: 11px !important;
    padding: 8px 12px !important;
    margin-top: auto;
  }
}

/* Small mobile */
@media screen and (max-width: 480px) {
  .category-nav {
    padding: 6px 0 !important;
  }

  .category-buttons {
    gap: 8px !important;
  }

  .category-button {
    width: 95px !important;
    height: 95px !important;
    padding: 8px !important;
  }

  .category-icon {
    height: 55px !important;
  }

  .category-label {
    font-size: 10px !important;
  }
}

/* ============================================
   Smooth Scroll
   ============================================ */

html {
  scroll-behavior: smooth;
}

/* ============================================
   Utility Classes
   ============================================ */

.pcc-header .container,
.category-nav .container {
  margin: 0 auto !important;
  padding: 0 1.5rem !important;
}

@media screen and (min-width: 1024px) {
  .pcc-header .container,
  .category-nav .container {
    padding: 0 !important;
  }
}

/* ============================================
   Product Page Styles
   ============================================ */

.product-page {
  background-color: var(--pcc-white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 1.5rem;
}

.product-image-container {
  background-color: var(--pcc-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   Product Image Carousel
   ============================================ */

/* Main Carousel */
.product-carousel-main {
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--pcc-white);
  aspect-ratio: 1;
}

.product-carousel-main .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pcc-white);
}

.product-carousel-main .splide__slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 600px;
}

/* Navigation Arrows */
.product-carousel-main .splide__arrow {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--pcc-border);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.product-carousel-main .splide__arrow:hover {
  background: var(--pcc-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product-carousel-main .splide__arrow svg {
  fill: var(--pcc-green);
  width: 20px;
  height: 20px;
}

.product-carousel-main .splide__arrow--prev {
  left: 10px;
}

.product-carousel-main .splide__arrow--next {
  right: 10px;
}

/* Thumbnail Navigation */
.product-thumbnails {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.product-thumbnails .thumbnail-item {
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  width: 60px;
  height: 60px;
}

.product-thumbnails .thumbnail-item:hover {
  opacity: 1;
}

.product-thumbnails .thumbnail-item.is-active {
  opacity: 1;
}

.product-thumbnails .thumbnail-wrapper {
  background-color: var(--pcc-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  height: 100%;
}

.product-thumbnails .thumbnail-item:hover .thumbnail-wrapper {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-thumbnails .thumbnail-item.is-active .thumbnail-wrapper {
  border-color: var(--pcc-green);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-thumbnails .thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile pagination dots */
.product-carousel-main .splide__pagination {
  bottom: 15px;
}

.product-carousel-main .splide__pagination__page {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--pcc-border);
  width: 10px;
  height: 10px;
  margin: 0 4px;
}

.product-carousel-main .splide__pagination__page.is-active {
  background: var(--pcc-green);
  border-color: var(--pcc-green);
  transform: scale(1.2);
}

/* Single image mode - no carousel UI */
.product-carousel-main.single-image-mode .splide__arrows,
.product-carousel-main.single-image-mode .splide__pagination {
  display: none;
}

/* ============================================
   Product Image Carousel - Mobile
   ============================================ */
@media screen and (max-width: 768px) {
  .product-carousel-main .splide__slide img {
    max-height: 400px;
  }

  .product-thumbnails {
    margin-top: 10px;
    gap: 8px;
  }

  .product-thumbnails .thumbnail-item {
    width: 45px;
    height: 45px;
  }
}

@media screen and (max-width: 480px) {
  .product-carousel-main .splide__slide img {
    max-height: 300px;
  }

  .product-thumbnails .thumbnail-wrapper {
    border-radius: 6px;
  }
}

.product-details {
  padding-left: 20px;
}

.product-page-title {
  color: var(--pcc-green);
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.product-page-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px 0;
}

.product-page-compare-price {
  color: #999;
  font-size: 20px;
  font-weight: 500;
  text-decoration: line-through;
  margin: 0;
}

.product-page-compare-price:empty {
  display: none;
}

.product-page-price {
  color: var(--pcc-text-dark);
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.product-variant-selector {
  margin-bottom: 25px;
}

.product-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 30px;
}

.product-action-button {
  border-radius: 8px !important;
  padding: 14px 24px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease !important;
  flex: 1;
}

.product-buy-now {
  background-color: var(--pcc-green) !important;
  color: var(--pcc-white) !important;
  border: none !important;
}

.product-buy-now:hover {
  background-color: var(--pcc-green-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(117, 166, 64, 0.4) !important;
}

.product-buy-now:active {
  transform: translateY(0);
}

.product-add-to-cart {
  background-color: var(--pcc-white) !important;
  color: var(--pcc-green) !important;
  border: 2px solid var(--pcc-green) !important;
}

.product-add-to-cart:hover {
  background-color: rgba(117, 166, 64, 0.1) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(117, 166, 64, 0.2) !important;
}

.product-add-to-cart:active {
  transform: translateY(0);
}

.product-description {
  color: var(--pcc-text-dark);
  font-size: 15px;
  line-height: 1.6;
  padding-top: 20px;
  border-top: 1px solid var(--pcc-border);
}

.product-description h1,
.product-description h2,
.product-description h3 {
  color: var(--pcc-green);
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}

.product-description ul,
.product-description ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.product-description p {
  margin-bottom: 15px;
}

/* Product Page - Mobile */
@media screen and (max-width: 768px) {
  .product-page {
    padding: 20px;
    margin-top: 1rem;
  }

  .product-details {
    padding-left: 0;
    margin-top: 20px;
  }

  .product-page-title {
    font-size: 24px;
  }

  .product-page-price {
    font-size: 22px;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-action-button {
    font-size: 13px !important;
    padding: 12px 20px !important;
  }

  .product-description {
    font-size: 14px;
  }
}

/* ============================================
   Loading Skeletons & Placeholders
   ============================================ */

/* Shimmer animation for loading states */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.skeleton {
  animation: shimmer 2s infinite linear;
  background: linear-gradient(
    to right,
    #f0f0f0 0%,
    #e8e8e8 20%,
    #f0f0f0 40%,
    #f0f0f0 100%
  );
  background-size: 1000px 100%;
  border-radius: 8px;
}

/* Hide content while loading */
.loading-hidden {
  display: none !important;
}

/* Category button skeleton */
.category-button-skeleton {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 180px !important;
  height: 180px !important;
  background-color: #f0f0f0 !important;
  border: 3px solid #e0e0e0 !important;
  border-radius: 30px !important;
  padding: 20px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.category-icon-skeleton {
  width: 100% !important;
  height: 120px !important;
  background: linear-gradient(
    to right,
    #f0f0f0 0%,
    #e8e8e8 20%,
    #f0f0f0 40%,
    #f0f0f0 100%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
  border-radius: 10px 10px 0 0 !important;
  margin-bottom: 10px !important;
}

.category-label-skeleton {
  width: 80px;
  height: 24px;
  background: linear-gradient(
    to right,
    #f0f0f0 0%,
    #e8e8e8 20%,
    #f0f0f0 40%,
    #f0f0f0 100%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
  border-radius: 4px;
}

/* Product card skeleton */
.product-card-skeleton {
  background-color: var(--pcc-white) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.product-image-skeleton {
  width: 100%;
  padding-top: 100%; /* 1:1 aspect ratio */
  background: linear-gradient(
    to right,
    #f0f0f0 0%,
    #e8e8e8 20%,
    #f0f0f0 40%,
    #f0f0f0 100%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-title-skeleton {
  width: 100%;
  height: 44px;
  background: linear-gradient(
    to right,
    #f0f0f0 0%,
    #e8e8e8 20%,
    #f0f0f0 40%,
    #f0f0f0 100%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
  border-radius: 4px;
  margin-bottom: 10px;
}

.product-price-skeleton {
  width: 120px;
  height: 28px;
  background: linear-gradient(
    to right,
    #f0f0f0 0%,
    #e8e8e8 20%,
    #f0f0f0 40%,
    #f0f0f0 100%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
  border-radius: 4px;
  margin-bottom: 15px;
}

.product-button-skeleton {
  width: 100%;
  height: 44px;
  background: linear-gradient(
    to right,
    #f0f0f0 0%,
    #e8e8e8 20%,
    #f0f0f0 40%,
    #f0f0f0 100%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
  border-radius: 8px;
  margin-top: auto;
}

/* Product page skeleton */
.product-page-skeleton {
  background-color: var(--pcc-white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 1.5rem;
}

.product-page-image-skeleton {
  width: 100%;
  padding-top: 100%; /* 1:1 aspect ratio */
  background: linear-gradient(
    to right,
    #f0f0f0 0%,
    #e8e8e8 20%,
    #f0f0f0 40%,
    #f0f0f0 100%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
  border-radius: 12px;
}

.product-page-title-skeleton {
  width: 70%;
  height: 40px;
  background: linear-gradient(
    to right,
    #f0f0f0 0%,
    #e8e8e8 20%,
    #f0f0f0 40%,
    #f0f0f0 100%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
  border-radius: 4px;
  margin-bottom: 15px;
}

.product-page-price-skeleton {
  width: 150px;
  height: 36px;
  background: linear-gradient(
    to right,
    #f0f0f0 0%,
    #e8e8e8 20%,
    #f0f0f0 40%,
    #f0f0f0 100%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
  border-radius: 4px;
  margin-bottom: 25px;
}

.product-page-buttons-skeleton {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.product-page-button-skeleton {
  flex: 1;
  height: 50px;
  background: linear-gradient(
    to right,
    #f0f0f0 0%,
    #e8e8e8 20%,
    #f0f0f0 40%,
    #f0f0f0 100%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
  border-radius: 8px;
}

.product-page-description-skeleton {
  width: 100%;
  height: 200px;
  background: linear-gradient(
    to right,
    #f0f0f0 0%,
    #e8e8e8 20%,
    #f0f0f0 40%,
    #f0f0f0 100%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
  border-radius: 4px;
  margin-top: 20px;
}

/* Mobile skeleton adjustments */
@media screen and (max-width: 768px) {
  .category-button-skeleton {
    width: 100px !important;
    height: 100px !important;
    border-radius: 15px !important;
    padding: 8px !important;
    flex-shrink: 0 !important;
  }

  .category-icon-skeleton {
    height: 60px !important;
    margin-bottom: 4px !important;
  }

  .category-label-skeleton {
    width: 60px;
    height: 16px;
  }

  .product-card-skeleton {
    flex-direction: row !important;
    padding: 12px !important;
    gap: 12px !important;
  }

  .product-image-skeleton {
    flex-shrink: 0;
    width: 100px !important;
    height: 100px !important;
    padding-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .product-title-skeleton {
    height: 32px;
    margin-bottom: 6px;
  }

  .product-price-skeleton {
    height: 22px;
    margin-bottom: 8px;
  }

  .product-button-skeleton {
    height: 36px;
  }

  .product-page-skeleton {
    padding: 20px;
    margin-top: 1rem;
  }

  .product-page-title-skeleton {
    width: 90%;
    height: 30px;
  }

  .product-page-price-skeleton {
    width: 120px;
    height: 28px;
  }

  .product-page-buttons-skeleton {
    flex-direction: column;
  }

  .product-page-button-skeleton {
    height: 44px;
  }
}

@media screen and (max-width: 480px) {
  .category-button-skeleton {
    width: 95px !important;
    height: 95px !important;
    flex-shrink: 0 !important;
  }

  .category-icon-skeleton {
    height: 55px !important;
  }

  .category-label-skeleton {
    width: 55px;
    height: 14px;
  }
}

/* Hide skeleton when content is loaded - must be last to override skeleton display properties */
.skeleton-hidden,
.category-button-skeleton.skeleton-hidden,
.product-card-skeleton.skeleton-hidden,
.product-page-skeleton.skeleton-hidden {
  display: none !important;
}

/* ============================================
   Main Section Padding Override
   ============================================ */

.section {
  padding-top: 0.5rem;
  padding-bottom: 3rem;
}

@media screen and (max-width: 768px) {
  .section {
    padding-top: 0.25rem;
    padding-bottom: 2rem;
  }
}

/* ============================================
   Breadcrumbs Navigation
   ============================================ */

.breadcrumb-nav {
  padding: 0.75rem 0;
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #999999;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 0.5rem;
  color: #cccccc;
  font-weight: 400;
}

.breadcrumb-item a {
  color: #999999;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: #75A640;
}

.breadcrumb-item.active {
  color: #333333;
}

.breadcrumb-item.active span {
  cursor: default;
}

/* Responsive breadcrumbs */
@media screen and (max-width: 768px) {
  .breadcrumb-nav {
    padding: 0.5rem 0;
    margin-bottom: 0.75rem;
  }

  .breadcrumb-item {
    font-size: 0.7rem;
  }

  .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 0.4rem;
  }
}

@media screen and (max-width: 480px) {
  .breadcrumb-nav {
    padding: 0.4rem 0;
    margin-bottom: 0.5rem;
  }

  .breadcrumb-item {
    font-size: 0.65rem;
  }

  .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 0.3rem;
  }
}

/* ============================================
   I18n Language and Country Selector
   ============================================ */

.i18n-selector {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.i18n-selector-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.i18n-selector-group label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #333333;
  font-weight: 500;
  margin: 0;
}

.i18n-selector-group label i {
  font-size: 1.1rem;
  color: #75A640;
}

.i18n-label {
  display: none;
}

.i18n-select {
  padding: 0.5rem 0.75rem;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  background-color: white;
  color: #333333;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.i18n-select:hover {
  border-color: #75A640;
}

.i18n-select:focus {
  border-color: #75A640;
  box-shadow: 0 0 0 0.125em rgba(117, 166, 64, 0.25);
}

/* Responsive styles for mobile */
@media screen and (max-width: 768px) {
  .i18n-selector {
    flex-direction: column;
    gap: 1rem;
  }

  .i18n-selector-group {
    width: 100%;
    max-width: 280px;
  }

  .i18n-label {
    display: inline;
  }

  .i18n-selector-group label {
    min-width: 100px;
  }

  .i18n-select {
    flex: 1;
  }
}

@media screen and (max-width: 480px) {
  .i18n-selector {
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  .i18n-selector-group {
    max-width: 100%;
    font-size: 0.85rem;
  }

  .i18n-select {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }
}
