/* Marquee Product Pages — extracted from v107 */

/* Product Grid */
.product-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 48px;
 align-items: start;
}

.product-gallery {
 position: sticky;
 top: 100px;
}

.product-gallery-main {
 width: 100%;
 aspect-ratio: 4/3;
 border-radius: 16px;
 overflow: hidden;
 background: #f5f5f5;
 margin-bottom: 12px;
}

.product-gallery-main img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 cursor: zoom-in;
}

.product-gallery-thumbs {
 display: flex;
 gap: 8px;
}

.product-gallery-thumbs img {
 width: 72px;
 height: 54px;
 object-fit: cover;
 border-radius: 8px;
 cursor: zoom-in;
 opacity: 0.5;
 transition: opacity 0.3s ease;
 border: 2px solid transparent;
}

.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
 opacity: 1;
 border-color: #F22490;
}

/* Lightbox */
.photo-lightbox {
 display: none;
 position: fixed;
 top: 0; left: 0;
 width: 100%; height: 100%;
 background: rgba(0,0,0,0.92);
 z-index: 10000;
 cursor: zoom-out;
 align-items: center;
 justify-content: center;
 animation: lbFadeIn 0.25s ease;
}
.photo-lightbox.active { display: flex; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.photo-lightbox img {
 max-width: 90vw;
 max-height: 85vh;
 object-fit: contain;
 border-radius: 12px;
 box-shadow: 0 8px 40px rgba(0,0,0,0.5);
 animation: lbZoomIn 0.3s ease;
}
@keyframes lbZoomIn { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.photo-lightbox .lb-close {
 position: absolute;
 top: 20px; right: 24px;
 color: #fff;
 font-size: 2rem;
 cursor: pointer;
 background: rgba(255,255,255,0.1);
 border: none;
 width: 48px; height: 48px;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: background 0.2s;
}
.photo-lightbox .lb-close:hover { background: rgba(255,255,255,0.2); }

/* Product Info */
.product-info h2 {
 font-family: 'Space Grotesk', sans-serif;
 font-size: 2.2rem;
 font-weight: 700;
 color: #1a1a1a;
 margin-bottom: 8px;
}

.product-meta {
 display: flex;
 gap: 24px;
 margin-bottom: 24px;
 flex-wrap: wrap;
}

.product-meta-item {
 font-size: 0.85rem;
 color: #555;
}

.product-meta-item strong {
 color: #F22490;
 display: block;
 font-size: 1rem;
}

.product-description {
 color: #1a1a1a;
 margin-bottom: 32px;
 line-height: 1.7;
}

.product-features { margin-bottom: 32px; }
.product-features h3 { color: #1a1a1a; margin-bottom: 12px; font-size: 1rem; }
.product-features ul { list-style: none; padding: 0; }
.product-features li {
 padding: 6px 0;
 color: #555;
 font-size: 0.9rem;
 display: flex;
 align-items: center;
 gap: 8px;
}
.product-features li::before {
 content: '\2713';
 color: #F22490;
 font-weight: 700;
}

/* Pack Cards */
.pack-cards {
 display: grid;
 gap: 16px;
 margin-bottom: 32px;
}

.pack-card {
 background: #f5f5f5;
 border: 1px solid #e0e0e0;
 border-radius: 16px;
 padding: 24px;
 cursor: pointer;
 transition: all 0.3s ease;
 position: relative;
}

.pack-card:hover {
 border-color: rgba(242, 36, 144, 0.3);
 background: #eee;
}

.pack-card.selected {
 border-color: #F22490;
 background: rgba(242, 36, 144, 0.08);
}

.pack-card.popular {
 border-color: #F2EC00;
}

.pack-card.popular::before {
 content: 'MOST POPULAR';
 position: absolute;
 top: -10px; right: 16px;
 background: #F2EC00;
 color: #1a1a1a;
 font-size: 0.65rem;
 font-weight: 700;
 padding: 4px 12px;
 border-radius: 20px;
 letter-spacing: 1px;
}

.pack-badge {
 display: inline-block;
 background: #F2EC00;
 color: #1a1a1a;
 font-size: 0.65rem;
 font-weight: 700;
 padding: 4px 12px;
 border-radius: 20px;
 letter-spacing: 1px;
 text-transform: uppercase;
 margin-bottom: 8px;
}

.pack-header {
 display: flex;
 justify-content: space-between;
 align-items: center;
 margin-bottom: 16px;
 flex-wrap: wrap;
 gap: 8px;
}

.pack-name {
 font-weight: 700;
 font-size: 1rem;
 color: #1a1a1a;
}

.pack-price {
 font-weight: 700;
 font-size: 1.2rem;
 color: #F22490;
}

.pack-includes {
 list-style: none;
 padding: 0;
 margin: 0 0 16px 0;
}

.pack-includes li {
 color: #555;
 font-size: 0.85rem;
 padding: 4px 0;
 display: flex;
 align-items: center;
 gap: 8px;
}

.pack-includes li::before {
 content: '\2713';
 color: #F22490;
 font-weight: 600;
 font-size: 0.8rem;
}

.pack-add-btn {
 width: 100%;
 padding: 12px;
 background: linear-gradient(135deg, #F22490, #b01a6b);
 color: white;
 border: none;
 border-radius: 10px;
 font-weight: 700;
 font-size: 0.9rem;
 cursor: pointer;
 transition: all 0.3s ease;
}

.pack-add-btn:hover {
 transform: translateY(-1px);
 box-shadow: 0 4px 16px rgba(242, 36, 144, 0.4);
}

/* Specs Table */
.specs-table {
 width: 100%;
 border-collapse: collapse;
 margin-bottom: 24px;
}

.specs-table tr {
 border-bottom: 1px solid #e0e0e0;
}

.specs-table td {
 padding: 10px 0;
 font-size: 0.9rem;
 color: #555;
}

.specs-table td:first-child {
 font-weight: 600;
 color: #1a1a1a;
 width: 40%;
}

/* Size Cards (landing page) */
.size-grid {
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
 gap: 20px;
}

.size-card {
 background: #fff;
 border: 1px solid #e0e0e0;
 border-radius: 16px;
 overflow: hidden;
 transition: all 0.3s ease;
 text-decoration: none;
 color: inherit;
 display: block;
}

.size-card:hover {
 border-color: rgba(242, 36, 144, 0.4);
 box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(242, 36, 144, 0.15);
 transform: translateY(-2px);
}

.size-card-img {
 aspect-ratio: 16/10;
 overflow: hidden;
 background: linear-gradient(135deg, #2d1b3d 0%, #4A2666 55%, #b01a6b 100%);
}

.size-card-img img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.5s;
}

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

.size-card-body {
 padding: 16px;
}

.size-card-title {
 font-weight: 700;
 color: #1a1a1a;
 font-size: 1.1rem;
}

.size-card-meta {
 font-size: 0.8rem;
 color: #999;
 margin: 4px 0 8px;
}

.size-card-price {
 font-weight: 700;
 color: #F22490;
 font-size: 0.95rem;
}

/* Capacity Guide */
.capacity-guide {
 width: 100%;
 border-collapse: collapse;
 margin-bottom: 24px;
}

.capacity-guide thead tr {
 border-bottom: 2px solid #e0e0e0;
}

.capacity-guide thead td {
 font-weight: 700;
 color: #F22490;
}

.capacity-guide tr {
 border-bottom: 1px solid #e0e0e0;
}

.capacity-guide td {
 padding: 10px 0;
 font-size: 0.9rem;
 color: #555;
}

.capacity-guide td:first-child {
 font-weight: 600;
 color: #1a1a1a;
 width: 40%;
}

/* Responsive */
@media (max-width: 1024px) {
 .product-grid {
   grid-template-columns: 1fr;
   gap: 32px;
 }
 .product-gallery {
   position: static;
 }
}

@media (max-width: 768px) {
 .product-gallery-main {
   aspect-ratio: 16/10;
 }
 .pack-header {
   flex-direction: column;
   align-items: flex-start;
 }
 .product-info h2 {
   font-size: 1.6rem;
 }
}
