Contact form
.product-main {
padding-block: 5rem;
}
.product-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: start;
max-width: 1200px;
margin-inline: auto;
padding-inline: 1.5rem;
}
/* ============================================================
LEFT COLUMN — Image Gallery
============================================================ */
.product-images {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
/* Main large image */
.product-image-main {
border-radius: 16px;
overflow: hidden;
background: #091628;
border: 1px solid rgba(255, 255, 255, 0.08);
aspect-ratio: 1 / 1;
}
.product-img--main {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: opacity 0.2s ease, transform 0.3s ease;
}
/* Thumbnail strip — 5 across */
.product-thumbs {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 0.5rem;
}
.product-thumb {
border-radius: 8px;
cursor: pointer;
opacity: 0.5;
border: 2px solid transparent;
aspect-ratio: 1 / 1;
object-fit: cover;
width: 100%;
display: block;
transition: opacity 0.2s ease, border-color 0.2s ease;
}
.product-thumb:hover {
opacity: 0.85;
border-color: rgba(0, 229, 255, 0.5);
}
.product-thumb.active {
opacity: 1;
border-color: #00e5ff;
}
/* ============================================================
RIGHT COLUMN — Product Info
============================================================ */
.product-info {
display: flex;
flex-direction: column;
gap: 0;
}
/* Tag pill */
.product-tag {
display: inline-block;
padding: 0.35rem 1rem;
border-radius: 100px;
background: rgba(0, 229, 255, 0.1);
border: 1px solid rgba(0, 229, 255, 0.3);
font-size: 0.78rem;
font-weight: 600;
color: #00e5ff;
letter-spacing: 0.04em;
margin-bottom: 1rem;
width: fit-content;
}
/* Product title */
.product-title {
font-size: clamp(2rem, 3.5vw, 2.75rem);
font-weight: 800;
letter-spacing: -0.02em;
line-height: 1.1;
color: #ffffff;
margin-bottom: 0.4rem;
}
/* Subtitle */
.product-subtitle {
font-size: 0.95rem;
color: rgba(255, 255, 255, 0.6);
margin-bottom: 1rem;
}
/* Star rating row */
.product-rating-row {
display: flex;
align-items: center;
gap: 0.6rem;
margin-bottom: 1.5rem;
}
.product-rating-row .stars {
color: #ffd700;
font-size: 1rem;
letter-spacing: 1px;
}
.product-rating-row .rating-count {
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.6);
}
/* Price block */
.product-price-block {
display: flex;
align-items: baseline;
gap: 1rem;
flex-wrap: wrap;
padding-bottom: 1.5rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
margin-bottom: 1.75rem;
}
.product-price {
font-size: 2.75rem;
font-weight: 800;
color: #ffffff;
letter-spacing: -0.03em;
line-height: 1;
}
.product-compare {
font-size: 1.15rem;
color: rgba(255, 255, 255, 0.35);
text-decoration: line-through;
}
.product-badge-sale {
padding: 0.25rem 0.75rem;
background: linear-gradient(135deg, #1a6fff, #00e5ff);
border-radius: 100px;
font-size: 0.78rem;
font-weight: 700;
color: #ffffff;
letter-spacing: 0.04em;
}
/* Feature bullets */
.product-bullets {
list-style: none;
display: flex;
flex-direction: column;
gap: 0.875rem;
margin-bottom: 1.75rem;
padding: 0;
}
.product-bullets li {
display: flex;
align-items: flex-start;
gap: 0.75rem;
font-size: 0.93rem;
color: rgba(255, 255, 255, 0.75);
line-height: 1.5;
}
.bullet-icon {
font-size: 1rem;
flex-shrink: 0;
margin-top: 1px;
width: 20px;
text-align: center;
}
/* Add to Cart button */
.btn--buy {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
width: 100%;
padding: 1.1rem 2rem;
border-radius: 100px;
background: linear-gradient(135deg, #1a6fff, #00b4ff);
color: #ffffff;
font-size: 1.05rem;
font-weight: 700;
border: none;
cursor: pointer;
transition: box-shadow 0.3s ease, transform 0.2s ease;
text-decoration: none;
margin-bottom: 1.25rem;
box-shadow: 0 0 30px rgba(26, 111, 255, 0.35), 0 4px 20px rgba(0, 180, 255, 0.2);
}
.btn--buy:hover {
box-shadow: 0 0 50px rgba(26, 111, 255, 0.55), 0 8px 30px rgba(0, 180, 255, 0.3);
transform: translateY(-2px);
}
.btn--buy:active {
transform: scale(0.98);
}
/* Guarantees block */
.product-guarantees {
display: flex;
flex-direction: column;
gap: 0.875rem;
padding: 1.5rem;
border-radius: 14px;
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.08);
}
.guarantee-item {
display: flex;
align-items: flex-start;
gap: 0.875rem;
}
.guarantee-icon {
font-size: 1.35rem;
flex-shrink: 0;
margin-top: 1px;
}
.guarantee-item strong {
display: block;
font-size: 0.9rem;
font-weight: 700;
color: #ffffff;
margin-bottom: 2px;
}
.guarantee-item p {
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.55);
margin: 0;
line-height: 1.4;
}
/* ============================================================
RESPONSIVE
============================================================ */
@media (max-width: 900px) {
.product-layout {
grid-template-columns: 1fr;
gap: 2.5rem;
}
.product-price {
font-size: 2.25rem;
}
}
@media (max-width: 480px) {
.product-thumbs {
grid-template-columns: repeat(5, 1fr);
gap: 0.375rem;
}
.product-title {
font-size: 1.75rem;
}
}