.ocean-majesty-page {
background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
min-height: 100vh;
position: relative;
overflow-x: hidden;
}
.ocean-majesty-page::before {
content: '';
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
url('../assets/water-ripple.jpg');
background-size: cover;
background-position: center;
pointer-events: none;
z-index: 0;
opacity: 0.5;
animation: waterFlow 20s ease-in-out infinite;
}
@keyframes waterFlow {
0%, 100% { transform: scale(1) rotate(0deg); }
50% { transform: scale(1.05) rotate(2deg); }
}
.ocean-hero-section {
min-height: 60vh;
display: flex;
align-items: center;
justify-content: center;
background: transparent;
position: relative;
margin-bottom: 60px;
border-bottom: none;
z-index: 2;
}
.ocean-hero-content {
text-align: center;
padding: 0;
background: transparent;
border: none;
max-width: 1000px;
width: 100%;
height: 500px;
box-shadow: none;
position: relative;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.ocean-collection-title {
max-width: 100%;
max-height: 100%;
object-fit: contain;
animation: fadeInScale 1.2s ease forwards;
}
@keyframes fadeInScale {
from { opacity: 0; transform: scale(0.95); }
to { opacity: 1; transform: scale(1); }
}
.ocean-main-title,
.ocean-subtitle,
.ocean-tagline {
display: none;
}
.summer-collection-gallery {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 20px;
max-width: 1600px;
margin: 0 auto 80px;
padding: 0 40px;
position: relative;
z-index: 1;
align-items: center;
}
.summer-item {
position: relative;
cursor: pointer;
transition: all 0.4s ease;
}
.summer-item:hover { transform: translateY(-5px); }
.summer-item-frame {
background: #fff;
border: 2px solid rgba(212, 175, 55, 0.3);
padding: 10px;
position: relative;
overflow: hidden;
box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
transition: all 0.4s ease;
height: 100%;
}
.summer-item:hover .summer-item-frame {
border-color: var(--gold);
box-shadow: 0 10px 40px rgba(212, 175, 55, 0.25);
}
.summer-item-img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: all 0.4s ease;
}
.summer-item:hover .summer-item-img { transform: scale(1.05); }
.summer-item-model {
grid-column: span 1;
grid-row: span 1;
align-self: center;
transform: scale(1.08);
}
.summer-model-frame {
padding: 10px;
border-width: 2px;
height: 380px;
}
.summer-model-img {
aspect-ratio: 3/4;
object-fit: cover;
height: 100%;
}
.summer-item:not(.summer-item-model):not(.summer-logo) .summer-item-frame {
height: 380px;
}
.summer-logo {
cursor: default;
align-self: center;
}
.summer-logo-frame {
background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
display: flex;
align-items: center;
justify-content: center;
height: 380px;
padding: 0;
border: none;
overflow: hidden;
}
.summer-logo-img {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.8;
}
.ocean-product-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.92);
z-index: 5000;
overflow-y: auto;
animation: fadeInModal 0.4s ease;
backdrop-filter: blur(5px);
}
.ocean-product-modal.active {
display: flex;
align-items: center;
justify-content: center;
}
@keyframes fadeInModal {
from { opacity: 0; }
to { opacity: 1; }
}
.ocean-modal-content {
background: #fff;
max-width: 1300px;
width: 90%;
margin: 40px auto;
border-radius: 0;
overflow: hidden;
position: relative;
display: grid;
grid-template-columns: 1.2fr 1fr;
box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
border: 2px solid rgba(212, 175, 55, 0.3);
}
.ocean-modal-close {
position: absolute;
top: 20px;
right: 30px;
font-size: 3rem;
color: var(--gold);
cursor: pointer;
z-index: 10;
transition: all 0.3s;
line-height: 1;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
}
.ocean-modal-close:hover {
color: var(--gold-dark);
transform: scale(1.2) rotate(90deg);
}
.ocean-modal-gallery {
padding: 50px;
background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
position: relative;
display: flex;
flex-direction: column;
align-items: center;
}
.ocean-modal-main-img {
width: 100%;
height: 550px;
object-fit: cover;
border: 2px solid rgba(212, 175, 55, 0.3);
margin-bottom: 25px;
box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
transition: all 0.3s ease;
}
.ocean-nav-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(212, 175, 55, 0.9);
border: none;
width: 50px;
height: 50px;
border-radius: 50%;
cursor: pointer;
font-size: 1.5rem;
color: var(--dark);
transition: all 0.3s ease;
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}
.ocean-nav-arrow:hover {
background: var(--gold);
transform: translateY(-50%) scale(1.1);
box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}
.ocean-nav-arrow.prev { left: 20px; }
.ocean-nav-arrow.next { right: 20px; }
.ocean-nav-arrow.hidden {
opacity: 0;
pointer-events: none;
}
.ocean-modal-thumbnails {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}
.ocean-thumb {
width: 90px;
height: 90px;
object-fit: cover;
border: 2px solid transparent;
cursor: pointer;
transition: all 0.3s;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.ocean-thumb:hover,
.ocean-thumb.active {
border-color: var(--gold);
transform: scale(1.05);
box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}
.ocean-magnifier-container {
position: relative;
width: 100%;
height: 650px;
overflow: hidden;
cursor: crosshair;
border: 2px solid rgba(212, 175, 55, 0.3);
}
.ocean-magnifier-img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
}
.ocean-magnifier-lens {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-repeat: no-repeat;
background-size: 300% 300%;
pointer-events: none;
display: none;
z-index: 10;
border: 2px solid rgba(212, 175, 55, 0.5);
box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}
.ocean-magnifier-container:hover .ocean-magnifier-lens {
display: block;
}
.ocean-modal-info {
padding: 60px 50px;
display: flex;
flex-direction: column;
justify-content: center;
background: #fff;
border-left: 1px solid rgba(212, 175, 55, 0.2);
}
.ocean-modal-info h2 {
font-family: 'Cinzel', serif;
font-size: 2.2rem;
color: var(--gold);
margin-bottom: 15px;
letter-spacing: 3px;
line-height: 1.2;
}
.ocean-modal-subtitle {
font-family: 'Playfair Display', serif;
font-size: 1.1rem;
color: #888;
margin-bottom: 25px;
font-style: italic;
}
.ocean-modal-price {
font-family: 'Cinzel', serif;
font-size: 2rem;
color: var(--neon-pink);
margin-bottom: 30px;
letter-spacing: 2px;
font-weight: 600;
}
.ocean-modal-desc {
font-family: 'Playfair Display', serif;
font-size: 1.05rem;
color: #555;
line-height: 1.9;
margin-bottom: 40px;
}
.ocean-modal-btn {
padding: 18px 50px;
background: var(--gold);
color: var(--dark);
border: none;
font-family: 'Cinzel', serif;
font-size: 0.9rem;
letter-spacing: 3px;
cursor: pointer;
transition: all 0.4s ease;
align-self: flex-start;
text-transform: uppercase;
}
.ocean-modal-btn:hover {
background: var(--gold-dark);
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}
.ocean-modal-magnifier .ocean-modal-content {
grid-template-columns: 1fr 1fr 1fr;
max-width: 1600px;
}
.ocean-modal-magnifier .ocean-magnifier-lens {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.ocean-modal-magnifier .ocean-modal-gallery {
padding: 30px;
order: 2;
}
.ocean-modal-magnifier .ocean-modal-info {
padding: 50px 40px;
order: 3;
border-left: 1px solid rgba(212, 175, 55, 0.2);
}
@media (max-width: 1400px) {
.summer-collection-gallery {
grid-template-columns: repeat(7, 1fr);
gap: 15px;
}
}
@media (max-width: 1200px) {
.summer-collection-gallery {
grid-template-columns: repeat(3, 1fr);
}
.summer-item-model {
grid-column: span 1;
grid-row: span 1;
}
.ocean-modal-content {
grid-template-columns: 1fr;
}
.ocean-modal-magnifier .ocean-modal-content {
grid-template-columns: 1fr;
}
.ocean-modal-main-img { height: 350px; }
.ocean-modal-info { padding: 40px 30px; }
.ocean-modal-info h2 { font-size: 1.8rem; }
}
@media (max-width: 968px) {
.summer-collection-gallery {
grid-template-columns: repeat(2, 1fr);
}
.ocean-magnifier-container {
grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.summer-collection-gallery {
grid-template-columns: 1fr;
padding: 0 20px;
}
.summer-item-model {
grid-column: span 1;
grid-row: span 1;
}
.ocean-product-img { height: 250px; }
.ocean-modal-main-img { height: 300px; }
.ocean-modal-content {
width: 95%;
margin: 20px auto;
}
.ocean-modal-gallery { padding: 30px 20px; }
.ocean-modal-info { padding: 40px 25px; }
.ocean-nav-arrow {
width: 40px;
height: 40px;
font-size: 1.2rem;
}
.ocean-hero-content { height: 350px; }
.ocean-collection-title { max-height: 300px; }
}