.shop-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 44px 0 140px 0;
}

.shop-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 16px;
    margin-bottom: 32px;
}

.shop-section-title {
    font-size: 28px;
    font-weight: 400;
    color: #101010;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.product-slot {
    position: relative;
    width: 100%;
    height: 510px;
    overflow: hidden;
    border-radius: 20px;
    background-color: transparent;
    transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-slot:hover {
    background-color: #ffffff;
    box-shadow: 0 9px 38px rgba(0, 0, 0, 0.14);
    z-index: 10;
}

.product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-slot:hover .product-card {
    transform: translateY(-60px);
}

.product-image-wrap {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f2f2f7;
    flex-shrink: 0;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-meta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: start;
    width: 100%;
    padding: 20px 16px;
    box-sizing: border-box;
}

.product-title {
    font-size: 14px;
    font-weight: 500;
    color: #101010;
    line-height: 1.4;
}

.product-price {
    font-size: 13px;
    font-weight: 600;
    color: #101010;
    white-space: nowrap;
}

.product-price .bullet {
    font-size: 11px;
    margin-left: 2px;
}

.product-action {
    width: 100%;
    padding: 0 16px 8px 16px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.buy-btn {
    width: 100%;
    height: 40px;
    border: 1px solid #101010;
    background-color: #101010;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    outline: none;
    transition: transform 0.15s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.2s ease;
}

.buy-btn:hover {
    background-color: #000000;
}

.buy-btn:active {
    transform: scale(0.96);
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
}

.product-detail-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-zoom-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f2f2f7;
    cursor: zoom-in;
}

.product-zoom-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transform-origin: center center;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform-origin 0.15s ease-out;
    will-change: transform, transform-origin;
}

.product-zoom-wrap:hover img {
    transform: scale(2.2);
}

.product-description-section {
    margin-top: 16px;
}

.product-description-title {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.product-description-text {
    font-size: 15px;
    line-height: 1.65;
    color: #3a3a3c;
}

.product-gallery-section {
    margin-top: 24px;
}

.product-gallery-grid .gallery-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
}

.product-gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.product-detail-sidebar {
    display: flex;
    flex-direction: column;
    color: #1d1d1f;
}

.product-breadcrumb {
    font-size: 13px;
    color: #86868b;
    margin-bottom: 12px;
}

.product-detail-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.25;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.product-detail-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.product-buy-action-btn {
    width: 100%;
    height: 48px;
    border: none;
    background-color: #111113;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 9999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 32px;
    transition: transform 0.15s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.2s ease;
}

.product-buy-action-btn:hover {
    background-color: #000000;
}

.product-buy-action-btn:active {
    transform: scale(0.96);
}

.license-section {
    margin-bottom: 32px;
}

.license-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}

.license-card {
    border: 1px solid #1d1d1f;
    border-radius: 9999px;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
}

.license-radio-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.license-radio {
    width: 18px;
    height: 18px;
    accent-color: #1d1d1f;
    cursor: pointer;
}

.license-name {
    font-size: 15px;
    font-weight: 500;
    color: #1d1d1f;
    line-height: 1.3;
}

.license-price {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
}

.license-note {
    font-size: 12px;
    color: #86868b;
    margin-top: 16px;
    line-height: 1.4;
}

.product-info-section {
    margin-top: 8px;
}

.product-info-header {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.product-info-key-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #86868b;
}

.product-info-key-wrap .material-symbols-rounded {
    font-size: 18px;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.product-info-val {
    font-weight: 500;
    color: #1d1d1f;
}

.modal-overlay.shop-popup .drag-handle-bar {
    margin: 0 auto 48px auto;
}

@media (max-width: 1280px) {
    .shop-container {
        padding: 44px 24px 140px 24px;
    }
}

@media (max-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .shop-container {
        margin-top: 40px;
        padding: 0 16px 140px 16px;
    }
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.product-detail-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
}

.product-detail-top {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
    width: 100%;
}

.product-zoom-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 12;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f2f2f7;
    cursor: zoom-in;
}

.product-zoom-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transform-origin: center center;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform-origin 0.15s ease-out;
    will-change: transform, transform-origin;
}

.product-zoom-wrap:hover img {
    transform: scale(2.2);
}

.product-detail-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 40px;
}

.product-description-section {
    width: 100%;
}

.product-description-title {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.product-description-text {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3c;
    max-width: 900px;
}

.product-gallery-section {
    width: 100%;
}

.product-gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

.product-gallery-grid .gallery-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.product-gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

@media (max-width: 900px) {
    .product-detail-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .product-gallery-grid .gallery-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}