/*
Theme Name: Cocoon Child SUZURI
Description: Cocoon child theme for SUZURI integration.
Author: Antigravity
Template: cocoon-master
Version: 1.2.0
*/

/* -------------------------------------
   General & Typography (Feminine Blue)
------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Zen+Kaku+Gothic+New:wght@300;400;500;700&display=swap');

html, body {
    font-family: 'Outfit', 'Zen Kaku Gothic New', sans-serif;
    color: #4a5568;
}

/* -------------------------------------
   Top Page (Archive) Hero Banner
------------------------------------- */
.suzuri-hero {
    position: relative;
    padding: 110px 30px;
    border-radius: 24px;
    margin: 30px auto 60px;
    max-width: 1200px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 15px 40px rgba(122, 176, 210, 0.08);
}

.suzuri-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #f2f8fc 0%, #e2eff8 100%);
    z-index: 1;
}

.suzuri-hero-content {
    position: relative;
    z-index: 2;
}

.suzuri-hero-title {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    background: linear-gradient(90deg, #4a7799, #729cbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.suzuri-hero-subtitle {
    font-size: 1.1rem;
    color: #7b9eb8;
    line-height: 1.9;
    font-weight: 400;
}

/* -------------------------------------
   Product Grid (Archive)
------------------------------------- */
.suzuri-main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.suzuri-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.suzuri-product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(122, 176, 210, 0.05);
    border: 1px solid rgba(122, 176, 210, 0.1);
}

.suzuri-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(122, 176, 210, 0.15);
}

.suzuri-product-link {
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.suzuri-card-image-wrap {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #fdfefe;
}

.suzuri-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.suzuri-card-image-wrap:hover .suzuri-card-img {
    transform: scale(1.05);
}

.suzuri-card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.suzuri-product-card:hover .suzuri-card-overlay {
    opacity: 1;
}

.suzuri-view-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #4a7799;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid #c8dbe8;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(122, 176, 210, 0.1);
}

.suzuri-product-card:hover .suzuri-view-btn {
    transform: translateY(0);
    background: #7ab0d2;
    color: #fff;
    border-color: #7ab0d2;
}

.suzuri-card-info {
    padding: 24px;
    text-align: center;
}

.suzuri-card-title {
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0 0 12px 0;
    color: #3e5975;
    line-height: 1.5;
}

.suzuri-card-price {
    font-size: 1.1rem;
    color: #e58d98; /* Soft dusty pink / coral */
    font-weight: 600;
    margin: 0;
}

/* Pagination */
.suzuri-pagination {
    text-align: center;
    margin-top: 50px;
}

.suzuri-pagination .nav-links {
    display: inline-flex;
    gap: 12px;
}

.suzuri-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f2f8fc;
    color: #5c8cae;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.suzuri-pagination .page-numbers.current,
.suzuri-pagination .page-numbers:hover {
    background: #7ab0d2;
    color: #fff;
    border-color: #7ab0d2;
    box-shadow: 0 4px 10px rgba(122, 176, 210, 0.2);
}

/* -------------------------------------
   Single Product Details Page
------------------------------------- */
.suzuri-detail-cols {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin: 40px auto 80px;
    max-width: 1200px;
    align-items: flex-start;
}

.suzuri-detail-media {
    flex: 1 1 500px;
    position: sticky;
    top: 40px;
}

#suzuri-main-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(122, 176, 210, 0.15);
    background: #fdfefe;
    border: 1px solid rgba(122, 176, 210, 0.05);
}

.suzuri-detail-info {
    flex: 1 1 400px;
    padding-top: 10px;
}

.suzuri-badge {
    display: inline-block;
    background: #eaf3f9;
    color: #5c8cae;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.suzuri-detail-info .suzuri-product-title {
    font-size: 2.3rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #3e5975;
}

.suzuri-product-price-box {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #c8dbe8;
}

#suzuri-dynamic-price {
    font-size: 2.2rem;
    font-weight: 600;
    color: #e58d98;
}

.suzuri-currency {
    font-size: 1.1rem;
    color: #a0b6c7;
    font-weight: 500;
    margin-left: 5px;
}

.suzuri-product-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #5c748c;
    margin-bottom: 45px;
}

/* Variants */
.suzuri-variant-section {
    margin-bottom: 35px;
}

.suzuri-variant-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #4a7799;
}

.suzuri-selected-label {
    font-weight: 400;
    color: #7b9eb8;
    margin-left: 10px;
}

.suzuri-color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.suzuri-color-swatch {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #d0e1ed;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.suzuri-color-swatch:hover {
    transform: scale(1.15);
    box-shadow: 0 0 0 1px #7ab0d2;
}

.suzuri-color-swatch.active {
    box-shadow: 0 0 0 2px #5c8cae;
    transform: scale(1.15);
}

.suzuri-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.suzuri-size-btn {
    background: #fff;
    border: 1px solid #d0e1ed;
    color: #5c748c;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suzuri-size-btn:hover {
    border-color: #7ab0d2;
    background: #f2f8fc;
    color: #4a7799;
}

.suzuri-size-btn.active {
    background: #7ab0d2;
    color: #fff;
    border-color: #7ab0d2;
    box-shadow: 0 4px 12px rgba(122, 176, 210, 0.3);
}

/* Buy Button Action */
.suzuri-action-box {
    margin-top: 50px;
    background: #fcfdfe;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eaf3f9;
}

.suzuri-buy-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #8cbadd 0%, #68a0c9 100%);
    color: #fff !important;
    padding: 22px;
    border-radius: 16px;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(104, 160, 201, 0.25);
    border: none;
    letter-spacing: 0.05em;
}

.suzuri-buy-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(104, 160, 201, 0.35);
    background: linear-gradient(135deg, #7ab0d2 0%, #5893bd 100%);
}

.suzuri-action-note {
    font-size: 0.85rem;
    color: #a0b6c7;
    margin-top: 18px;
    margin-bottom: 0;
}
