 .zoomable-img {

        cursor: zoom-in;
       /*  transition: transform 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
    }

    .zoomable-img:hover {

    }

    /* LIGHTBOX */
    #lightbox {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.95);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    #lightbox.show {
        opacity: 1;
    }

    #lightboxImg {
        max-width: 90%;
        max-height: 90%;
        cursor: grab;
        transform: translate(0,0) scale(1);
        transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-radius: 4px;
        user-select: none;
        -webkit-user-drag: none;
    }

    #lightboxImg.dragging {
        cursor: grabbing;
        transition: none;
    }

    #closeBtn {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 40px;
        color: #fff;
        cursor: pointer;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease;
        z-index: 10000;
    }

    #closeBtn:hover {
        transform: scale(1.1);
    }

    .controls {
        position: absolute;
        bottom: 30px;
        display: flex;
        gap: 10px;
        align-items: center;
        background: rgba(0,0,0,0.7);
        padding: 10px 20px;
        border-radius: 50px;
        backdrop-filter: blur(10px);
    }

    .controls button {
        padding: 12px 20px;
        font-size: 24px;
        cursor: pointer;
        border: none;
        border-radius: 50%;
        background: rgba(255,255,255,0.9);
        color: #333;
        transition: all 0.2s ease;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .controls button:hover {
        background: white;
        transform: scale(1.1);
    }

    .controls button:active {
        transform: scale(0.95);
    }

    .controls button:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

    #zoomLevel {
        color: white;
        font-size: 16px;
        font-weight: bold;
        min-width: 80px;
        text-align: center;
        margin: 0 10px;
    }

    .zoom-indicator {
        position: absolute;
        top: 20px;
        left: 20px;
        color: white;
        font-size: 14px;
        background: rgba(0,0,0,0.7);
        padding: 8px 16px;
        border-radius: 20px;
        display: none;
        backdrop-filter: blur(10px);
    }

    .zoom-indicator.show {
        display: block;
        animation: fadeOut 2s forwards;
    }

    @keyframes fadeOut {
        0% { opacity: 1; }
        70% { opacity: 1; }
        100% { opacity: 0; }
    }

    .image-info {
        position: absolute;
        bottom: 100px;
        color: white;
        text-align: center;
        width: 100%;
        padding: 0 20px;
        opacity: 0.8;
        font-size: 14px;
    }

    /* Loading animation */
    .loader {
        position: absolute;
        width: 40px;
        height: 40px;
        border: 3px solid rgba(255,255,255,0.3);
        border-radius: 50%;
        border-top-color: white;
        animation: spin 1s linear infinite;
        display: none;
    }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .controls {
            bottom: 20px;
            padding: 8px 16px;
            display: none;
        }

        .controls button {
            width: 44px;
            height: 44px;
            font-size: 20px;
            padding: 10px;
        }

        #closeBtn {
            top: 10px;
            right: 15px;
            font-size: 35px;
        }
    }

    /* Compact Product Actions - Feather Icons Only */
    .compact-actions {
      /*background: #ffffff;
      border-radius: 12px;
      padding: 1.25rem;
      border: 1px solid #dee2e6;
      margin-bottom: 1.5rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);*/
    }

    .action-row {
      display: flex;
      gap: 1rem;
      margin-bottom: 0;
    }

    .action-col {
      flex: 1;
      min-width: 0;
    }

    .action-card {
      border-radius: 8px;
      padding: 1rem;
      height: 100%;
      transition: all 0.2s ease;
      background: #fff;
      border: 1px solid #e9ecef;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .action-card:hover {
      border-color: #ced4da;
      background: #ffffff;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .action-card.product {
      border-top: 3px solid #aa7e2f;
    }

    .action-card.sample {
      border-top: 3px solid #324633;
    }
   .card-content {
        flex: 1;
        margin-bottom: 10px;
    }

    .card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      /*margin-bottom: 0.75rem;*/
    }

    .card-title {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.4rem 0.75rem;
      border-radius: 6px;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .badge.product {
      background: rgba(74, 144, 226, 0.1);
      color: #aa7e2f;
      border: 1px solid rgba(74, 144, 226, 0.2);
    }

    .badge.sample {
      background: rgba(111, 66, 193, 0.1);
      color: #324633;
      border: 1px solid rgba(111, 66, 193, 0.2);
    }

    .badge i {
      font-size: 0.85rem;
    }

    .size-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.4rem 0.75rem;
      background: white;
      border-radius: 6px;
      font-size: 0.85rem;
      font-weight: 600;
      color: #495057;
      border: 1px solid #dee2e6;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .size-badge i {
      color: #6c757d;
      font-size: 0.85rem;
    }

    /* Single line price */
    .price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      /*margin-bottom: 1rem;*/
      padding: 0.2rem 0;
      border-bottom: 1px solid #e9ecef;
    }

    .price-label {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #495057;
      font-size: 0.9rem;
      font-weight: 500;
    }

    .price-label i {
      color: #6c757d;
      font-size: 0.9rem;
    }

    .price-value {
      display: flex;
      align-items: baseline;
      gap: 0.15rem;
      font-size: 1.4rem;
      font-weight: 700;
      color: #212529;
    }

    .currency {
      font-size: 0.9rem;
      color: #6c757d;
      font-weight: 500;
      margin-right: 0.1rem;
    }

    .action-button {
      padding: 0.75rem;
      font-size: 0.9rem;
      font-weight: 600;
      border-radius: 6px;
      border: none;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      transition: all 0.2s ease;
      cursor: pointer;
    }

    .action-button.product {
      background: #aa7e2f;
      color: white;
      border: 1px solid #a27525;
    }

    .action-button.product:hover {
      background: #a27525;
      transform: translateY(-1px);
      box-shadow: 0 3px 8px rgba(74, 144, 226, 0.2);
    }

    .action-button.product:active {
      transform: translateY(0);
    }

    .action-button.product.added_cart {
      background: #e74c3c;
      border-color: #c0392b;
    }

    .action-button.product.added_cart:hover {
      background: #c0392b;
    }

    .action-button.sample {
      background: #324633;
      color: white;
      border: 1px solid #263027;
    }

    .action-button.sample:hover {
      background: #263027;
      transform: translateY(-1px);
      box-shadow: 0 3px 8px rgba(111, 66, 193, 0.2);
    }

    .action-button.sample:active {
      transform: translateY(0);
    }

    .action-button.sample.added_cart {
      background: #e74c3c;
      border-color: #c0392b;
    }

    .action-button.sample.added_cart:hover {
      background: #c0392b;
    }

    .action-button i {
      font-size: 0.95rem;
    }

    .wishlist-section {
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid #e9ecef;
    }

    .wishlist-btn {
      width: 100%;
      padding: 0.7rem;
      background: white;
      border: 2px solid #e74c3c;
      color: #e74c3c;
      border-radius: 6px;
      font-size: 0.9rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      transition: all 0.2s ease;
    }

    .wishlist-btn:hover {
      background: #e74c3c;
      color: white;
      transform: translateY(-1px);
      box-shadow: 0 3px 8px rgba(231, 76, 60, 0.2);
    }

    .wishlist-btn.active {
      background: #e74c3c;
      color: white;
    }

    .wishlist-btn:active {
      transform: translateY(0);
    }

    .wishlist-btn i {
      font-size: 0.95rem;
    }


    /* Responsive Design */
    @media (max-width: 768px) {
      .action-row {
          flex-direction: column;
          gap: 0.75rem;
      }

      .compact-actions {
          padding: 1rem;
      }

      .action-card {
          padding: 0.85rem;
      }

      .price-value {
          font-size: 1.3rem;
      }

      .action-button {
          padding: 0.65rem;
          font-size: 0.85rem;
      }

      .wishlist-btn {
          padding: 0.65rem;
          font-size: 0.85rem;
      }
    }

    @media (max-width: 576px) {
      .compact-actions {
          padding: 0.85rem;
          border-radius: 8px;
      }

      .card-header {
          flex-direction: column;
          align-items: flex-start;
          gap: 0.5rem;
          margin-bottom: 0.5rem;
      }

      .size-badge {
          align-self: flex-start;
      }

      .price-row {
          flex-direction: column;
          align-items: flex-start;
          gap: 0.25rem;
          padding: 0.5rem 0;
      }

      .price-value {
          font-size: 1.2rem;
      }
    }