* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', Arial, sans-serif;
    background-color: #f5f0eb;
    color: #111;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    background-color: #f5f0eb;
    border-bottom: 1px solid #e0d9d0;
}

.logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #111;
}

.logo .dot {
    color: #E87722;
}

.nav {
    display: flex;
    gap: 45px;
}

.nav a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    letter-spacing: 0.5px;
}

.nav a:hover {
    color: #E87722;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 17px;
    color: #444;
    cursor: pointer;
}

.header-icons i:hover {
    color: #E87722;
}

.product-section {
    display: flex;
    padding: 40px 60px 0px 60px;
    gap: 0;
    min-height: 640px;
}

.left-panel {
    flex: 0 0 250px;
    padding-right: 30px;
    position: relative;
}

.new-label {
    font-size: 13px;
    font-weight: 700;
    color: #E87722;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.product-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.0;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.title-orange {
    color: #E87722;
}

.price {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
}

.divider {
    border: none;
    border-top: 1px solid #d9d2c9;
    margin: 16px 0;
}

.desc-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #111;
    margin-bottom: 10px;
}

.desc-text {
    font-size: 12.5px;
    color: #666;
    line-height: 1.75;
    margin-bottom: 12px;
}

.read-more {
    font-size: 12px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    color: #E87722;
}

.accordion-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #111;
    cursor: pointer;
    padding: 6px 0;
}

.accordion-item i {
    font-size: 11px;
    color: #999;
}

.center-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.jacket-img {
    width: 100%;
    max-width: 560px;
    object-fit: contain;
    margin-bottom: 0;
}

.viewer-360-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.badge-360 {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #E87722;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

.drag-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.55);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.6s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 7px;
}

.viewer-perspective-wrap {
    perspective: 1100px;
    perspective-origin: center center;
    width: 100%;
    display: flex;
    justify-content: center;
}

.viewer-frame-stack {
    position: relative;
    width: 520px;
    height: 520px;
    cursor: grab;
    user-select: none;
    transform-style: preserve-3d;
    will-change: transform;
}

.viewer-frame-stack:active {
    cursor: grabbing;
}

.jacket-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: none;
    pointer-events: none;
    display: block;
}

#frame0 {
    opacity: 1;
}

#frame1 {
    transform: scaleX(-1);
}

#frame3 {
    transform: scaleX(-1);
}

.viewer-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 14px;
    margin-bottom: 4px;
}

.ctrl-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    background-color: white;
    cursor: pointer;
    font-size: 12px;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctrl-btn:hover {
    border-color: #E87722;
    color: #E87722;
}

.rotation-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.rdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    transition: background-color 0.2s;
}

.rdot.active {
    background-color: #E87722;
    width: 10px;
    height: 10px;
}

.badges-row {
    display: flex;
    gap: 45px;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #e0d9d0;
    width: 90%;
    margin-top: auto;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
    color: #777;
    letter-spacing: 0.8px;
}

.badge-item i {
    font-size: 20px;
    color: #aaa;
}

.right-panel {
    flex: 0 0 240px;
    padding-left: 30px;
    padding-top: 10px;
    position: relative;
}

.panel-heading {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-align: center;
    color: #111;
    margin-bottom: 14px;
}

.size-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 10px;
}

.size-btn {
    width: 46px;
    height: 46px;
    border: 1.5px solid #ccc;
    border-radius: 10px;
    background-color: white;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    font-family: 'Barlow', Arial, sans-serif;
}

.size-btn:hover {
    border-color: #E87722;
}

.size-btn.active {
    background-color: #E87722;
    border-color: #E87722;
    color: white;
}

.size-guide-link {
    display: block;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
}

.size-guide-link:hover {
    color: #E87722;
}

.color-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.color-option {
    width: 95px;
    text-align: center;
    cursor: pointer;
    border: 2px solid #e0d9d0;
    border-radius: 10px;
    padding: 5px;
    background-color: white;
    position: relative;
}

.color-option img {
    width: 83px;
    height: 83px;
    object-fit: cover;
    border-radius: 7px;
    display: block;
}

.color-option span {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #333;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

.color-option.selected {
    border-color: #E87722;
}

.color-option.selected::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 10px;
    height: 10px;
    background-color: #E87722;
    border-radius: 50%;
}

.wishlist-btn {
    width: 100%;
    padding: 13px 10px;
    border: 1.5px solid #bbb;
    border-radius: 50px;
    background-color: white;
    font-size: 12px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    font-family: 'Barlow', Arial, sans-serif;
}

.wishlist-btn:hover {
    border-color: #E87722;
    color: #E87722;
}

.add-bag-btn {
    width: 100%;
    padding: 15px 10px;
    background-color: #E87722;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    letter-spacing: 1px;
    font-family: 'Barlow', Arial, sans-serif;
}

.add-bag-btn:hover {
    background-color: #cf6710;
}

.features-strip {
    display: flex;
    border-top: 1px solid #e0d9d0;
    margin-top: 10px;
}

.feat-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 20px;
    border-right: 1px solid #e0d9d0;
    position: relative;
}

.feat-card.no-border {
    border-right: none;
}

.feat-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.feat-text h3 {
    font-size: 13px;
    font-weight: 800;
    color: #111;
    line-height: 1.35;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.feat-text p {
    font-size: 11.5px;
    color: #777;
    line-height: 1.65;
}

.info-bar {
    display: flex;
    border-top: 1px solid #e0d9d0;
    background-color: #f5f0eb;
}

.info-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 24px;
    border-right: 1px solid #e0d9d0;
}

.info-item.no-border {
    border-right: none;
}

.info-item > i {
    font-size: 26px;
    color: #777;
    flex-shrink: 0;
}

.info-text strong {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #111;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-text p {
    font-size: 11px;
    color: #888;
    line-height: 1.5;
}
