* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Helvetica', sans-serif; 
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 40px 0;
    z-index: 1000;
    transition: all 0.4s ease;
    color: #fff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    transition: 0.25s;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.45);
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 1.2rem;
    letter-spacing: 6px;
    font-weight: 300;
}

.logo a {
    color: inherit;
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    display: block;
}

.logo span {
    font-weight: 200;
    opacity: 0.8;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: inherit;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
}

.nav-menu ul li a:hover {
    opacity: 0.6;
}

.lang-setting {
    position: absolute;
    right: 50px;
    top: 40px;
    font-size: 12px;
    letter-spacing: 2px;
}

.modal {
	position: fixed;
	inset: 0;

	display: flex;
	align-items: center;
	justify-content: center;

	opacity: 0;
	pointer-events: none;

	transition: opacity 0.25s ease;

	z-index: 9999;
}

.modal.is-open {
	opacity: 1;
	pointer-events: auto;
}

.modal__overlay {
	position: absolute;
	inset: 0;

	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(6px);

	z-index: 1;
}

.modal__content {
	position: relative;

	width: 460px;
	max-width: 90%;

	padding: 45px 45px 40px;

	background: #fff;

	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);

	transform: translateY(20px);
	transition: transform 0.25s ease, opacity 0.25s ease;

	z-index: 2;
}

.modal.is-open .modal__content {
	transform: translateY(0);
}

.modal__close {
	position: absolute;
	top: 12px;
	right: 16px;

	border: none;
	background: none;

	font-size: 24px;
	cursor: pointer;
	opacity: 0.6;
}

.modal__close:hover {
	opacity: 1;
}

.modal h2 {
	font-size: 18px;
	letter-spacing: 3px;
	margin-bottom: 30px;
	font-weight: 500;
}

.notice__section {
	margin-bottom: 25px;
}

.notice__section h3 {
	font-size: 12px;
	margin-bottom: 8px;
	letter-spacing: 1px;
	opacity: 0.5;
}

.notice__section p {
	font-size: 15px;
	line-height: 1.6;
}

header.shrunk {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);

    color: #000;

    padding: 25px 60px;
}

header.shrunk .header-container {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

header.shrunk .lang-setting {
    display: none;
}

.hero-section {
    height: 100vh;

    background:
        linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
        url('https://www.10wallpaper.com/wallpaper/1920x1440/1709/Spain_pink_sky_clouds_ocean_bridge-2017_Scenery_Wallpaper_1920x1440.jpg')
        center / cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.hero-text h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 4px;
    line-height: 1.4;
}

.hero-text p {
    color: #ccc;
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.8;
}

.outlet-info {
    padding: 100px;
    background: #fff;
}

.outlet-info__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.outlet-info__content {
    flex: 1;
}

.outlet-info__title h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.outlet-info__title .subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

.outlet-info__status h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.outlet-info__status h2 span {
    color: #e91e63;
}

.outlet-info__status .notice {
    font-size: 12px;
    color: #999;
    margin-bottom: 30px;
}

.outlet-info__table {
    border-collapse: collapse;
    width: 100%;
    max-width: 400px;
    margin-bottom: 15px;
}

.outlet-info__table th, 
.outlet-info__table td {
    padding: 10px 0;
    font-size: 16px;
    text-align: left;
}

.outlet-info__table th {
    width: 120px;
    font-weight: 600;
    color: #222;
}

.outlet-info__table td {
    color: #555;
    font-variant-numeric: tabular-nums;
}

.bot-notice {
    font-size: 14px;
    color: #999;
}

.outlet-info__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.outlet-info__image {
    width: 450px;
    height: 550px;
    border-radius: 250px 250px 100px 100px; 
    overflow: hidden;
    background: #f7f7f7;
}

.outlet-info__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer {
	background-color: #fff;
	padding: 60px 0 40px;
	border-top: 1px solid #f2f2f2;
	text-align: center;
	position: relative;
}

.footer-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-logo {
	font-size: 22px;
	letter-spacing: 4px;
	font-weight: bold;
	margin-bottom: 40px;
	color: #000;
}

.footer-logo span {
	font-weight: 300;
}

.footer-logo a {
	color: inherit;
	text-decoration: none;
	font-size: 20px;
	font-weight: 300;
	letter-spacing: 5px;
	text-transform: uppercase;
	display: block;
}

.footer-nav {
	margin-bottom: 30px;
	position: relative;
}

.footer-nav ul {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	gap: 30px;
	flex-wrap: wrap;
	width: 100%;
	padding: 0;
	margin: 0;
}

.footer-nav ul li a,
.footer-nav ul li button {
	font-size: 13px;
	color: #333;
	text-decoration: none;
	font-weight: 500;
	background: none;
	border: none;
	cursor: pointer;
	letter-spacing: -0.5px;
}

.footer-nav ul li a strong {
	font-weight: 800;
	color: #000;
}

.product-wrap {
	list-style: none;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.family-site {
	padding: 0;
}

.family-site .arrow {
	font-size: 10px;
	margin-left: 5px;
	display: inline-block;
	transition: 0.3s ease;
}

.family-site.active .arrow {
	transform: rotate(180deg);
}

.product-panel {
	width: 100%;
	margin-top: 28px;

	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 220px;
	gap: 18px;

	max-height: 0;
	opacity: 0;
	overflow: hidden;
	pointer-events: none;

	transition:
		max-height 0.45s ease,
		opacity 0.35s ease,
		margin-top 0.35s ease;
}

.product-panel.show {
	max-height: 1400px;
	opacity: 1;
	pointer-events: auto;
}

.product-card {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	padding: 24px;

	color: #fff;
	text-decoration: none;

	display: flex;
	flex-direction: column;
	justify-content: flex-end;

	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

	box-shadow: 0 10px 30px rgba(0,0,0,0.12);
	transition: 0.35s ease;
}

.product-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0,0,0,0.72),
		rgba(0,0,0,0.08)
	);
	z-index: 1;
}

