     ::selection {
      background:  #ffebee;
      color: #d32f2f;
    }

    ::-moz-selection {
      background:  #ffebee;
      color: #d32f2f;
    }

    @keyframes pageEntrance {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .page-animate {
      animation: pageEntrance 0.8s ease-out forwards;
    }

    @keyframes productEntrance {
      from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .product-animate {
      animation: productEntrance 0.6s ease-out forwards;
      animation-delay: calc(var(--animation-order) * 0.1s);
      opacity: 0;
    }

    .btn-gradient {
      background: linear-gradient(135deg, #f42828, #ff6a5b);
      color: #fff;
      border: none;
      font-weight: 600;
      padding: 0.6rem 1.4rem;
      border-radius: 0.5rem;
      transition: all 0.3s ease;
    }
    .btn-gradient:hover {
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    }

    .quick-view-icon {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 10;
    }
    
    .quick-view-wrapper {
      background: white;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    .quick-view-wrapper:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }
    
    .quick-view-icon i {
      color: #f42828;
      font-size: 18px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 1rem;
      transition: all 0.4s ease;
      height: 450px;
      display: flex;
      flex-direction: column;
      background: white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }
    
    .image-square-container {
      width: 100%;
      height: 280px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f8f9fa;
      padding: 15px;
      position: relative;
    }
    
    .image-square-container.larger-image {
      padding: 5px;
    }
    
    .image-square-container.larger-image img {
      transform: scale(1.15);
      object-fit: contain;
    }
    
    .image-square-container img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: all 0.4s ease;
      
    }
    
  
    .gallery-item:hover img {
      transform: scale(1.05);
      filter: brightness(1.1);
    }
    
    .gallery-item:hover .image-square-container.larger-image img {
      transform: scale(1.2);
    }

    .product-additional-galleries {
      position: absolute;
      bottom: 10px;
      left: 10px;
      z-index: 10;
    }
    
    .wd-show-product-gallery-wrap {
      background: white;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    .wd-show-product-gallery-wrap:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }
    
    .woodmart-show-product-gallery {
      color: #f42828;
      text-decoration: none;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
    }
    
    .woodmart-show-product-gallery span {
      display: none;
    }
    
    .woodmart-show-product-gallery:before {
      content: "⛶";
      font-size: 18px;
    }

    .gallery-caption {
      padding: 20px;
      text-align: center;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: white;
    }

    .gallery-caption h5 {
      color: #f42828;
      font-weight: 600;
      margin-bottom: 10px;
      font-size: 1.25rem;
    }

    .gallery-caption p {
      color: #666;
      font-size: 0.95rem;
      margin-bottom: 0;
      line-height: 1.5;
    }

    .zoom-modal-content {
      position: relative;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
      animation: fadeInZoom 0.4s ease-out;
    }

    @keyframes fadeInZoom {
      0% {
        opacity: 0;
        transform: scale(0.9);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

    .main-zoom-container {
      position: relative;
      width: 100%;
      height: 500px;
      overflow: hidden;
      background: #f8f9fa;
      border-radius: 10px;
      cursor: zoom-in;
    }

    .main-zoom-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.3s ease;
      transform-origin: 0 0;
      cursor: grab;
    }

    .main-zoom-img:active {
      cursor: grabbing;
    }

    .zoom-controls {
      position: absolute;
      top: 20px;
      left: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 100;
      background: rgba(255, 255, 255, 0.8);
      padding: 8px;
      border-radius: 25px;
      backdrop-filter: blur(5px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .zoom-btn {
      width: 40px;
      height: 40px;
      background: rgba(244, 40, 40, 0.9);
      color: white;
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .zoom-btn:hover {
      background: rgba(244, 40, 40, 1);
      transform: scale(1.1);
    }

    .fullscreen-btn {
      background: rgba(40, 40, 244, 0.9);
    }

    .fullscreen-btn:hover {
      background: rgba(40, 40, 244, 1);
    }

    .thumbnail-gallery {
      display: flex;
      gap: 10px;
      padding: 15px;
      overflow-x: auto;
      background: #fff;
      border-top: 1px solid #eee;
    }

    .thumbnail-item {
      flex: 0 0 auto;
      width: 80px;
      height: 80px;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      opacity: 0.6;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .thumbnail-item:hover,
    .thumbnail-item.active {
      opacity: 1;
      border-color: #f42828;
      transform: scale(1.05);
    }

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

    .nav-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(244, 40, 40, 0.9);
      color: white;
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      cursor: pointer;
      z-index: 10;
      transition: all 0.3s ease;
      opacity: 0;
    }

    .zoom-modal-content:hover .nav-button {
      opacity: 1;
    }

    .nav-button:hover {
      background: rgba(244, 40, 40, 1);
      transform: translateY(-50%) scale(1.1);
    }

    .nav-prev {
      left: 15px;
    }

    .nav-next {
      right: 15px;
    }

    .product-info {
      padding: 20px;
      background: linear-gradient(135deg, #fff8f8, #fff);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100%;
      text-align: center;
    }

    .product-title {
      color: #f42828;
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 20px;
      font-family: 'Cormorant Garamond', serif;
      text-align: center;
      width: 100%;
    }

    .contact-info-section {
      width: 100%;
      max-width: 350px;
    }

    .contact-title {
      text-align: center;
      margin: 0px;
      padding: 0px;
      font-size: 16px;
      font-weight: bold;
      color: #333;
      margin-bottom: 20px;
      line-height: 1.4;
    }

    .contact-item {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      margin-bottom: 15px;
      padding: 8px 0;
      width: 100%;
    }

    .contact-icon {
      margin-right: 12px;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-icon img {
      width: 28px;
      height: 28px;
      object-fit: contain;
    }

    .contact-details {
      flex: 1;
      text-align: left;
    }

    .contact-label {
      font-size: 14px;
      font-weight: 600;
      color: #666;
      margin-bottom: 3px;
    }

    .contact-value {
      font-size: 16px;
      font-weight: 500;
    }

    .contact-value a {
      color: #f42828;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-value a:hover {
      color: #ff6a5b;
      text-decoration: underline;
    }

    .modal-close-btn {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 40px;
      height: 40px;
      background: rgba(244, 40, 40, 0.9);
      color: white;
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      cursor: pointer;
      z-index: 100;
      transition: all 0.3s ease;
    }

    .modal-close-btn:hover {
      background: rgba(244, 40, 40, 1);
      transform: rotate(90deg);
    }

    .fullscreen-mode {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      width: 100vw !important;
      height: 100vh !important;
      z-index: 9999 !important;
      margin: 0 !important;
      border-radius: 0 !important;
      background: rgba(0, 0, 0, 0.95) !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }

    .fullscreen-mode .main-zoom-container {
      height: 90vh !important;
      width: 90vw !important;
      background: transparent !important;
      margin: auto !important;
      cursor: zoom-in !important;
    }

    .fullscreen-mode .thumbnail-gallery,
    .fullscreen-mode .product-info,
    .fullscreen-mode .nav-button,
    .fullscreen-mode .modal-close-btn {
      display: none !important;
    }

    .fullscreen-mode .zoom-controls {
      display: flex !important;
      position: fixed !important;
      top: 20px !important;
      left: 20px !important;
      z-index: 10000 !important;
      opacity: 1 !important;
      background: rgba(255, 255, 255, 0.9) !important;
      flex-direction: column !important;
    }

    .fullscreen-mode .zoom-btn {
      background: rgba(0, 0, 0, 0.7) !important;
      color: white !important;
    }

    .fullscreen-mode .zoom-btn:hover {
      background: rgba(0, 0, 0, 0.9) !important;
    }

    .fullscreen-mode .fullscreen-btn {
      background: rgba(40, 40, 244, 0.7) !important;
    }

    .fullscreen-mode .fullscreen-btn:hover {
      background: rgba(40, 40, 244, 0.9) !important;
    }

    .announcement-bar {
      width: 100%;
      height: 40px;
      background-color: #d40000;
      color: white;
      display: flex;
      align-items: center;
      overflow: hidden;
      font-weight: 500;
    }

    .announcement-text {
      display: inline-block;
      white-space: nowrap;
      animation: scroll-text 40s linear infinite;
    }

    @keyframes scroll-text {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Styles pour le filtrage */
    .filter-section {
      background: white;
      border-radius: 1rem;
      padding: 1.5rem;
      margin-bottom: 2rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .filter-title {
      color: #f42828;
      font-weight: 600;
      margin-bottom: 1rem;
      font-size: 1.25rem;
    }

    .filter-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .filter-btn {
      background: #f8f9fa;
      border: 2px solid #e9ecef;
      color: #495057;
      padding: 0.5rem 1.25rem;
      border-radius: 2rem;
      font-weight: 500;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .filter-btn:hover {
      background: #e9ecef;
      border-color: #dee2e6;
      transform: translateY(-2px);
    }

    .filter-btn.active {
      background: #f42828;
      color: white;
      border-color: #f42828;
      box-shadow: 0 4px 10px rgba(244, 40, 40, 0.2);
    }

    .filter-search {
      position: relative;
      margin-top: 1rem;
    }

    .filter-search input {
      width: 100%;
      padding: 0.75rem 1rem 0.75rem 3rem;
      border: 2px solid #e9ecef;
      border-radius: 2rem;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .filter-search input:focus {
      outline: none;
      border-color: #f42828;
      box-shadow: 0 0 0 3px rgba(244, 40, 40, 0.1);
    }

    .filter-search i {
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: #6c757d;
    }

    .no-products {
      text-align: center;
      padding: 3rem;
      color: #6c757d;
      font-size: 1.1rem;
    }

    .no-products i {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: #dee2e6;
    }

    @media (max-width: 768px) {
      .gallery-item {
        height: 400px;
      }
      
      .image-square-container {
        height: 220px;
      }
      
      .image-square-container.larger-image img {
        transform: scale(1.1);
      }
      
      .main-zoom-container {
        height: 300px;
      }
      .nav-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
      }
      .thumbnail-item {
        width: 60px;
        height: 60px;
      }
      .product-additional-galleries {
        bottom: 5px;
        left: 5px;
      }
      .wd-show-product-gallery-wrap {
        width: 35px;
        height: 35px;
      }
      .woodmart-show-product-gallery:before {
        font-size: 16px;
      }
      .quick-view-wrapper {
        width: 35px;
        height: 35px;
      }
      .quick-view-icon i {
        font-size: 16px;
      }
      .product-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
      }
      .contact-title {
        font-size: 14px;
        margin-bottom: 15px;
      }
      .contact-item {
        margin-bottom: 12px;
      }
      .contact-icon {
        width: 28px;
        height: 28px;
        margin-right: 10px;
      }
      .contact-icon img {
        width: 24px;
        height: 24px;
      }
      .contact-label {
        font-size: 13px;
      }
      .contact-value {
        font-size: 14px;
      }
      
      .filter-buttons {
        gap: 0.5rem;
      }
      
      .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
      }
    }
