/* ═══════════════════════════════════════════
   DROPLETS OFFICIAL — PAGE-SPECIFIC STYLES
   ═══════════════════════════════════════════ */

/* ══════════ HOME / HERO ══════════ */
.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 680px;
    padding: 0 20px;
}

.hero__label {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.hero__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ══════════ CATEGORIES STRIP ══════════ */
.categories-strip {
    padding: 60px 0;
}

.categories-strip__grid {
    display: flex;
    justify-content: center;
    gap: clamp(24px, 5vw, 60px);
    flex-wrap: wrap;
}

/* ══════════ FEATURED PRODUCTS ══════════ */
.featured-products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.featured-products__actions {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ══════════ BRAND STORY SPLIT ══════════ */
.brand-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
}

.brand-story__image {
    overflow: hidden;
}

.brand-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-smooth);
}

.brand-story:hover .brand-story__image img {
    transform: scale(1.03);
}

.brand-story__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 6vw, 80px);
    background: var(--cream);
}

.brand-story__content h2 {
    margin-bottom: 20px;
}

.brand-story__content p {
    margin-bottom: 16px;
}

/* ══════════ VALUES STRIP ══════════ */
.values-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.value-item {
    padding: 60px 36px;
    text-align: center;
    border-right: 1px solid var(--border-light);
    transition: background 0.3s ease;
}

.value-item:last-child {
    border-right: none;
}

.value-item:hover {
    background: var(--cream-light);
}

.value-item__icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--gold);
}

.value-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 0.85rem;
    max-width: 280px;
    margin: 0 auto;
}

/* ══════════ GALLERY GRID ══════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__overlay svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

/* ══════════ SHOP PAGE ══════════ */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 32px;
}

.shop-toolbar__count {
    font-size: 0.85rem;
    color: var(--grey);
}

.shop-toolbar__sort select {
    padding: 8px 32px 8px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-accent);
    font-size: 0.8rem;
    color: var(--dark);
    background: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.shop-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dark-2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* ══════════ PRODUCT DETAIL ══════════ */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 40px 0 80px;
}

.product-gallery {
    display: flex;
    gap: 12px;
}

.product-gallery__thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 80px;
    flex-shrink: 0;
}

.product-gallery__thumb {
    width: 80px;
    height: 96px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s ease;
    background: var(--cream);
}

.product-gallery__thumb.active,
.product-gallery__thumb:hover {
    border-color: var(--gold);
}

.product-gallery__main {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--cream);
    position: relative;
    cursor: zoom-in;
}

.product-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-gallery__main:hover img {
    transform: scale(1.15);
}

.product-info {
    padding-top: 20px;
}

.product-info__name {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 8px;
}

.product-info__price {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.product-info__price del {
    color: var(--grey-light);
    font-weight: 400;
    margin-right: 8px;
    font-size: 1rem;
}

.product-info__desc {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
}

/* Size Selector */
.size-selector {
    margin-bottom: 28px;
}

.size-selector__label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
}

.size-selector__label a {
    color: var(--gold);
    font-weight: 500;
    text-decoration: underline;
}

.size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-option {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-option:hover {
    border-color: var(--dark);
}

.size-option.selected {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

/* Quantity */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.quantity-selector__label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dark);
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
}

.quantity-controls button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--dark);
    cursor: pointer;
    transition: background 0.2s ease;
}

.quantity-controls button:hover {
    background: var(--cream);
}

.quantity-controls span {
    width: 40px;
    text-align: center;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
}

.add-to-cart-btn {
    width: 100%;
    padding: 16px;
    margin-bottom: 12px;
}

/* Accordion */
.accordion {
    border-top: 1px solid var(--border-light);
    margin-top: 28px;
}

.accordion__item {
    border-bottom: 1px solid var(--border-light);
}

.accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    cursor: pointer;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dark);
}

.accordion__icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion__item.open .accordion__icon {
    transform: rotate(45deg);
}

.accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-smooth);
}

.accordion__body-inner {
    padding: 0 0 18px;
}

.accordion__body-inner p {
    font-size: 0.9rem;
}

.accordion__body-inner ul {
    font-size: 0.9rem;
    color: var(--grey);
}

.accordion__body-inner ul li {
    padding: 4px 0 4px 16px;
    position: relative;
}

.accordion__body-inner ul li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Related Products */
.related-products {
    padding: 80px 0;
    border-top: 1px solid var(--border-light);
}

/* ══════════ CART PAGE ══════════ */
.cart-page {
    padding: 40px 0 80px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--grey);
    text-align: left;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.cart-table td {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-item-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--cream);
}

.cart-item-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
}

.cart-item-size {
    font-size: 0.8rem;
    color: var(--grey);
    margin-top: 2px;
}

.cart-item-remove {
    font-size: 0.75rem;
    color: var(--grey-light);
    cursor: pointer;
    margin-top: 6px;
    display: inline-block;
}

.cart-item-remove:hover {
    color: #c0392b;
}

.cart-summary {
    max-width: 400px;
    margin-left: auto;
    padding: 32px;
    background: var(--cream);
    border-radius: var(--radius-md);
    margin-top: 32px;
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.9rem;
}

.cart-summary__row--total {
    border-top: 1px solid var(--border);
    margin-top: 8px;
    padding-top: 16px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}

.cart-empty {
    text-align: center;
    padding: 80px 20px;
}

.cart-empty svg {
    width: 64px;
    height: 64px;
    stroke: var(--border);
    fill: none;
    margin-bottom: 20px;
}

.cart-empty h2 {
    margin-bottom: 12px;
}

/* ══════════ ABOUT PAGE ══════════ */
.about-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
}

.about-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.about-hero__content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.about-hero__content h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.about-section.reverse {
    direction: rtl;
}

.about-section.reverse>* {
    direction: ltr;
}

.about-section__img {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.about-section__img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.about-section:hover .about-section__img img {
    transform: scale(1.03);
}

.about-section__text h2 {
    margin-bottom: 16px;
}

.about-section__text p {
    margin-bottom: 12px;
}

/* ══════════ CONTACT PAGE ══════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 0 80px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
}

.contact-info-card__icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card__icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

.contact-info-card h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.85rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--dark);
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-input::placeholder {
    color: var(--grey-light);
}

.form-input:focus {
    border-color: var(--gold);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

/* ══════════ INFO PAGES (Care Guide, Packaging, Size Guide, Shipping) ══════════ */
.info-page {
    padding: 50px 0 80px;
}

.info-page__content {
    max-width: 800px;
    margin: 0 auto;
}

.info-page__content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.info-page__content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.info-page__content p {
    margin-bottom: 12px;
}

.info-page__content ul {
    margin-bottom: 16px;
}

.info-page__content ul li {
    padding: 6px 0 6px 20px;
    position: relative;
    color: var(--grey);
    font-size: 0.9rem;
}

.info-page__content ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    position: absolute;
    left: 0;
    top: 12px;
}

/* Size Chart Table */
.size-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.size-table th {
    background: var(--cream);
    text-align: left;
    padding: 12px 16px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dark);
}

.size-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--grey);
}

/* ══════════ BLOG PAGE ══════════ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    cursor: pointer;
}

.blog-card__img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.blog-card:hover .blog-card__img img {
    transform: scale(1.05);
}

.blog-card__date {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.blog-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-card__excerpt {
    font-size: 0.85rem;
    color: var(--grey);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}