4223 lines
81 KiB
CSS
Executable File
4223 lines
81 KiB
CSS
Executable File
/* ====================================
|
|
Force Light Mode - Override Browser Dark Mode
|
|
==================================== */
|
|
:root {
|
|
color-scheme: light !important;
|
|
}
|
|
|
|
html {
|
|
color-scheme: light !important;
|
|
background-color: #ffffff !important;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
background-color: #FAF8F5 !important;
|
|
color: #000000 !important;
|
|
color-scheme: light !important;
|
|
}
|
|
|
|
/* Force all elements to light mode */
|
|
* {
|
|
color-scheme: light !important;
|
|
}
|
|
|
|
/* Override any dark backgrounds */
|
|
.container,
|
|
.row,
|
|
.col,
|
|
div,
|
|
section,
|
|
article,
|
|
main,
|
|
header {
|
|
background-color: inherit !important;
|
|
}
|
|
|
|
/* Allow footer to have custom background */
|
|
footer.footer {
|
|
background-color: #1a1a1a !important;
|
|
}
|
|
|
|
/* Ensure form elements are light */
|
|
input,
|
|
textarea,
|
|
select,
|
|
button {
|
|
background-color: #ffffff !important;
|
|
color: #000000 !important;
|
|
border-color: #dee2e6 !important;
|
|
}
|
|
|
|
input::placeholder,
|
|
textarea::placeholder {
|
|
color: #6c757d !important;
|
|
}
|
|
|
|
/* ====================================
|
|
Custom Scrollbar Styles
|
|
==================================== */
|
|
::-webkit-scrollbar {
|
|
width: 4px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: rgba(0, 0, 0, 0.15);
|
|
border-radius: 2px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: rgba(0, 0, 0, 0.25);
|
|
}
|
|
|
|
/* Firefox scrollbar */
|
|
* {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
|
|
}
|
|
|
|
/* ====================================
|
|
Notification Animations
|
|
==================================== */
|
|
@keyframes slideInFromTop {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(-20px);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
@keyframes slideOut {
|
|
from {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
|
|
to {
|
|
opacity: 0;
|
|
transform: translateY(-20px);
|
|
}
|
|
}
|
|
|
|
/* ====================================
|
|
Product Detail - Modern
|
|
==================================== */
|
|
.product-detail-modern {
|
|
padding: 40px 0;
|
|
}
|
|
|
|
.gallery {
|
|
background: #fff;
|
|
padding: 16px;
|
|
display: flex;
|
|
gap: 16px;
|
|
}
|
|
|
|
.gallery-sidebar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
.gallery-main {
|
|
position: relative;
|
|
background: #fafafa;
|
|
border: 1px solid #e5e5e5;
|
|
border-radius: 8px;
|
|
padding: 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 560px;
|
|
flex: 1;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.gallery-main img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
display: block;
|
|
transition: opacity 200ms ease;
|
|
}
|
|
|
|
.gallery-main img.fade-out {
|
|
opacity: 0;
|
|
}
|
|
|
|
.gallery-main .nav {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
background: rgba(0, 0, 0, 0.5);
|
|
color: #fff;
|
|
border: none;
|
|
width: 36px;
|
|
height: 36px;
|
|
border-radius: 18px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
transition: background 0.2s ease;
|
|
}
|
|
|
|
.gallery-main .nav:hover {
|
|
background: rgba(0, 0, 0, 0.7);
|
|
}
|
|
|
|
.gallery-main .prev {
|
|
left: 8px;
|
|
}
|
|
|
|
.gallery-main .next {
|
|
right: 8px;
|
|
}
|
|
|
|
.gallery-thumbs {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.gallery-thumbs .thumb {
|
|
width: 70px;
|
|
height: 70px;
|
|
border: 2px solid #e5e5e5;
|
|
border-radius: 6px;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
background: #fff;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.gallery-thumbs .thumb img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.gallery-thumbs .thumb:hover {
|
|
border-color: #6B4E9B;
|
|
}
|
|
|
|
.gallery-thumbs .thumb.active {
|
|
border-color: #6B4E9B;
|
|
box-shadow: 0 0 0 3px rgba(107, 78, 155, 0.2);
|
|
}
|
|
|
|
/* Only apply opacity filter when a variant is selected */
|
|
.variant-filtering .gallery-thumbs .thumb.variant-match {
|
|
opacity: 1;
|
|
}
|
|
|
|
.variant-filtering .gallery-thumbs .thumb:not(.variant-match) {
|
|
opacity: 0.3;
|
|
filter: grayscale(50%);
|
|
}
|
|
|
|
.zoom-hint {
|
|
text-align: left;
|
|
color: #777;
|
|
font-size: 0.8rem;
|
|
width: 70px;
|
|
line-height: 1.3;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
/* Disable zoom cursor/animations on touch devices */
|
|
@media (pointer: coarse) {
|
|
.gallery-main {
|
|
cursor: default;
|
|
}
|
|
|
|
.gallery-main img {
|
|
transition: opacity 200ms ease;
|
|
}
|
|
}
|
|
|
|
/* Product split layout */
|
|
.product-detail-modern .product-split {
|
|
display: flex;
|
|
gap: 24px;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.product-detail-modern .image-pane {
|
|
flex: 0 0 625px;
|
|
max-width: 625px;
|
|
}
|
|
|
|
.product-detail-modern .info-pane {
|
|
flex: 1 1 auto;
|
|
min-width: 0;
|
|
}
|
|
|
|
@media (max-width: 991.98px) {
|
|
.product-detail-modern .product-split {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.product-detail-modern .image-pane {
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
|
|
/* Mobile button stack */
|
|
@media (max-width: 576px) {
|
|
.actions {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.actions .cta {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
/* =============================
|
|
Lightbox Viewer
|
|
============================= */
|
|
.lightbox {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.85);
|
|
display: none;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 1050;
|
|
}
|
|
|
|
.lightbox.open {
|
|
display: flex;
|
|
}
|
|
|
|
.lightbox-content {
|
|
position: relative;
|
|
max-width: 92vw;
|
|
max-height: 92vh;
|
|
}
|
|
|
|
.lightbox-content img {
|
|
max-width: 92vw;
|
|
max-height: 92vh;
|
|
object-fit: contain;
|
|
background: #111;
|
|
border-radius: 8px;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.lightbox .lb-close {
|
|
position: absolute;
|
|
top: -40px;
|
|
right: -10px;
|
|
color: #fff;
|
|
font-size: 1.8rem;
|
|
background: transparent;
|
|
}
|
|
|
|
.lightbox .lb-nav {
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
background: rgba(0, 0, 0, 0.5);
|
|
color: #fff;
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: 22px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.lightbox .lb-prev {
|
|
left: -56px;
|
|
}
|
|
|
|
.lightbox .lb-next {
|
|
right: -56px;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.lightbox .lb-prev {
|
|
left: -36px;
|
|
}
|
|
|
|
.lightbox .lb-next {
|
|
right: -36px;
|
|
}
|
|
|
|
.lightbox .lb-close {
|
|
top: -36px;
|
|
right: 0;
|
|
}
|
|
}
|
|
|
|
.details {
|
|
padding: 10px 24px;
|
|
}
|
|
|
|
.details .title {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
color: #333;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.details .meta {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
border-bottom: 1px solid #e5e5e5;
|
|
padding-bottom: 12px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.details .meta-left {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
}
|
|
|
|
.details .sku {
|
|
color: #666;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.details .stars {
|
|
color: #FFB800;
|
|
font-size: 1rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 2px;
|
|
}
|
|
|
|
.details .stars .rating-text {
|
|
color: #666;
|
|
font-size: 0.85rem;
|
|
margin-left: 6px;
|
|
}
|
|
|
|
.details .units-sold {
|
|
background: #f0f8ff;
|
|
color: #4169E1;
|
|
padding: 4px 10px;
|
|
border-radius: 12px;
|
|
font-size: 0.85rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.color-section {
|
|
margin: 16px 0 12px;
|
|
}
|
|
|
|
.color-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 10px 12px;
|
|
background: #f8f8f8;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
transition: background 0.2s ease;
|
|
position: relative;
|
|
}
|
|
|
|
.color-row:hover {
|
|
background: #f0f0f0;
|
|
}
|
|
|
|
.color-row .label {
|
|
font-weight: 600;
|
|
color: #333;
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.color-row .value {
|
|
color: #6B4E9B;
|
|
font-weight: 600;
|
|
flex: 1;
|
|
}
|
|
|
|
.color-row .color-arrow {
|
|
color: #666;
|
|
font-size: 0.9rem;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.color-section:hover .color-arrow {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.color-section.show .color-arrow {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.swatches {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
|
|
gap: 8px;
|
|
background: #fafafa;
|
|
border: 1px solid #e5e5e5;
|
|
border-radius: 6px;
|
|
padding: 10px;
|
|
margin-top: 8px;
|
|
max-height: 0;
|
|
overflow: hidden;
|
|
opacity: 0;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.color-section:hover .swatches {
|
|
max-height: 500px;
|
|
opacity: 1;
|
|
}
|
|
|
|
.color-section.show .swatches {
|
|
max-height: 500px;
|
|
opacity: 1;
|
|
}
|
|
|
|
.swatch {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 6px 10px;
|
|
border: 2px solid #e0e0e0;
|
|
border-radius: 20px;
|
|
background: #fff;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.swatch:hover {
|
|
border-color: #6B4E9B;
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.swatch.active {
|
|
border-color: #6B4E9B;
|
|
box-shadow: 0 0 0 2px rgba(107, 78, 155, 0.15);
|
|
background: #f4effa;
|
|
}
|
|
|
|
.swatch .dot {
|
|
width: 16px;
|
|
height: 16px;
|
|
border-radius: 50%;
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.swatch .name {
|
|
font-size: 0.85rem;
|
|
color: #333;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Variant System Styles */
|
|
.variant-section {
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.variant-swatches {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.variant-swatch {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 8px;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
position: relative;
|
|
min-width: 70px;
|
|
}
|
|
|
|
.variant-swatch:hover {
|
|
background: #f5f5f5;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.variant-swatch.selected {
|
|
background: #f4effa;
|
|
}
|
|
|
|
.variant-dot {
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 50%;
|
|
transition: box-shadow 0.2s ease;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.variant-swatch:hover .variant-dot {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.variant-name {
|
|
font-size: 0.8rem;
|
|
color: #333;
|
|
font-weight: 500;
|
|
text-align: center;
|
|
max-width: 80px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.variant-badge {
|
|
position: absolute;
|
|
top: 2px;
|
|
right: 2px;
|
|
background: #ff6b6b;
|
|
color: white;
|
|
font-size: 0.65rem;
|
|
padding: 2px 6px;
|
|
border-radius: 10px;
|
|
font-weight: 600;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.variant-badge.out-of-stock {
|
|
background: #999;
|
|
}
|
|
|
|
.short-description {
|
|
font-size: 0.95rem;
|
|
color: #666;
|
|
margin-top: 8px;
|
|
margin-bottom: 12px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.price-row {
|
|
display: flex;
|
|
align-items: baseline;
|
|
gap: 8px;
|
|
border-top: 1px solid #e5e5e5;
|
|
padding-top: 12px;
|
|
padding-bottom: 4px;
|
|
margin-top: 6px;
|
|
margin-bottom: -6px;
|
|
}
|
|
|
|
.price-row .label {
|
|
color: #555;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.price-row .price {
|
|
font-size: 1.8rem;
|
|
font-weight: 700;
|
|
color: #2C2C2C;
|
|
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
|
|
}
|
|
|
|
.stock-row {
|
|
margin: 0px 0 10px;
|
|
}
|
|
|
|
.stock {
|
|
font-size: 1rem;
|
|
font-weight: 500;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.stock.ok {
|
|
color: #28a745;
|
|
}
|
|
|
|
.stock.bad {
|
|
color: #dc3545;
|
|
}
|
|
|
|
.stock-bar {
|
|
height: 6px;
|
|
border-radius: 3px;
|
|
width: 100%;
|
|
}
|
|
|
|
.stock-bar.green {
|
|
background: #28a745;
|
|
}
|
|
|
|
.stock-bar.red {
|
|
background: #dc3545;
|
|
}
|
|
|
|
.qty-row {
|
|
margin: 16px 0 20px;
|
|
}
|
|
|
|
.qty-row .qty-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.qty-row .label {
|
|
font-weight: 600;
|
|
color: #333;
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.qty-row .stock-count {
|
|
font-size: 0.85rem;
|
|
color: #666;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.qty {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
border: 1px solid #e0e0e0;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
background: #fff;
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.qty .qty-btn {
|
|
width: 28px;
|
|
height: 28px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 0.85rem;
|
|
color: #555;
|
|
background: #f5f5f5;
|
|
border: none;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.qty .qty-btn:hover:not(:disabled) {
|
|
background: #6B4E9B;
|
|
color: #fff;
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.qty .qty-btn:disabled {
|
|
opacity: 0.3;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.qty .qty-btn i {
|
|
line-height: 1;
|
|
}
|
|
|
|
.qty input {
|
|
width: 45px;
|
|
height: 28px;
|
|
text-align: center;
|
|
border: none;
|
|
border-left: 1px solid #e0e0e0;
|
|
border-right: 1px solid #e0e0e0;
|
|
font-weight: 600;
|
|
font-size: 0.9rem;
|
|
font-size: 0.95rem;
|
|
color: #333;
|
|
background: #fff;
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
gap: 12px;
|
|
margin-top: 14px;
|
|
}
|
|
|
|
.actions .cta {
|
|
flex: 1;
|
|
padding: 16px 30px;
|
|
border: none;
|
|
border-radius: 8px;
|
|
font-weight: 700;
|
|
background: linear-gradient(135deg, #FF6B9D 0%, #C2185B 100%);
|
|
color: #fff;
|
|
display: inline-flex;
|
|
box-shadow: 0 4px 15px rgba(194, 24, 91, 0.3);
|
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
box-shadow: var(--shadow-sm);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.actions .cta:hover {
|
|
transform: translateY(-2px) scale(1.02);
|
|
box-shadow: 0 6px 25px rgba(194, 24, 91, 0.45);
|
|
background: linear-gradient(135deg, #FF7BA8 0%, #D81B60 100%);
|
|
}
|
|
|
|
.actions .cta.alt {
|
|
background: linear-gradient(135deg, #8E24AA 0%, #6A1B9A 100%);
|
|
box-shadow: 0 4px 15px rgba(142, 36, 170, 0.3);
|
|
}
|
|
|
|
.actions .cta.alt:hover {
|
|
background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
|
|
box-shadow: 0 6px 25px rgba(142, 36, 170, 0.45);
|
|
transform: translateY(-2px) scale(1.02);
|
|
}
|
|
|
|
.actions .cta i {
|
|
font-size: 1.05rem;
|
|
}
|
|
|
|
.short {
|
|
margin-top: 16px;
|
|
padding: 16px 18px;
|
|
background: #f8f9fa;
|
|
border-left: 4px solid #6B4E9B;
|
|
border-radius: 6px;
|
|
font-family: 'Roboto', 'Segoe UI', sans-serif;
|
|
font-size: 0.95rem;
|
|
color: #555;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Description Container - Modern Tabbed Box */
|
|
.description-container {
|
|
margin-top: 32px;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.description-tab {
|
|
background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
|
|
color: white;
|
|
padding: 14px 20px;
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
border-radius: 8px 8px 0 0;
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
box-shadow: 0 2px 4px rgba(124, 58, 237, 0.2);
|
|
transition: all 0.3s ease;
|
|
user-select: none;
|
|
}
|
|
|
|
.description-tab:hover {
|
|
background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
|
|
box-shadow: 0 4px 8px rgba(124, 58, 237, 0.3);
|
|
}
|
|
|
|
.description-tab i {
|
|
font-size: 1.2rem;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.description-box {
|
|
border: 2px solid #e8e8e8;
|
|
border-top: none;
|
|
border-radius: 0 0 8px 8px;
|
|
background: white;
|
|
overflow: hidden;
|
|
transition: all 0.4s ease;
|
|
max-height: 2000px;
|
|
opacity: 1;
|
|
}
|
|
|
|
.description-box.closed {
|
|
max-height: 0;
|
|
opacity: 0;
|
|
border: none;
|
|
}
|
|
|
|
.description-content {
|
|
padding: 24px;
|
|
color: #4a4a4a;
|
|
line-height: 1.8;
|
|
font-family: 'Roboto', 'Segoe UI', sans-serif;
|
|
font-size: 1rem;
|
|
max-height: none;
|
|
overflow: hidden;
|
|
transition: max-height 0.4s ease;
|
|
}
|
|
|
|
.description-content.collapsed {
|
|
max-height: 250px;
|
|
position: relative;
|
|
}
|
|
|
|
.description-content.collapsed::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 80px;
|
|
background: linear-gradient(to bottom, transparent, white);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.description-content p {
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.description-content h4 {
|
|
font-size: 1.15rem;
|
|
font-weight: 600;
|
|
color: #333;
|
|
margin: 20px 0 10px;
|
|
}
|
|
|
|
.description-content ul,
|
|
.description-content ol {
|
|
padding-left: 24px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.description-content li {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.see-more-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 6px;
|
|
width: 100%;
|
|
padding: 12px;
|
|
border: none;
|
|
border-top: 1px solid #e8e8e8;
|
|
background: #f8f9fa;
|
|
color: #7c3aed;
|
|
font-weight: 600;
|
|
font-size: 0.95rem;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.see-more-btn:hover {
|
|
background: #7c3aed;
|
|
color: white;
|
|
}
|
|
|
|
.see-more-btn i {
|
|
font-size: 1rem;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
/* Legacy desc-block for backwards compatibility */
|
|
.desc-block {
|
|
margin-top: 32px;
|
|
padding: 0;
|
|
background: transparent;
|
|
border: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.desc-block h3 {
|
|
font-size: 1.5rem;
|
|
font-weight: 600;
|
|
color: #2C2C2C;
|
|
margin-bottom: 16px;
|
|
padding-bottom: 12px;
|
|
border-bottom: 2px solid #e8e8e8;
|
|
font-family: 'Roboto', 'Segoe UI', sans-serif;
|
|
letter-spacing: -0.5px;
|
|
}
|
|
|
|
.desc-block .content {
|
|
color: #4a4a4a;
|
|
line-height: 1.8;
|
|
font-family: 'Roboto', 'Segoe UI', sans-serif;
|
|
font-size: 1rem;
|
|
padding: 8px 0;
|
|
}
|
|
|
|
.desc-block .content p {
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.desc-block .content h4 {
|
|
font-size: 1.15rem;
|
|
font-weight: 600;
|
|
color: #333;
|
|
margin: 20px 0 10px;
|
|
}
|
|
|
|
.desc-block .content ul,
|
|
.desc-block .content ol {
|
|
padding-left: 24px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.desc-block .content li {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
/* Related Products Cards - Matches Shop Page Style */
|
|
.product-link {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
display: block;
|
|
}
|
|
|
|
/* ====================================
|
|
Sky Art Shop - Main Stylesheet
|
|
==================================== */
|
|
|
|
/* ====================================
|
|
CSS Variables
|
|
==================================== */
|
|
:root {
|
|
--primary-color: #6B4E9B;
|
|
--primary-dark: #563D7C;
|
|
--secondary-color: #E91E63;
|
|
--accent-color: #FF9800;
|
|
--text-color: #2C3E50;
|
|
--text-light: #5A6C7D;
|
|
--bg-color: #FFFFFF;
|
|
--bg-light: #F8F9FA;
|
|
--bg-dark: #2C2C2C;
|
|
--border-color: #E1E8ED;
|
|
--success-color: #4CAF50;
|
|
--error-color: #F44336;
|
|
|
|
--font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
|
|
--font-heading: 'Georgia', 'Times New Roman', serif;
|
|
|
|
--transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
--transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
|
|
--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
|
|
--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
--shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
|
|
--shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
|
|
|
|
--container-width: 1200px;
|
|
--spacing-xs: 0.5rem;
|
|
--spacing-sm: 1rem;
|
|
--spacing-md: 2rem;
|
|
--spacing-lg: 3rem;
|
|
--spacing-xl: 4rem;
|
|
}
|
|
|
|
/* ====================================
|
|
Reset & Base Styles
|
|
==================================== */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
font-size: 16px;
|
|
scroll-behavior: smooth;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-primary);
|
|
color: var(--text-color);
|
|
background-color: var(--bg-color);
|
|
line-height: 1.7;
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
letter-spacing: 0.01em;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
main {
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
.footer {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
transition: var(--transition-fast);
|
|
}
|
|
|
|
a:hover {
|
|
opacity: 0.85;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
}
|
|
|
|
button {
|
|
cursor: pointer;
|
|
border: none;
|
|
background: none;
|
|
font-family: inherit;
|
|
transition: var(--transition-fast);
|
|
}
|
|
|
|
button:focus-visible,
|
|
a:focus-visible,
|
|
input:focus-visible,
|
|
textarea:focus-visible {
|
|
outline: 2px solid var(--primary-color);
|
|
outline-offset: 2px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
/* ====================================
|
|
Typography - Default styles that respect inline styles from CKEditor
|
|
==================================== */
|
|
h1:not([style*="margin"]):not([style*="line-height"]),
|
|
h2:not([style*="margin"]):not([style*="line-height"]),
|
|
h3:not([style*="margin"]):not([style*="line-height"]),
|
|
h4:not([style*="margin"]):not([style*="line-height"]),
|
|
h5:not([style*="margin"]):not([style*="line-height"]),
|
|
h6:not([style*="margin"]):not([style*="line-height"]) {
|
|
font-family: var(--font-heading);
|
|
line-height: 1.2;
|
|
margin-bottom: var(--spacing-sm);
|
|
font-weight: 600;
|
|
}
|
|
|
|
h1:not([style*="font-size"]) {
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
h2:not([style*="font-size"]) {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
h3:not([style*="font-size"]) {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
p:not([style*="margin"]) {
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
/* ====================================
|
|
Container & Layout
|
|
==================================== */
|
|
.container {
|
|
max-width: var(--container-width);
|
|
margin: 0 auto;
|
|
padding: 0 var(--spacing-md);
|
|
}
|
|
|
|
/* ====================================
|
|
Navigation Bar
|
|
==================================== */
|
|
.navbar {
|
|
background-color: var(--bg-color);
|
|
box-shadow: var(--shadow-sm);
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.navbar-content {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 1rem 2rem;
|
|
position: relative;
|
|
}
|
|
|
|
.nav-brand {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.nav-brand a {
|
|
text-decoration: none;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.logo-image {
|
|
width: 50px;
|
|
height: 50px;
|
|
object-fit: cover;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.nav-brand h1 {
|
|
font-size: 1.8rem;
|
|
color: var(--primary-color);
|
|
margin: 0;
|
|
}
|
|
|
|
.nav-center {
|
|
position: absolute;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
display: flex;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.nav-center .nav-menu {
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.nav-menu {
|
|
display: flex;
|
|
gap: 2rem;
|
|
align-items: center;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.nav-menu li {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.nav-menu a {
|
|
color: var(--text-color);
|
|
font-weight: 500;
|
|
transition: var(--transition);
|
|
position: relative;
|
|
white-space: nowrap;
|
|
text-decoration: none;
|
|
padding: 0.5rem 0;
|
|
display: block;
|
|
}
|
|
|
|
.nav-menu a:hover,
|
|
.nav-menu a.active {
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.nav-menu a.active::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 2px;
|
|
background-color: var(--primary-color);
|
|
}
|
|
|
|
.nav-icons {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.nav-icon {
|
|
position: relative;
|
|
color: var(--text-color);
|
|
font-size: 1.5rem;
|
|
transition: var(--transition);
|
|
text-decoration: none;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.nav-icon:hover {
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.nav-icon .badge {
|
|
position: absolute;
|
|
top: -8px;
|
|
right: -8px;
|
|
background-color: var(--primary-color);
|
|
color: white;
|
|
font-size: 0.7rem;
|
|
font-weight: 600;
|
|
padding: 2px 6px;
|
|
border-radius: 10px;
|
|
min-width: 18px;
|
|
text-align: center;
|
|
line-height: 1;
|
|
display: none;
|
|
}
|
|
|
|
/* Cart and Wishlist Dropdown */
|
|
.dropdown-container {
|
|
position: relative;
|
|
}
|
|
|
|
.icon-dropdown {
|
|
display: none;
|
|
position: absolute;
|
|
top: calc(100% + 15px);
|
|
right: 0;
|
|
background: white;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
|
|
width: 350px;
|
|
max-height: 450px;
|
|
z-index: 1002;
|
|
animation: dropdownFadeIn 0.2s ease;
|
|
}
|
|
|
|
.icon-dropdown.show {
|
|
display: block;
|
|
}
|
|
|
|
@keyframes dropdownFadeIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(-10px);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.dropdown-header {
|
|
padding: 15px 20px;
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
|
|
.dropdown-header h4 {
|
|
margin: 0;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.dropdown-items {
|
|
max-height: 300px;
|
|
overflow-y: auto;
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.dropdown-items .empty-message {
|
|
padding: 40px 20px;
|
|
text-align: center;
|
|
color: #999;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.dropdown-item {
|
|
display: flex;
|
|
gap: 12px;
|
|
padding: 12px 20px;
|
|
border-bottom: 1px solid #f5f5f5;
|
|
transition: background 0.2s;
|
|
}
|
|
|
|
.dropdown-item:hover {
|
|
background: #fafafa;
|
|
}
|
|
|
|
.dropdown-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.dropdown-item-image {
|
|
width: 60px;
|
|
height: 60px;
|
|
object-fit: cover;
|
|
border-radius: 6px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.dropdown-item-info {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.dropdown-item-name {
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
color: var(--text-color);
|
|
margin-bottom: 4px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.dropdown-item-details {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: 0.85rem;
|
|
color: #666;
|
|
}
|
|
|
|
.dropdown-item-quantity {
|
|
color: #999;
|
|
}
|
|
|
|
.dropdown-item-price {
|
|
font-weight: 600;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.dropdown-item-remove {
|
|
background: none;
|
|
border: none;
|
|
color: #999;
|
|
cursor: pointer;
|
|
padding: 4px;
|
|
font-size: 1.2rem;
|
|
line-height: 1;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.dropdown-item-remove:hover {
|
|
color: #e74c3c;
|
|
}
|
|
|
|
.dropdown-footer {
|
|
padding: 15px 20px;
|
|
border-top: 1px solid #eee;
|
|
}
|
|
|
|
.dropdown-total {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-weight: 600;
|
|
font-size: 1rem;
|
|
margin-bottom: 12px;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.dropdown-total span:last-child {
|
|
color: var(--primary-color);
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.btn-checkout,
|
|
.btn-view-all {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 10px;
|
|
text-align: center;
|
|
background: var(--primary-color) !important;
|
|
color: white !important;
|
|
text-decoration: none !important;
|
|
border-radius: 6px;
|
|
font-weight: 500;
|
|
transition: all 0.3s ease;
|
|
transform: scale(1);
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.btn-checkout:hover,
|
|
.btn-view-all:hover {
|
|
background: var(--primary-color) !important;
|
|
color: white !important;
|
|
text-decoration: none !important;
|
|
transform: scale(1.05);
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.btn-checkout:focus,
|
|
.btn-view-all:focus,
|
|
.btn-checkout:active,
|
|
.btn-view-all:active,
|
|
.btn-checkout:visited,
|
|
.btn-view-all:visited {
|
|
background: var(--primary-color) !important;
|
|
color: white !important;
|
|
text-decoration: none !important;
|
|
}
|
|
|
|
.nav-toggle {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
padding: 10px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.nav-toggle span {
|
|
width: 25px;
|
|
height: 3px;
|
|
background-color: var(--text-color);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.nav-toggle:hover span {
|
|
background-color: var(--primary-color);
|
|
}
|
|
|
|
.nav-dropdown {
|
|
display: none;
|
|
position: absolute;
|
|
top: 100%;
|
|
right: 2rem;
|
|
background-color: white;
|
|
box-shadow: var(--shadow-md);
|
|
border-radius: 8px;
|
|
min-width: 250px;
|
|
z-index: 1001;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.nav-dropdown.active {
|
|
display: block;
|
|
}
|
|
|
|
.nav-dropdown .nav-menu {
|
|
flex-direction: column;
|
|
padding: var(--spacing-sm);
|
|
gap: 0;
|
|
}
|
|
|
|
.nav-dropdown .nav-menu li {
|
|
width: 100%;
|
|
border-bottom: 1px solid #f0f0f0;
|
|
}
|
|
|
|
.nav-dropdown .nav-menu li:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.nav-dropdown .nav-menu a {
|
|
display: block;
|
|
padding: 12px 16px;
|
|
width: 100%;
|
|
text-align: left;
|
|
}
|
|
|
|
.nav-dropdown .nav-menu a:hover {
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.nav-dropdown .nav-menu a.active::after {
|
|
display: none;
|
|
}
|
|
|
|
/* ====================================
|
|
Hero Section
|
|
==================================== */
|
|
.hero {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: var(--spacing-lg);
|
|
align-items: center;
|
|
padding: var(--spacing-xl) var(--spacing-md);
|
|
background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 50%, #f48fb1 100%);
|
|
min-height: 550px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -50%;
|
|
right: -20%;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: radial-gradient(circle, rgba(244, 143, 177, 0.15) 0%, transparent 70%);
|
|
z-index: 0;
|
|
}
|
|
|
|
.hero>* {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.hero-content {
|
|
padding: 0 var(--spacing-md);
|
|
}
|
|
|
|
.hero-content h2 {
|
|
font-size: 3rem;
|
|
color: #c2185b;
|
|
margin-bottom: var(--spacing-md);
|
|
line-height: 1.2;
|
|
text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
|
|
background: transparent !important;
|
|
padding: 0;
|
|
}
|
|
|
|
.hero-content p {
|
|
font-size: 1.2rem;
|
|
color: #5d4037;
|
|
margin-bottom: var(--spacing-md);
|
|
background: transparent !important;
|
|
padding: 0 !important;
|
|
text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
.hero-content .hero-description {
|
|
font-size: 1rem;
|
|
color: #424242;
|
|
margin-bottom: var(--spacing-md);
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.hero-content .hero-description p:not([style]) {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.hero-content .hero-description ul:not([style]),
|
|
.hero-content .hero-description ol:not([style]) {
|
|
margin-left: 1.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.hero-content .hero-description h1:not([style]),
|
|
.hero-content .hero-description h2:not([style]),
|
|
.hero-content .hero-description h3:not([style]) {
|
|
margin-top: 1.5rem;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.hero-image {
|
|
position: relative;
|
|
overflow: hidden;
|
|
border-radius: 10px;
|
|
padding-right: 2rem;
|
|
}
|
|
|
|
.hero-image img {
|
|
width: 100%;
|
|
height: 500px;
|
|
object-fit: cover;
|
|
transition: transform 0.5s ease;
|
|
}
|
|
|
|
.hero-image:hover img {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
/* ====================================
|
|
Buttons
|
|
==================================== */
|
|
.btn {
|
|
display: inline-block;
|
|
padding: 12px 30px;
|
|
border-radius: 8px;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
cursor: pointer;
|
|
border: none;
|
|
font-family: var(--font-primary);
|
|
letter-spacing: 0.02em;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: linear-gradient(135deg, #f06292 0%, #ec407a 100%);
|
|
color: white;
|
|
box-shadow: 0 2px 8px rgba(236, 64, 122, 0.3);
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background: linear-gradient(135deg, #ec407a 0%, #e91e63 100%);
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 6px 16px rgba(236, 64, 122, 0.4);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: linear-gradient(135deg, #f48fb1 0%, #f06292 100%);
|
|
color: white;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background: linear-gradient(135deg, #f06292 0%, #ec407a 100%);
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 6px 16px rgba(240, 98, 146, 0.3);
|
|
}
|
|
|
|
.btn-small {
|
|
padding: 8px 20px;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.btn-icon {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
padding: 10px 16px;
|
|
}
|
|
|
|
.btn-icon svg {
|
|
pointer-events: none;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* ====================================
|
|
Sections
|
|
==================================== */
|
|
section {
|
|
padding: var(--spacing-xl) 0;
|
|
}
|
|
|
|
.section-subtitle {
|
|
text-align: center;
|
|
font-size: 1.1rem;
|
|
color: var(--text-light);
|
|
margin-bottom: var(--spacing-lg);
|
|
}
|
|
|
|
/* ====================================
|
|
Inspiration Section
|
|
==================================== */
|
|
.inspiration {
|
|
background-color: var(--bg-light);
|
|
padding: var(--spacing-xl) 0;
|
|
}
|
|
|
|
.inspiration h2 {
|
|
text-align: center;
|
|
color: var(--primary-color);
|
|
margin-bottom: var(--spacing-lg);
|
|
}
|
|
|
|
.inspiration-content {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: var(--spacing-lg);
|
|
align-items: center;
|
|
}
|
|
|
|
.inspiration-text p {
|
|
font-size: 1.1rem;
|
|
line-height: 1.8;
|
|
color: var(--text-color);
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.inspiration-image {
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
|
|
.inspiration-image img {
|
|
width: 100%;
|
|
height: 400px;
|
|
object-fit: cover;
|
|
}
|
|
|
|
/* ====================================
|
|
Collection Section
|
|
==================================== */
|
|
.collection {
|
|
text-align: center;
|
|
}
|
|
|
|
.collection h2 {
|
|
color: var(--primary-color);
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.collection-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: var(--spacing-md);
|
|
margin: var(--spacing-lg) 0;
|
|
}
|
|
|
|
.collection-item {
|
|
background-color: white;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
box-shadow: var(--shadow-sm);
|
|
transition: var(--transition);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.collection-item:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: var(--shadow-lg);
|
|
}
|
|
|
|
.collection-item img {
|
|
width: 100%;
|
|
height: 250px;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.collection-item h3 {
|
|
padding: var(--spacing-sm);
|
|
color: var(--text-color);
|
|
}
|
|
|
|
/* ====================================
|
|
Promotion Section
|
|
==================================== */
|
|
.promotion {
|
|
background: linear-gradient(135deg, #f8bbd0 0%, #f48fb1 50%, #f06292 100%);
|
|
color: #333;
|
|
padding: var(--spacing-xl) 0;
|
|
}
|
|
|
|
.promotion .container {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: var(--spacing-md);
|
|
}
|
|
|
|
.promo-card {
|
|
background-color: rgba(255, 255, 255, 0.95);
|
|
padding: var(--spacing-lg);
|
|
border-radius: 15px;
|
|
text-align: center;
|
|
transition: var(--transition);
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.promo-card:hover {
|
|
background-color: rgba(255, 255, 255, 1);
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.promo-card h2 {
|
|
color: #c2185b;
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.promo-description {
|
|
font-size: 1.1rem;
|
|
margin-bottom: var(--spacing-md);
|
|
color: #555;
|
|
}
|
|
|
|
.promo-card.featured {
|
|
background: linear-gradient(135deg, rgba(236, 64, 122, 0.15), rgba(240, 98, 146, 0.15));
|
|
border: 2px solid #ec407a;
|
|
}
|
|
|
|
/* ====================================
|
|
Products Grid
|
|
==================================== */
|
|
.products-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
|
|
gap: var(--spacing-md);
|
|
margin-top: var(--spacing-lg);
|
|
}
|
|
|
|
.product-card {
|
|
background-color: white;
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
box-shadow: var(--shadow-sm);
|
|
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
|
|
border: 1px solid var(--border-color);
|
|
}
|
|
|
|
.product-card:hover {
|
|
box-shadow: var(--shadow-hover);
|
|
transform: translateY(-8px);
|
|
border-color: var(--primary-color);
|
|
}
|
|
|
|
.product-image {
|
|
position: relative;
|
|
overflow: hidden;
|
|
height: 180px;
|
|
}
|
|
|
|
.product-image img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: transform 0.5s ease;
|
|
}
|
|
|
|
.product-card:hover .product-image img {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.product-card h3 {
|
|
padding: var(--spacing-sm);
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.product-color-badge {
|
|
display: inline-block;
|
|
margin: 0 var(--spacing-sm) var(--spacing-xs);
|
|
padding: 0.25rem 0.75rem;
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
background: var(--primary-color);
|
|
color: white;
|
|
border-radius: 12px;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.product-description {
|
|
padding: 0 var(--spacing-sm);
|
|
font-size: 0.9rem;
|
|
color: var(--text-light);
|
|
margin-bottom: var(--spacing-xs);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Product Description Rich Text Styles - Only if editor hasn't set custom styles */
|
|
.product-description p:not([style]) {
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
.product-description strong:not([style]),
|
|
.product-description b:not([style]) {
|
|
font-weight: bold;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.product-description em:not([style]),
|
|
.product-description i:not([style]) {
|
|
font-style: italic;
|
|
}
|
|
|
|
.product-description u:not([style]) {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.product-description ul:not([style]),
|
|
.product-description ol:not([style]) {
|
|
margin: 0.5em 0 0.5em 1.2em;
|
|
padding-left: 0;
|
|
}
|
|
|
|
.product-description li:not([style]) {
|
|
margin-bottom: 0.3em;
|
|
}
|
|
|
|
.price {
|
|
padding: 0 var(--spacing-sm);
|
|
font-size: 1.3rem;
|
|
font-weight: 700;
|
|
color: var(--primary-color);
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.product-card .btn {
|
|
width: calc(100% - var(--spacing-md));
|
|
margin: 0 var(--spacing-sm) var(--spacing-sm);
|
|
}
|
|
|
|
/* ====================================
|
|
Portfolio Section
|
|
==================================== */
|
|
.portfolio-hero,
|
|
.shop-hero,
|
|
.about-hero,
|
|
.contact-hero,
|
|
.category-hero {
|
|
text-align: center;
|
|
padding: 80px 0;
|
|
background: linear-gradient(135deg, #f06292 0%, #ec407a 50%, #e91e63 100%);
|
|
color: white;
|
|
margin-bottom: 0;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.portfolio-hero::before,
|
|
.shop-hero::before,
|
|
.about-hero::before,
|
|
.contact-hero::before,
|
|
.category-hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0, 0, 0, 0.1);
|
|
z-index: 1;
|
|
}
|
|
|
|
.portfolio-hero>*,
|
|
.shop-hero>*,
|
|
.about-hero>*,
|
|
.contact-hero>*,
|
|
.category-hero>* {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.portfolio-hero h1,
|
|
.shop-hero h1,
|
|
.about-hero h1,
|
|
.contact-hero h1,
|
|
.category-hero h1 {
|
|
color: #ffffff;
|
|
font-size: 3rem;
|
|
margin-bottom: var(--spacing-sm);
|
|
font-weight: 700;
|
|
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
|
|
letter-spacing: -0.5px;
|
|
}
|
|
|
|
.hero-subtitle {
|
|
font-size: 1.2rem;
|
|
color: #ffffff;
|
|
max-width: 700px;
|
|
margin: 0 auto;
|
|
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
|
|
font-weight: 400;
|
|
opacity: 0.95;
|
|
}
|
|
|
|
/* Remove white background from containers inside hero sections */
|
|
.portfolio-hero .container,
|
|
.shop-hero .container,
|
|
.about-hero .container,
|
|
.contact-hero .container,
|
|
.category-hero .container,
|
|
.hero .container {
|
|
background-color: transparent !important;
|
|
background: none !important;
|
|
}
|
|
|
|
.portfolio-gallery {
|
|
padding: var(--spacing-xl) 0;
|
|
}
|
|
|
|
.portfolio-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: var(--spacing-lg);
|
|
}
|
|
|
|
.portfolio-category {
|
|
position: relative;
|
|
overflow: hidden;
|
|
border-radius: 10px;
|
|
box-shadow: var(--shadow-md);
|
|
height: 400px;
|
|
}
|
|
|
|
.category-link {
|
|
display: block;
|
|
height: 100%;
|
|
}
|
|
|
|
.category-image {
|
|
position: relative;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.category-image img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: transform 0.5s ease;
|
|
}
|
|
|
|
.category-overlay {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
|
|
padding: var(--spacing-md);
|
|
color: white;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.category-overlay h2 {
|
|
color: white;
|
|
margin: 0;
|
|
}
|
|
|
|
.portfolio-category:hover .category-image img {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.portfolio-category:hover .category-overlay {
|
|
background: linear-gradient(to top, rgba(107, 78, 155, 0.9), transparent);
|
|
}
|
|
|
|
/* ====================================
|
|
Breadcrumb
|
|
==================================== */
|
|
.breadcrumb {
|
|
padding: var(--spacing-sm) 0;
|
|
background-color: var(--bg-light);
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.breadcrumb a {
|
|
color: var(--primary-color);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.breadcrumb a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.breadcrumb span {
|
|
color: var(--text-light);
|
|
}
|
|
|
|
/* ====================================
|
|
Projects Gallery
|
|
==================================== */
|
|
.projects-gallery {
|
|
padding: var(--spacing-xl) 0;
|
|
}
|
|
|
|
.projects-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
|
gap: var(--spacing-lg);
|
|
}
|
|
|
|
.project-card {
|
|
background-color: white;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
box-shadow: var(--shadow-sm);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.project-card:hover {
|
|
box-shadow: var(--shadow-lg);
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.project-image {
|
|
height: 300px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.project-image img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transition: transform 0.5s ease;
|
|
}
|
|
|
|
.project-card:hover .project-image img {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.project-info {
|
|
padding: var(--spacing-md);
|
|
}
|
|
|
|
.project-info h3 {
|
|
color: var(--primary-color);
|
|
margin-bottom: var(--spacing-xs);
|
|
}
|
|
|
|
.project-date {
|
|
color: var(--text-light);
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
/* ====================================
|
|
Shop Page
|
|
==================================== */
|
|
.shop-filters {
|
|
background-color: var(--bg-light);
|
|
padding: var(--spacing-md) 0;
|
|
}
|
|
|
|
.filter-bar {
|
|
display: flex;
|
|
gap: var(--spacing-md);
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.filter-group {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--spacing-xs);
|
|
}
|
|
|
|
.filter-group label {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.filter-group select {
|
|
padding: 8px 15px;
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 5px;
|
|
font-family: inherit;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.shop-products {
|
|
padding: var(--spacing-xl) 0;
|
|
}
|
|
|
|
/* ====================================
|
|
About Page
|
|
==================================== */
|
|
.about-content {
|
|
padding: var(--spacing-xl) 0;
|
|
}
|
|
|
|
.about-layout {
|
|
display: grid;
|
|
grid-template-columns: 1fr 350px;
|
|
gap: var(--spacing-xl);
|
|
}
|
|
|
|
.about-main-content {
|
|
min-width: 0;
|
|
}
|
|
|
|
.content-wrapper {
|
|
max-width: 100%;
|
|
}
|
|
|
|
/* Only apply default styles if CKEditor hasn't set inline styles */
|
|
.content-wrapper h2:not([style]) {
|
|
color: var(--primary-color);
|
|
margin-top: var(--spacing-md);
|
|
margin-bottom: var(--spacing-sm);
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.content-wrapper h3:not([style]) {
|
|
color: var(--text-color);
|
|
margin-top: var(--spacing-md);
|
|
margin-bottom: var(--spacing-sm);
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.content-wrapper p:not([style]) {
|
|
margin-bottom: 1rem;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.content-wrapper ul:not([style]) {
|
|
list-style: disc;
|
|
padding-left: 1.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.content-wrapper ol:not([style]) {
|
|
list-style: decimal;
|
|
padding-left: 1.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.content-wrapper li:not([style]) {
|
|
margin-bottom: 0.5rem;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.content-wrapper img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
border-radius: 10px;
|
|
box-shadow: var(--shadow-md);
|
|
margin: var(--spacing-md) 0;
|
|
}
|
|
|
|
/* About Sidebar Image Gallery */
|
|
.about-sidebar {
|
|
position: relative;
|
|
height: fit-content;
|
|
}
|
|
|
|
.sidebar-images {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--spacing-md);
|
|
}
|
|
|
|
.sidebar-image-item {
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
box-shadow: var(--shadow-md);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.sidebar-image-item:hover {
|
|
transform: translateY(-4px);
|
|
box-shadow: var(--shadow-hover);
|
|
}
|
|
|
|
.sidebar-image-item img {
|
|
width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
object-fit: cover;
|
|
}
|
|
|
|
/* Team Section */
|
|
.team-section {
|
|
padding: var(--spacing-xl) 0;
|
|
background: var(--bg-light);
|
|
}
|
|
|
|
.section-header h2 {
|
|
color: var(--primary-color);
|
|
font-size: 2.5rem;
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.section-header .lead {
|
|
color: var(--text-muted);
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.team-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(240px, 300px));
|
|
gap: var(--spacing-lg);
|
|
justify-content: center;
|
|
}
|
|
|
|
.team-member-card {
|
|
background: white;
|
|
border-radius: 12px;
|
|
padding: var(--spacing-lg);
|
|
text-align: center;
|
|
box-shadow: var(--shadow-md);
|
|
transition: var(--transition);
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.team-member-card:hover {
|
|
transform: translateY(-8px);
|
|
box-shadow: var(--shadow-hover);
|
|
}
|
|
|
|
.team-member-info {
|
|
padding: 0 var(--spacing-sm);
|
|
margin-bottom: var(--spacing-xl);
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.member-name {
|
|
font-size: 1.5rem;
|
|
color: var(--text-color);
|
|
margin-bottom: var(--spacing-xs);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.member-role {
|
|
font-size: 1rem;
|
|
color: var(--primary-color);
|
|
font-weight: 500;
|
|
margin-bottom: var(--spacing-sm);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.member-bio {
|
|
font-size: 0.95rem;
|
|
color: var(--text-muted);
|
|
line-height: 1.6;
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.team-member-photo {
|
|
margin-top: auto;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.team-member-photo img {
|
|
width: 180px;
|
|
height: 180px;
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
border: 4px solid var(--primary-color);
|
|
box-shadow: 0 4px 12px rgba(107, 78, 155, 0.2);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.team-member-card:hover .team-member-photo img {
|
|
border-color: var(--primary-dark);
|
|
box-shadow: 0 8px 20px rgba(107, 78, 155, 0.3);
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
/* Legacy styles for fallback */
|
|
.about-grid {
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr;
|
|
gap: var(--spacing-lg);
|
|
}
|
|
|
|
.about-text h2 {
|
|
color: var(--primary-color);
|
|
margin-top: var(--spacing-md);
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.about-text ul {
|
|
list-style: disc;
|
|
padding-left: var(--spacing-md);
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.about-text li {
|
|
margin-bottom: var(--spacing-xs);
|
|
}
|
|
|
|
.about-images {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--spacing-md);
|
|
}
|
|
|
|
.about-images img {
|
|
width: 100%;
|
|
border-radius: 10px;
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
|
|
/* Responsive Design */
|
|
@media (max-width: 992px) {
|
|
.about-layout {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.about-sidebar {
|
|
position: relative;
|
|
top: 0;
|
|
}
|
|
|
|
.sidebar-images {
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
gap: var(--spacing-sm);
|
|
}
|
|
|
|
.sidebar-image-item {
|
|
flex: 1 1 calc(50% - var(--spacing-sm));
|
|
min-width: 200px;
|
|
}
|
|
|
|
.team-grid {
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
}
|
|
}
|
|
|
|
/* ====================================
|
|
Contact Page
|
|
==================================== */
|
|
.contact-form-section {
|
|
padding: var(--spacing-xl) 0;
|
|
}
|
|
|
|
.contact-form-wrapper {
|
|
max-width: 700px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.contact-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 2fr;
|
|
gap: var(--spacing-lg);
|
|
}
|
|
|
|
.contact-info {
|
|
background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
|
|
padding: var(--spacing-lg);
|
|
border-radius: 15px;
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.contact-info h2 {
|
|
color: #c2185b;
|
|
margin-bottom: var(--spacing-md);
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.contact-item {
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.contact-item h3 {
|
|
font-size: 1rem;
|
|
margin-bottom: var(--spacing-xs);
|
|
color: #c2185b;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.contact-item a {
|
|
color: #333;
|
|
}
|
|
|
|
.contact-item a:hover {
|
|
color: #ec407a;
|
|
}
|
|
|
|
.contact-form {
|
|
background-color: white;
|
|
padding: var(--spacing-xl);
|
|
border-radius: 15px;
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.contact-form h2 {
|
|
color: #c2185b;
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.form-group label {
|
|
display: block;
|
|
margin-bottom: var(--spacing-xs);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.form-group input,
|
|
.form-group select,
|
|
.form-group textarea {
|
|
width: 100%;
|
|
padding: 12px;
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 5px;
|
|
font-family: inherit;
|
|
font-size: 1rem;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.form-group input:focus,
|
|
.form-group select:focus,
|
|
.form-group textarea:focus {
|
|
outline: none;
|
|
border-color: #f06292;
|
|
box-shadow: 0 0 0 3px rgba(240, 98, 146, 0.15);
|
|
}
|
|
|
|
/* ====================================
|
|
Footer
|
|
==================================== */
|
|
.footer {
|
|
background: #1a1a1a !important;
|
|
color: #e0e0e0;
|
|
padding: var(--spacing-xl) 0 var(--spacing-md);
|
|
box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.footer-content {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: var(--spacing-lg);
|
|
margin-bottom: var(--spacing-lg);
|
|
}
|
|
|
|
.footer-brand h2 {
|
|
color: #ffffff;
|
|
margin-bottom: var(--spacing-sm);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.footer-brand p {
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.social-links {
|
|
display: flex;
|
|
gap: var(--spacing-sm);
|
|
}
|
|
|
|
.social-links a {
|
|
color: white;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.social-links a:hover {
|
|
color: var(--accent-color);
|
|
transform: translateY(-3px);
|
|
}
|
|
|
|
.footer-links h3 {
|
|
color: white;
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.footer-links ul li {
|
|
margin-bottom: var(--spacing-xs);
|
|
}
|
|
|
|
.footer-links a {
|
|
color: #b0b0b0;
|
|
transition: var(--transition);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.footer-links a:hover {
|
|
color: #ffffff;
|
|
transform: translateX(3px);
|
|
}
|
|
|
|
.footer-bottom {
|
|
text-align: center;
|
|
padding-top: var(--spacing-md);
|
|
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|
color: #CCCCCC;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
/* ====================================
|
|
Responsive Design
|
|
==================================== */
|
|
|
|
/* Tablet */
|
|
@media (max-width: 768px) {
|
|
h1 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.nav-brand h1 {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.nav-center {
|
|
display: none;
|
|
}
|
|
|
|
.nav-dropdown {
|
|
display: none;
|
|
position: fixed;
|
|
left: 0;
|
|
top: 60px;
|
|
background-color: white;
|
|
width: 100%;
|
|
box-shadow: var(--shadow-md);
|
|
z-index: 999;
|
|
max-height: calc(100vh - 60px);
|
|
overflow-y: auto;
|
|
border-radius: 0;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.nav-dropdown.active {
|
|
display: block;
|
|
}
|
|
|
|
.nav-dropdown .nav-menu {
|
|
padding: var(--spacing-md) var(--spacing-sm);
|
|
}
|
|
|
|
.hero {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.hero-content h2 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.inspiration-content {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.collection-grid {
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
}
|
|
|
|
.portfolio-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.products-grid {
|
|
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
|
}
|
|
|
|
.about-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.contact-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.footer-content {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
/* Mobile */
|
|
@media (max-width: 480px) {
|
|
:root {
|
|
--spacing-md: 1rem;
|
|
--spacing-lg: 2rem;
|
|
--spacing-xl: 2.5rem;
|
|
}
|
|
|
|
.container {
|
|
padding: 0 var(--spacing-sm);
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.8rem;
|
|
}
|
|
|
|
.hero-content h2 {
|
|
font-size: 1.6rem;
|
|
}
|
|
|
|
.portfolio-hero h1,
|
|
.shop-hero h1,
|
|
.about-hero h1,
|
|
.contact-hero h1,
|
|
.category-hero h1 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.collection-grid,
|
|
.products-grid,
|
|
.projects-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.filter-bar {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.filter-group {
|
|
width: 100%;
|
|
}
|
|
|
|
.filter-group select {
|
|
width: 100%;
|
|
}
|
|
|
|
.page-hero h1 {
|
|
font-size: 2.2rem !important;
|
|
}
|
|
|
|
.hero-subtitle {
|
|
font-size: 1.2rem !important;
|
|
}
|
|
|
|
.content-wrapper {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.content-wrapper h1 {
|
|
font-size: 1.8rem !important;
|
|
}
|
|
|
|
.content-wrapper h2 {
|
|
font-size: 1.5rem !important;
|
|
}
|
|
|
|
.content-wrapper h3 {
|
|
font-size: 1.3rem !important;
|
|
}
|
|
|
|
.content-wrapper h4 {
|
|
font-size: 1.1rem !important;
|
|
}
|
|
|
|
.content-wrapper p {
|
|
font-size: 1rem !important;
|
|
}
|
|
}
|
|
|
|
/* ====================================
|
|
Page Content Styles
|
|
==================================== */
|
|
.page-hero {
|
|
background: linear-gradient(135deg, #EDAEF9 0%, #81B1FA 100%);
|
|
padding: 4rem 0 3rem;
|
|
text-align: center;
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.page-hero h1 {
|
|
font-size: 3.5rem;
|
|
font-family: var(--font-heading);
|
|
margin-bottom: 1rem;
|
|
font-weight: 700;
|
|
color: #ffffff !important;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.hero-subtitle {
|
|
font-size: 1.5rem;
|
|
color: #ffffff !important;
|
|
opacity: 0.95;
|
|
font-weight: 400;
|
|
line-height: 1.6;
|
|
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.page-content {
|
|
padding: 2rem 0 4rem;
|
|
}
|
|
|
|
.content-wrapper {
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
line-height: 1.8;
|
|
color: var(--text-color);
|
|
white-space: pre-wrap;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
/* Rich Text Editor Content Styles */
|
|
.content-wrapper h1,
|
|
.content-wrapper h2,
|
|
.content-wrapper h3,
|
|
.content-wrapper h4,
|
|
.content-wrapper h5,
|
|
.content-wrapper h6 {
|
|
margin-top: 1.5em;
|
|
margin-bottom: 0.75em;
|
|
line-height: 1.3;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.content-wrapper h1 {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.content-wrapper h2 {
|
|
font-size: 2rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.content-wrapper h3 {
|
|
font-size: 1.7rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.content-wrapper h4 {
|
|
font-size: 1.4rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.content-wrapper h5 {
|
|
font-size: 1.2rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.content-wrapper h6 {
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.content-wrapper p {
|
|
margin-bottom: 1.2em;
|
|
font-size: 1.1rem;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.content-wrapper ul,
|
|
.content-wrapper ol {
|
|
margin: 1em 0 1.5em 2em;
|
|
padding-left: 0;
|
|
}
|
|
|
|
/* Preserve inline styles from pasted content */
|
|
.content-wrapper [style*=\"font-weight\"],
|
|
.content-wrapper [style*=\"font-style\"],
|
|
.content-wrapper [style*=\"text-decoration\"],
|
|
.content-wrapper [style*=\"color\"],
|
|
.content-wrapper [style*=\"background\"],
|
|
.content-wrapper [style*=\"font-size\"],
|
|
.content-wrapper [style*=\"text-align\"],
|
|
.content-wrapper [style*=\"margin\"],
|
|
.content-wrapper [style*=\"padding\"] {
|
|
/* Inline styles preserved */
|
|
}
|
|
|
|
.content-wrapper strong,
|
|
.content-wrapper b {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.content-wrapper em,
|
|
.content-wrapper i {
|
|
font-style: italic;
|
|
}
|
|
|
|
.content-wrapper u {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.content-wrapper s,
|
|
.content-wrapper strike {
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
.content-wrapper br {
|
|
display: block;
|
|
margin: 0.5em 0;
|
|
content: \"\";
|
|
}
|
|
|
|
.content-wrapper div,
|
|
.content-wrapper span {
|
|
display: inline;
|
|
}
|
|
|
|
.content-wrapper div {
|
|
display: block;
|
|
}
|
|
|
|
.content-wrapper li {
|
|
margin-bottom: 0.5em;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.content-wrapper blockquote {
|
|
margin: 1.5em 0;
|
|
padding: 1em 1.5em;
|
|
background: var(--bg-light);
|
|
border-left: 4px solid var(--primary-color);
|
|
font-style: italic;
|
|
color: var(--text-light);
|
|
}
|
|
|
|
.content-wrapper img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
margin: 1.5em auto;
|
|
border-radius: 8px;
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
|
|
.content-wrapper a {
|
|
color: var(--primary-color);
|
|
text-decoration: none;
|
|
border-bottom: 1px solid transparent;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.content-wrapper a:hover {
|
|
border-bottom-color: var(--primary-color);
|
|
}
|
|
|
|
.content-wrapper table {
|
|
width: 100%;
|
|
margin: 1.5em 0;
|
|
border-collapse: collapse;
|
|
box-shadow: var(--shadow-sm);
|
|
}
|
|
|
|
.content-wrapper table th,
|
|
.content-wrapper table td {
|
|
padding: 0.75em;
|
|
border: 1px solid var(--border-color);
|
|
text-align: left;
|
|
}
|
|
|
|
.content-wrapper table th {
|
|
background: var(--primary-color);
|
|
color: white;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.content-wrapper table tr:nth-child(even) {
|
|
background: var(--bg-light);
|
|
}
|
|
|
|
.content-wrapper pre {
|
|
background: var(--bg-dark);
|
|
color: #f8f8f2;
|
|
padding: 1em;
|
|
border-radius: 4px;
|
|
overflow-x: auto;
|
|
margin: 1.5em 0;
|
|
font-family: 'Courier New', monospace;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.content-wrapper code {
|
|
background: var(--bg-light);
|
|
padding: 0.2em 0.4em;
|
|
border-radius: 3px;
|
|
font-family: 'Courier New', monospace;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.content-wrapper pre code {
|
|
background: none;
|
|
padding: 0;
|
|
color: inherit;
|
|
}
|
|
|
|
.content-wrapper hr {
|
|
margin: 2em 0;
|
|
border: none;
|
|
border-top: 2px solid var(--border-color);
|
|
}
|
|
|
|
/* ====================================
|
|
CKEditor Content Preservation - Allow Editor Formatting to Override CSS
|
|
==================================== */
|
|
/* Let inline styles from CKEditor override our CSS */
|
|
.content-wrapper [style],
|
|
.product-description [style],
|
|
.hero-description [style],
|
|
.inspiration-text [style],
|
|
.about-text [style],
|
|
.blog-content [style],
|
|
.project-info [style] {
|
|
/* Inline styles from editor take priority - this preserves spacing, colors, fonts */
|
|
/* No CSS property here will override inline styles */
|
|
}
|
|
|
|
/* Ensure consistent base spacing that can be overridden by inline styles */
|
|
.content-wrapper p:not([style*="margin"]),
|
|
.product-description p:not([style*="margin"]),
|
|
.hero-description p:not([style*="margin"]) {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.content-wrapper h1:not([style*="margin"]),
|
|
.content-wrapper h2:not([style*="margin"]),
|
|
.content-wrapper h3:not([style*="margin"]),
|
|
.content-wrapper h4:not([style*="margin"]) {
|
|
margin-top: 1.5em;
|
|
margin-bottom: 0.75em;
|
|
}
|
|
|
|
.content-wrapper h1:first-child,
|
|
.content-wrapper h2:first-child,
|
|
.content-wrapper h3:first-child,
|
|
.content-wrapper h4:first-child,
|
|
.content-wrapper p:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
/* Preserve list styling unless editor overrides */
|
|
.content-wrapper ul:not([style]),
|
|
.product-description ul:not([style]) {
|
|
list-style: disc;
|
|
padding-left: 1.5rem;
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.content-wrapper ol:not([style]),
|
|
.product-description ol:not([style]) {
|
|
list-style: decimal;
|
|
padding-left: 1.5rem;
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
/* ====================================
|
|
Utility Classes
|
|
==================================== */
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.mt-1 {
|
|
margin-top: var(--spacing-xs);
|
|
}
|
|
|
|
.mt-2 {
|
|
margin-top: var(--spacing-sm);
|
|
}
|
|
|
|
.mt-3 {
|
|
margin-top: var(--spacing-md);
|
|
}
|
|
|
|
.mt-4 {
|
|
margin-top: var(--spacing-lg);
|
|
}
|
|
|
|
.mb-1 {
|
|
margin-bottom: var(--spacing-xs);
|
|
}
|
|
|
|
.mb-2 {
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.mb-3 {
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.mb-4 {
|
|
margin-bottom: var(--spacing-lg);
|
|
}
|
|
|
|
/* ====================================
|
|
Dynamic Homepage Sections
|
|
==================================== */
|
|
.custom-section {
|
|
padding: 60px 0;
|
|
background: var(--bg-light);
|
|
}
|
|
|
|
.custom-section h2 {
|
|
font-size: 2.5rem;
|
|
color: var(--primary-color);
|
|
margin-bottom: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.custom-section .section-subtitle {
|
|
font-size: 1.2rem;
|
|
color: var(--text-light);
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.custom-section .img-fluid {
|
|
max-width: 100%;
|
|
height: auto;
|
|
border-radius: 8px;
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
|
|
/* Dynamic section content styling */
|
|
.inspiration-text p,
|
|
.custom-section p {
|
|
margin-bottom: 15px;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.inspiration-text ul,
|
|
.custom-section ul {
|
|
margin-left: 20px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.inspiration-text li,
|
|
.custom-section li {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
/* ====================================
|
|
Product Detail Page
|
|
==================================== */
|
|
.product-detail {
|
|
padding: var(--spacing-xl) 0;
|
|
background: #fff;
|
|
}
|
|
|
|
/* ====================================
|
|
PRODUCT DETAIL PAGE - CLEAN LAYOUT
|
|
==================================== */
|
|
|
|
.product-detail-page {
|
|
padding: 40px 0;
|
|
background: #fff;
|
|
}
|
|
|
|
/* LEFT COLUMN: Product Images Section (40%) */
|
|
.product-image-section {
|
|
background: white;
|
|
padding: 20px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.main-image-wrapper {
|
|
background: #fafafa;
|
|
border: 1px solid #e5e5e5;
|
|
border-radius: 8px;
|
|
padding: 20px 30px;
|
|
/* slightly bigger: 20px vertical, 30px horizontal */
|
|
margin-bottom: 20px;
|
|
display: inline-block;
|
|
width: auto;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.main-product-img {
|
|
max-width: 100%;
|
|
max-height: 300px;
|
|
/* increase from 280px */
|
|
height: auto;
|
|
display: block;
|
|
object-fit: contain;
|
|
}
|
|
|
|
/* Thumbnail Gallery - Horizontal below */
|
|
.thumbnail-gallery {
|
|
display: flex;
|
|
gap: 8px;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.thumbnail-item-gallery {
|
|
width: 60px;
|
|
height: 60px;
|
|
border: 2px solid #e5e5e5;
|
|
border-radius: 6px;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
background: white;
|
|
}
|
|
|
|
.thumbnail-item-gallery img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.thumbnail-item-gallery:hover {
|
|
border-color: #6B4E9B;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.thumbnail-item-gallery.active {
|
|
border-color: #6B4E9B;
|
|
box-shadow: 0 0 0 3px rgba(107, 78, 155, 0.2);
|
|
}
|
|
|
|
/* Zoom Tooltip */
|
|
.zoom-tooltip {
|
|
font-size: 0.85rem;
|
|
color: #777;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 6px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.zoom-tooltip i {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
/* Description Section Below Images */
|
|
.description-section {
|
|
background: #f9f9f9;
|
|
border: 1px solid #e5e5e5;
|
|
border-radius: 8px;
|
|
padding: 25px;
|
|
margin-top: 25px;
|
|
text-align: left;
|
|
}
|
|
|
|
.description-title {
|
|
font-size: 1.3rem;
|
|
font-weight: 700;
|
|
color: #333;
|
|
margin-bottom: 15px;
|
|
padding-bottom: 10px;
|
|
border-bottom: 2px solid #6B4E9B;
|
|
}
|
|
|
|
.description-content {
|
|
color: #555;
|
|
line-height: 1.8;
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.description-content p {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.description-content ul,
|
|
.description-content ol {
|
|
margin-left: 25px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.description-content li {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
/* RIGHT COLUMN: Product Details Section (60%) */
|
|
.product-details-section {
|
|
padding: 20px 30px;
|
|
}
|
|
|
|
/* A. Product Title */
|
|
.product-title-main {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
color: #333;
|
|
margin-bottom: 20px;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
/* B. SKU + Rating */
|
|
.product-sku-rating {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding-bottom: 20px;
|
|
margin-bottom: 20px;
|
|
border-bottom: 1px solid #e5e5e5;
|
|
}
|
|
|
|
.sku-badge {
|
|
font-size: 0.9rem;
|
|
color: #666;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.rating-display {
|
|
color: #FFB800;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.rating-display i {
|
|
margin-left: 2px;
|
|
}
|
|
|
|
/* C. Color Label */
|
|
.color-label-section {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.color-title {
|
|
font-size: 1rem;
|
|
color: #333;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.color-title strong {
|
|
color: #6B4E9B;
|
|
font-weight: 700;
|
|
}
|
|
|
|
/* D. Color Selection Grid */
|
|
.color-selection-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
|
|
gap: 12px;
|
|
margin-bottom: 30px;
|
|
padding: 20px;
|
|
background: #fafafa;
|
|
border: 1px solid #e5e5e5;
|
|
border-radius: 8px;
|
|
max-height: 300px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.color-swatch {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 10px 14px;
|
|
background: white;
|
|
border: 2px solid #e0e0e0;
|
|
border-radius: 25px;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.color-swatch:hover:not(.inactive-swatch) {
|
|
border-color: #6B4E9B;
|
|
box-shadow: 0 2px 8px rgba(107, 78, 155, 0.2);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.color-swatch.active-swatch {
|
|
border-color: #6B4E9B;
|
|
background: #f0ebf7;
|
|
box-shadow: 0 0 0 3px rgba(107, 78, 155, 0.15);
|
|
}
|
|
|
|
.color-swatch.inactive-swatch {
|
|
opacity: 0.4;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.color-circle {
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
flex-shrink: 0;
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.color-name-text {
|
|
font-size: 0.9rem;
|
|
color: #333;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* E. Price Section */
|
|
.price-section-block {
|
|
padding: 20px 0;
|
|
margin-bottom: 20px;
|
|
border-bottom: 1px solid #e5e5e5;
|
|
}
|
|
|
|
.price-label {
|
|
font-size: 1rem;
|
|
color: #666;
|
|
font-weight: 500;
|
|
display: block;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.price-amount {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
color: #4169E1;
|
|
}
|
|
|
|
/* F. Stock Indicator */
|
|
.stock-indicator-section {
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.stock-text {
|
|
font-size: 1rem;
|
|
color: #28a745;
|
|
font-weight: 500;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.stock-text.out-of-stock {
|
|
color: #dc3545;
|
|
}
|
|
|
|
.stock-bar-green {
|
|
height: 6px;
|
|
background: #28a745;
|
|
border-radius: 3px;
|
|
width: 100%;
|
|
}
|
|
|
|
.stock-bar-red {
|
|
height: 6px;
|
|
background: #dc3545;
|
|
border-radius: 3px;
|
|
width: 100%;
|
|
}
|
|
|
|
/* G. Quantity Selector */
|
|
.quantity-selector-section {
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.qty-label {
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
color: #333;
|
|
display: block;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.qty-selector-wrapper {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
border: 2px solid #e0e0e0;
|
|
border-radius: 6px;
|
|
overflow: hidden;
|
|
background: white;
|
|
}
|
|
|
|
.qty-minus-btn,
|
|
.qty-plus-btn {
|
|
background: white;
|
|
border: none;
|
|
width: 45px;
|
|
height: 45px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.3rem;
|
|
color: #555;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.qty-minus-btn:hover:not(:disabled),
|
|
.qty-plus-btn:hover:not(:disabled) {
|
|
background: #f5f5f5;
|
|
color: #6B4E9B;
|
|
}
|
|
|
|
.qty-minus-btn:disabled,
|
|
.qty-plus-btn:disabled {
|
|
opacity: 0.3;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.qty-number {
|
|
width: 70px;
|
|
height: 45px;
|
|
border: none;
|
|
border-left: 1px solid #e0e0e0;
|
|
border-right: 1px solid #e0e0e0;
|
|
text-align: center;
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
background: white;
|
|
color: #333;
|
|
}
|
|
|
|
/* H. Buttons Section */
|
|
.action-buttons-section {
|
|
display: flex;
|
|
gap: 15px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.btn-add-cart {
|
|
flex: 1;
|
|
padding: 16px 30px;
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
border: none;
|
|
border-radius: 6px;
|
|
background: #2C2C2C;
|
|
color: white;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.btn-add-cart:hover:not(:disabled) {
|
|
background: #1a1a1a;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.btn-add-cart:disabled {
|
|
background: #ccc;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.btn-add-wishlist {
|
|
flex: 1;
|
|
padding: 16px 30px;
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
border: none;
|
|
border-radius: 6px;
|
|
background: #2C2C2C;
|
|
color: white;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.btn-add-wishlist:hover {
|
|
background: #1a1a1a;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
/* Short Description Box */
|
|
.short-description-box {
|
|
padding: 20px;
|
|
background: #f9f9f9;
|
|
border: 1px solid #e5e5e5;
|
|
border-radius: 6px;
|
|
color: #555;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.short-description-box p {
|
|
margin: 0;
|
|
}
|
|
|
|
.product-meta {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.sku-label {
|
|
font-size: 0.85rem;
|
|
color: #777;
|
|
}
|
|
|
|
.sku-label strong {
|
|
color: #333;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.rating-stars {
|
|
color: #FFB800;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.rating-stars i {
|
|
margin-right: 2px;
|
|
}
|
|
|
|
/* New Compact Product Layout Styles */
|
|
.product-meta-compact {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20px;
|
|
margin-bottom: 20px;
|
|
padding-bottom: 15px;
|
|
border-bottom: 1px solid #e0e0e0;
|
|
}
|
|
|
|
.sku-text {
|
|
font-size: 0.9rem;
|
|
color: #777;
|
|
}
|
|
|
|
.sku-text strong {
|
|
color: #333;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.rating-stars-compact {
|
|
color: #FFB800;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.rating-stars-compact i {
|
|
margin-right: 2px;
|
|
}
|
|
|
|
.product-price-large {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
color: #6B4E9B;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.product-stock-info {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.stock-available {
|
|
color: #28a745;
|
|
font-weight: 500;
|
|
font-size: 1rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.stock-available i {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.stock-unavailable {
|
|
color: #dc3545;
|
|
font-weight: 500;
|
|
font-size: 1rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.stock-unavailable i {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.product-quantity-section {
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.quantity-label {
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
color: #333;
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.quantity-controls {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
border: 2px solid #e0e0e0;
|
|
border-radius: 6px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.qty-btn {
|
|
background: white;
|
|
border: none;
|
|
width: 45px;
|
|
height: 45px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.3rem;
|
|
color: #555;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.qty-btn:hover:not(:disabled) {
|
|
background: #f0f0f0;
|
|
color: #6B4E9B;
|
|
}
|
|
|
|
.qty-btn:disabled {
|
|
opacity: 0.3;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.qty-input {
|
|
width: 70px;
|
|
height: 45px;
|
|
border: none;
|
|
border-left: 1px solid #e0e0e0;
|
|
border-right: 1px solid #e0e0e0;
|
|
text-align: center;
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
background: white;
|
|
color: #333;
|
|
}
|
|
|
|
.product-actions {
|
|
display: flex;
|
|
gap: 15px;
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.btn-cart-main {
|
|
flex: 1;
|
|
padding: 15px 30px;
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
border: none;
|
|
border-radius: 6px;
|
|
background: #6B4E9B;
|
|
color: white;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.btn-cart-main:hover:not(:disabled) {
|
|
background: #5a3e82;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(107, 78, 155, 0.3);
|
|
}
|
|
|
|
.btn-cart-main:disabled {
|
|
background: #ccc;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.btn-wishlist-icon {
|
|
width: 55px;
|
|
height: 55px;
|
|
border: 2px solid #e0e0e0;
|
|
border-radius: 6px;
|
|
background: white;
|
|
color: #666;
|
|
font-size: 1.5rem;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.btn-wishlist-icon:hover {
|
|
border-color: #E91E63;
|
|
color: #E91E63;
|
|
background: #fff5f8;
|
|
}
|
|
|
|
.product-color-info {
|
|
margin-bottom: 20px;
|
|
padding: 15px;
|
|
background: #f8f9fa;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.color-label {
|
|
font-weight: 600;
|
|
color: #333;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.color-value-badge {
|
|
display: inline-block;
|
|
padding: 5px 15px;
|
|
background: #6B4E9B;
|
|
color: white;
|
|
border-radius: 20px;
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.product-short-desc {
|
|
padding: 15px;
|
|
background: #f8f9fa;
|
|
border-radius: 6px;
|
|
color: #555;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.product-short-desc p {
|
|
margin: 0;
|
|
}
|
|
|
|
/* Section Labels */
|
|
.section-label {
|
|
font-size: 0.9rem;
|
|
font-weight: 700;
|
|
color: #333;
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.color-value {
|
|
font-weight: 500;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
/* Color Grid Selection */
|
|
.color-selection-section {
|
|
border-top: 1px solid #e5e5e5;
|
|
padding-top: 20px;
|
|
}
|
|
|
|
.color-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
|
|
gap: 10px;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.color-option {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 7px 12px;
|
|
border: 1.5px solid #ddd;
|
|
border-radius: 20px;
|
|
cursor: pointer;
|
|
transition: all 0.25s ease;
|
|
background: white;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.color-option:hover:not(.unavailable) {
|
|
border-color: var(--primary-color);
|
|
box-shadow: 0 2px 8px rgba(107, 78, 155, 0.15);
|
|
}
|
|
|
|
.color-option.active {
|
|
border-color: #6B4E9B;
|
|
background: #f8f6fb;
|
|
box-shadow: 0 0 0 2px rgba(107, 78, 155, 0.15);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.color-circle-btn {
|
|
width: 20px;
|
|
height: 20px;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.color-name {
|
|
font-size: 0.85rem;
|
|
color: #4A5F66;
|
|
font-weight: 500;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
/* Price Section */
|
|
.price-section {
|
|
border-top: 1px solid #e5e5e5;
|
|
padding-top: 20px;
|
|
}
|
|
|
|
.price-display {
|
|
font-size: 2rem;
|
|
color: var(--primary-color);
|
|
font-weight: 700;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
/* Stock Section */
|
|
.stock-section {
|
|
border-top: 1px solid #e5e5e5;
|
|
padding-top: 20px;
|
|
}
|
|
|
|
.stock-info {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 0.95rem;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.stock-info.available {
|
|
color: #28a745;
|
|
}
|
|
|
|
.stock-info.available i {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.stock-info.unavailable {
|
|
color: #dc3545;
|
|
}
|
|
|
|
.stock-info.unavailable i {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
/* Quantity Controls */
|
|
.quantity-section {
|
|
border-top: 1px solid #e5e5e5;
|
|
padding-top: 20px;
|
|
}
|
|
|
|
.quantity-wrapper {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
border: 2px solid #e0e0e0;
|
|
border-radius: 50px;
|
|
overflow: hidden;
|
|
margin-top: 5px;
|
|
background: #f8f9fa;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
|
|
}
|
|
|
|
.qty-control-btn {
|
|
background: transparent;
|
|
border: none;
|
|
width: 45px;
|
|
height: 45px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.3rem;
|
|
color: #f06292;
|
|
transition: all 0.3s ease;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.qty-control-btn:hover:not(:disabled) {
|
|
background: #f06292;
|
|
color: white;
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.qty-control-btn:disabled {
|
|
opacity: 0.3;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.qty-display {
|
|
width: 70px;
|
|
height: 45px;
|
|
border: none;
|
|
text-align: center;
|
|
font-size: 1.1rem;
|
|
font-weight: 700;
|
|
background: transparent;
|
|
color: #2d3748;
|
|
}
|
|
|
|
/* Action Buttons */
|
|
.action-buttons-wrapper {
|
|
display: flex;
|
|
gap: 15px;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.btn-add-to-cart {
|
|
flex: 1;
|
|
padding: 16px 32px;
|
|
font-size: 1.05rem;
|
|
font-weight: 600;
|
|
border: none;
|
|
border-radius: 50px;
|
|
background: linear-gradient(135deg, #f06292 0%, #ec407a 100%);
|
|
color: white;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
box-shadow: 0 4px 15px rgba(236, 64, 122, 0.4);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.btn-add-to-cart:hover:not(:disabled) {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 6px 20px rgba(236, 64, 122, 0.5);
|
|
background: linear-gradient(135deg, #ec407a 0%, #e91e63 100%);
|
|
}
|
|
|
|
.btn-add-to-wishlist {
|
|
flex: 1;
|
|
padding: 16px 32px;
|
|
font-size: 1.05rem;
|
|
font-weight: 600;
|
|
border: 2px solid #f06292;
|
|
border-radius: 50px;
|
|
background: white;
|
|
color: #f06292;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.btn-add-to-wishlist:hover {
|
|
background: #f06292;
|
|
color: white;
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 6px 20px rgba(240, 98, 146, 0.3);
|
|
}
|
|
|
|
/* Description Section */
|
|
.product-description-tabs {
|
|
border-top: 1px solid #e5e5e5;
|
|
padding-top: 30px;
|
|
}
|
|
|
|
.description-title {
|
|
font-size: 1.5rem;
|
|
color: #4A5F66;
|
|
font-weight: 600;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.description-content {
|
|
color: #666;
|
|
line-height: 1.8;
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.product-description-section {
|
|
background: var(--bg-light);
|
|
padding: var(--spacing-lg);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.product-description-section .section-title {
|
|
font-size: 2rem;
|
|
color: var(--text-color);
|
|
border-bottom: 3px solid var(--primary-color);
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.product-full-description {
|
|
font-size: 1rem;
|
|
line-height: 1.8;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.product-full-description p {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.product-full-description ul,
|
|
.product-full-description ol {
|
|
margin-left: 1.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.product-full-description li {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.product-full-description h1,
|
|
.product-full-description h2,
|
|
.product-full-description h3 {
|
|
margin-top: 1.5rem;
|
|
margin-bottom: 0.75rem;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
/* Product Card Link Styling */
|
|
.product-card .product-link {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
display: block;
|
|
}
|
|
|
|
.product-card .product-link:hover h3 {
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
/* ========================================
|
|
Cart & Wishlist Icon Animations
|
|
======================================== */
|
|
@keyframes cartBounce {
|
|
|
|
0%,
|
|
100% {
|
|
transform: scale(1);
|
|
}
|
|
|
|
25% {
|
|
transform: scale(1.2) rotate(-5deg);
|
|
}
|
|
|
|
50% {
|
|
transform: scale(1.15) rotate(5deg);
|
|
}
|
|
|
|
75% {
|
|
transform: scale(1.1) rotate(-3deg);
|
|
}
|
|
}
|
|
|
|
@keyframes badgePulse {
|
|
|
|
0%,
|
|
100% {
|
|
transform: scale(1);
|
|
}
|
|
|
|
50% {
|
|
transform: scale(1.3);
|
|
}
|
|
}
|
|
|
|
@keyframes heartBeat {
|
|
|
|
0%,
|
|
100% {
|
|
transform: scale(1);
|
|
}
|
|
|
|
15% {
|
|
transform: scale(1.25);
|
|
}
|
|
|
|
30% {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
45% {
|
|
transform: scale(1.3);
|
|
}
|
|
|
|
60% {
|
|
transform: scale(1.15);
|
|
}
|
|
}
|
|
|
|
/* ========================================
|
|
Success Toast Notification
|
|
======================================== */
|
|
.success-toast {
|
|
position: fixed;
|
|
top: 80px;
|
|
right: 20px;
|
|
background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
|
|
color: white;
|
|
padding: 16px 24px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
font-weight: 600;
|
|
z-index: 10000;
|
|
opacity: 0;
|
|
transform: translateX(400px);
|
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
}
|
|
|
|
.success-toast.show {
|
|
opacity: 1;
|
|
transform: translateX(0);
|
|
}
|
|
|
|
.success-toast i {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
/* ========================================
|
|
Enhanced Card Shadows for Cream BG
|
|
======================================== */
|
|
.product-card,
|
|
.category-card,
|
|
.icon-box,
|
|
.card {
|
|
background: #FFFFFF;
|
|
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
|
|
transition: box-shadow 0.3s ease;
|
|
}
|
|
|
|
.product-card:hover,
|
|
.category-card:hover {
|
|
box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
/* ========================================
|
|
Ensure sections stand out on cream BG
|
|
======================================== */
|
|
.hero,
|
|
.inspiration-section,
|
|
.categories-section,
|
|
.shop-grid {
|
|
background: transparent;
|
|
}
|
|
|
|
.container {
|
|
background: transparent !important;
|
|
}
|
|
|
|
section {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
/* ========================================
|
|
Responsive Toast
|
|
======================================== */
|
|
@media (max-width: 768px) {
|
|
.success-toast {
|
|
top: 70px;
|
|
right: 10px;
|
|
left: 10px;
|
|
font-size: 0.9rem;
|
|
padding: 14px 20px;
|
|
}
|
|
} |