 .card {
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .product-card {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 48px;
     background: #fff;
     border-radius: 20px;
     padding: 32px;
     max-width: 1000px;
     width: 100%;
 }

 /* ── LEFT: GALLERY ── */
 .card-gallery {
     display: flex;
     flex-direction: column;
     gap: 16px;
 }

 .card-main-img {
     background: #ede8e3;
     border-radius: 14px;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
     aspect-ratio: 1 / 1;
     cursor: zoom-in;
 }

 .card-main-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.4s ease;
 }

 .card-main-img:hover img {
     transform: scale(1.04);
 }

 .card-thumbs {
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
 }

 .card-thumb {
     width: 72px;
     height: 72px;
     border-radius: 10px;
     overflow: hidden;
     cursor: pointer;
     border: 2px solid transparent;
     transition: border-color 0.2s;
     background: #ede8e3;
     flex-shrink: 0;
 }

 .card-thumb img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .card-thumb.active {
     border-color: #ab7870;
 }

 .card-thumb:hover {
     border-color: burlywood;
 }

 /* ── RIGHT: INFO ── */
 .card-info {
     display: flex;
     flex-direction: column;
     gap: 20px;
     justify-content: center;
 }

 .card-price {
     font-size: 42px;
     font-weight: 400;
     color: #ab7870;
 }

 .card-title {
     font-size: 30px;
     font-weight: 600;
     color: #1a1a1a;
 }

 .card-desc {
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .card-desc p {
     font-size: 14px;
     color: #666;
 }

 /* ── QTY + ADD TO CART ── */
 .card-actions {
     display: flex;
     gap: 12px;
     align-items: center;
 }

 .product-card .qty-control {
     display: flex;
     align-items: center;
     border: 1.5px solid #ccc;
     border-radius: 8px;
     overflow: hidden;
     height: 52px;
 }

 .product-card .qty-control button {
     width: 42px;
     height: 100%;
     background: none;
     border: none;
     font-size: 20px;
     color: #1a1a1a;
     cursor: pointer;
     transition: background 0.15s;
     margin: 0;
     padding: 0;
     border-radius: 0;
     font-weight: normal;
     position: static;
 }

 .product-card .qty-control button::before {
     display: none;
 }

 .product-card .qty-control button:hover {
     background: #ab7870;
     color: burlywood;
 }

 .qty-control span {
     width: 44px;
     text-align: center;
     font-size: 15px;
     font-weight: 500;
     border-left: 1.5px solid #ccc;
     border-right: 1.5px solid #ccc;
     line-height: 52px;
 }

 .btn-add-cart {
     padding: 15px 25px;
     border: unset;
     border-radius: 15px;
     color: #212121;
     z-index: 1;
     background: #e8e8e8;
     position: relative;
     font-weight: 1000;
     font-size: 17px;
     transition: all 250ms;
     overflow: hidden;
     margin: 5px;
     width: auto;
     height: auto;
     cursor: pointer;
     transition: background 0.2s, transform 0.1s;
 }

 .btn-add-cart:hover {
     background: #333;
 }

 .btn-add-cart:active {
     transform: scale(0.98);
 }

 .btn-buy-now {
     padding: 15px 25px;
     border: unset;
     border-radius: 15px;
     color: #212121;
     z-index: 1;
     background: #e8e8e8;
     position: relative;
     font-weight: 1000;
     font-size: 17px;
     transition: all 250ms;
     overflow: hidden;
     margin: 5px;
     width: auto;
     height: auto;
     cursor: pointer;
     transition: background 0.2s, transform 0.1s;
 }


 .btn-buy-now:active {
     transform: scale(0.99);
 }

 /* ── SHARE ── */
 .card-share {
     display: flex;
     align-items: center;
     gap: 14px;
     font-size: 14px;
     color: #888;
 }

 .card-share a {
     color: #1a1a1a;
     text-decoration: none;
     transition: color 0.2s, transform 0.2s;
     display: inline-flex;
 }

 .card-share a:hover {
     color: #ab7870;
 }

 .card-share svg {
     width: 20px;
     height: 20px;
     fill: currentColor;
 }

 /* ── TOAST ── */
 .toast {
     position: fixed;
     bottom: 28px;
     left: 50%;
     transform: translateX(-50%) translateY(60px);
     background: #1a1a1a;
     color: #fff;
     padding: 11px 24px;
     border-radius: 8px;
     font-size: 13px;
     opacity: 0;
     transition: all 0.3s;
     pointer-events: none;
     z-index: 999;
     white-space: nowrap;
 }

 .toast.show {
     transform: translateX(-50%) translateY(0);
     opacity: 1;
 }

 /* ── Select dropdowns ── */
 .card-select-wrap {
     display: flex;
     flex-direction: column;
     gap: 6px;
 }

 .card-select-wrap label {
     font-size: 13px;
     font-weight: 600;
     color: #1a1a1a;
     letter-spacing: .04em;
     text-transform: uppercase;
 }

 .card-select-wrap select {
     padding: 10px 14px;
     border: 1.5px solid #e0d5d0;
     border-radius: 8px;
     font-family: inherit;
     font-size: 13.5px;
     color: #1a1a1a;
     background: #fff;
     appearance: none;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ab7870' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
     background-repeat: no-repeat;
     background-position: right 14px center;
     cursor: pointer;
     outline: none;
     transition: border-color .2s, box-shadow .2s;
     width: 100%;
 }

 .card-select-wrap select:focus {
     border-color: #ab7870;
     box-shadow: 0 0 0 3px rgba(171, 120, 112, 0.15);
 }

 .card-select-wrap select:hover {
     border-color: #ab7870;
 }

 /* ── RESPONSIVE ── */
 @media (max-width: 700px) {
     .product-card {
         grid-template-columns: 1fr;
         gap: 24px;
         padding: 20px;
     }

     .card-price {
         font-size: 32px;
     }

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

     .card-thumb {
         width: 56px;
         height: 56px;
     }
 }