.product-card::before {
	content: "";
	position: absolute;
	top: -140%;
	left: -140%;
	width: 240%;
	height: 240%;

	background: linear-gradient(
		135deg,
		transparent 35%,
		rgba(255,255,255,0.20) 50%,
		transparent 65%
	);

	z-index: 2;
	transition: 0.85s ease;
}

.product-card:hover::before {
	top: 140%;
	left: 140%;
}

.product-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}
.product-card h4,
.product-card p {
	position: relative;
	z-index: 3;
	color: #ffffff;
	text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

.big {
	grid-column: span 2;
	grid-row: span 2;
}

.wide {
	grid-column: span 2;
}

.tall {
	grid-row: span 2;
}

.copyright {
	font-size: 12px;
	color: #999;
	letter-spacing: 0.5px;
	margin-top: 40px;
	border-top: 1px solid #f9f9f9;
	padding-top: 20px;
	transition: margin-top 0.35s ease;
}

@media (max-width: 768px) {

    header {
        padding: 15px 20px;
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo a {
        font-size: 16px;
        letter-spacing: 2px;
        z-index: 1001;
    }

    .outlet-info {
        padding: 60px 20px;
    }

    .outlet-info__container {
        flex-direction: column-reverse;
        text-align: left;
        gap: 40px;
    }

    .outlet-info__image {
        width: 100%;
        height: 400px;
        border-radius: 200px 200px 50px 50px;
    }

    .outlet-info__title h1 {
        font-size: 32px;
    }

    .menu-trigger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        width: 24px;
        height: 16px;

        cursor: pointer;
        z-index: 1001;
    }

    .menu-trigger span {
        display: block;
        height: 2px;
        background: currentColor;
        transition: 0.3s;
    }

    .menu-trigger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-trigger.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-trigger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);

        opacity: 0;
        pointer-events: none;

        transition: 0.3s;
        z-index: 998;
    }

    .menu-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu {
        position: fixed;

        top: 0;
        right: -75%;

        width: 75%;
        height: 100vh;

        background: #fff;

        display: flex;
        flex-direction: column;

        padding-top: 80px;
        padding-left: 20px;

        transition: right 0.4s ease;

        z-index: 999;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu ul li a {
        font-size: 18px;
    }

    .lang-setting {
        display: none;
    }

}