@font-face {
    font-family: 'SuisseSign';
    src: url('fonts/Suisse%20Sign/SuisseSign-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SuisseSign';
    src: url('fonts/Suisse%20Sign/SuisseSign-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SuisseSign';
    src: url('fonts/Suisse%20Sign/SuisseSign-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'SuisseSign', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fff;
    color: #000;
    min-height: 100vh;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #000;
    padding: 20px 30px;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-family: 'SuisseSign', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: #000;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.6;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #000;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 0.6;
}

.view-toggle {
    display: flex;
    gap: 10px;
}

.view-btn {
    background: none;
    border: 1px solid #000;
    padding: 8px 16px;
    font-size: 13px;
    cursor: pointer;
    font-family: 'SuisseSign', 'IBM Plex Sans', sans-serif;
    transition: all 0.2s;
    color: #000;
}

.view-btn.active {
    background: #000;
    color: #fff;
}

.view-btn:hover:not(.active) {
    background: #fff;
}

/* Cart Button */
.cart-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 13px;
    cursor: pointer;
    font-family: 'SuisseSign', 'IBM Plex Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: background 0.2s;
}

.cart-btn:hover {
    background: #333;
}

.cart-icon {
    font-size: 14px;
}

.cart-count {
    background: #fff;
    color: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
}

.cart-count.hidden {
    display: none;
}

.container {
    display: flex;
    margin-top: 70px;
}

.sidebar {
    width: 250px;
    border-right: 1px solid #000;
    padding: 30px 20px;
    position: fixed;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.search-box {
    width: 100%;
    padding: 10px;
    border: 1px solid #000;
    font-size: 14px;
    font-family: 'SuisseSign', 'IBM Plex Sans', sans-serif;
    margin-bottom: 30px;
}

.search-box:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px #000;
}

.category-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.category-list {
    list-style: none;
}

.category-item {
    padding: 8px 0;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.category-item:hover {
    opacity: 0.6;
}

.category-item.active {
    font-weight: 600;
}

.main-content {
    margin-left: 250px;
    padding: 30px;
    width: calc(100% - 250px);
}

.results-count {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    margin-top: 0;
}

.view-controls {
    display: flex;
    gap: 20px;
    align-items: center;
}

.pricing-info {
    font-size: 13px;
    color: #000;
    display: flex;
    align-items: center;
}

.grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.grid-card {
    border: 1px solid #000;
    overflow: hidden;
    transition: transform 0.2s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 0 #000;
}

.card-image {
    width: 100%;
    height: 200px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-id {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.card-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-description {
    font-size: 13px;
    line-height: 1.5;
    color: #000;
    margin-bottom: 15px;
}

.variant-selector {
    margin: 15px 0;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
}

.variant-selector label {
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px;
    color: #333;
}

.variant-selector select {
    padding: 6px 10px;
    border: 1px solid #000;
    background: #fff;
    font-size: 13px;
    font-family: 'SuisseSign', 'IBM Plex Sans', sans-serif;
    cursor: pointer;
    min-width: 80px;
}

.variant-selector select:hover {
    background: #f9f9f9;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    margin-top: auto;
}

.card-qty {
    font-size: 13px;
    color: #000;
}

.card-price {
    font-size: 20px;
    font-weight: 600;
}

.card-add-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 13px;
    cursor: pointer;
    font-family: 'SuisseSign', 'IBM Plex Sans', sans-serif;
    width: 100%;
    margin-top: 15px;
    transition: background 0.2s;
}

.card-add-btn:hover {
    background: #333;
}

.list-view {
    border: 1px solid #000;
}

.list-header {
    display: grid;
    grid-template-columns: 100px 80px 200px 1fr 80px 100px 230px;
    gap: 20px;
    padding: 15px 20px;
    background: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #000;
    align-items: center;
}

.list-row {
    display: grid;
    grid-template-columns: 100px 80px 200px 1fr 80px 100px 230px;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.2s;
    cursor: pointer;
    align-items: center;
}

.list-row img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.list-add {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.list-add input[type="number"] {
    width: 50px;
    padding: 8px 6px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 2px;
}

.list-add .card-add-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 13px;
    cursor: pointer;
    font-family: 'SuisseSign', 'IBM Plex Sans', sans-serif;
    transition: background 0.2s;
    min-width: 120px;
    min-height: 38px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-add .card-add-btn:hover {
    background: #333;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
    padding: 40px 20px;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 700px;
    border: 2px solid #000;
    margin: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #000;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    margin: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    flex-shrink: 0;
}

.modal-close:hover {
    opacity: 0.6;
}

.modal-body {
    padding: 30px;
}

/* Cart Items */
.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 60px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-id {
    font-size: 11px;
    color: #666;
    margin-bottom: 10px;
}

.cart-item-controls {
    display: flex;
    gap: 20px;
    align-items: center;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-control label {
    font-size: 13px;
    color: #666;
}

.quantity-control input {
    width: 60px;
    padding: 5px;
    border: 1px solid #000;
    text-align: center;
    font-family: 'SuisseSign', 'IBM Plex Sans', sans-serif;
}

.days-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.days-control label {
    font-size: 13px;
    color: #666;
}

.days-control input {
    width: 60px;
    padding: 5px;
    border: 1px solid #000;
    text-align: center;
    font-family: 'SuisseSign', 'IBM Plex Sans', sans-serif;
}

.cart-item-price {
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

.cart-item-remove {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    color: #666;
}

.cart-item-remove:hover {
    color: #000;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.cart-summary {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #000;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
}

.summary-row.total {
    font-size: 20px;
    font-weight: 600;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    margin-top: 10px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #000;
    font-size: 14px;
    font-family: 'SuisseSign', 'IBM Plex Sans', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px #000;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-summary {
    background: #fff;
    padding: 20px;
    margin: 30px 0 20px;
    border: 1px solid #000;
}

.form-summary h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.booking-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 14px;
}

.booking-total {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #000;
    font-size: 18px;
    font-weight: 600;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'SuisseSign', 'IBM Plex Sans', sans-serif;
    width: 100%;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #333;
}

.success-message {
    background: #d4edda;
    border: 1px solid #28a745;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #155724;
}

@media (max-width: 1200px) {
    .list-header {
        grid-template-columns: 70px 60px 150px 1fr 60px 80px 150px;
        gap: 10px;
        padding: 12px 15px;
        font-size: 10px;
    }
    
    .list-row {
        grid-template-columns: 70px 60px 150px 1fr 60px 80px 150px;
        gap: 10px;
        padding: 15px;
    }
    
    .list-row img {
        width: 60px;
        height: 60px;
    }
    
    .list-add .card-add-btn {
        min-width: 100px;
        padding: 8px 12px;
        font-size: 12px;
    }
}

@media (max-width: 900px) {
    body {
        font-size: 14px;
    }
    
    .header {
        padding: 15px 20px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .header-top {
        width: 100%;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .logo {
        font-size: 18px !important;
    }
    
    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav.active {
        max-height: 300px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 15px 20px;
        border-bottom: 1px solid #e0e0e0;
        text-align: left;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .cart-btn {
        font-size: 11px;
        padding: 6px 12px;
        margin: 15px 20px;
    }
    
    .container {
        margin-top: 60px !important;
        flex-direction: column !important;
    }
    
    .nav.active ~ .container {
        margin-top: 220px !important;
    }
    
    .sidebar {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        border-right: none !important;
        border-bottom: 1px solid #000;
        padding: 15px !important;
        overflow-x: auto;
        overflow-y: visible;
    }
    
    .search-box {
        font-size: 13px;
        padding: 8px;
        margin-bottom: 15px;
    }
    
    .category-title {
        font-size: 10px;
        margin-bottom: 10px;
    }
    
    .category-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .category-item {
        padding: 6px 12px;
        border: 1px solid #000;
        font-size: 12px;
        border-radius: 3px;
        white-space: nowrap;
    }
    
    .category-item.active {
        background: #000;
        color: #fff;
    }
    
    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
        padding: 15px !important;
    }
    
    .results-count {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        font-size: 13px;
    }
    
    .view-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    .view-toggle {
        gap: 8px;
    }
    
    .view-btn {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .pricing-info {
        font-size: 11px;
    }
    
    .grid-view {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .card-image {
        height: 250px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .card-name {
        font-size: 16px;
    }
    
    .card-description {
        font-size: 12px;
    }
    
    .list-header {
        display: none !important;
    }
    
    .list-row {
        grid-template-columns: 1fr !important;
        gap: 12px;
        padding: 15px;
    }
    
    .list-image {
        display: none !important;
    }
    
    .list-image img {
        display: none !important;
    }
    
    .list-add {
        justify-content: flex-start;
        width: 100%;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .list-add input[type="number"] {
        flex: 0 0 70px;
    }
    
    .list-add .card-add-btn {
        flex: 1;
        min-width: 150px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
    padding: 40px 20px;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 700px;
    border: 2px solid #000;
    margin: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #000;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.modal-close:hover {
    opacity: 0.6;
}

.modal-body {
    padding: 30px;
}

/* Cart Items */
.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 60px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 60px !important;
    height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-id {
    font-size: 11px;
    color: #666;
    margin-bottom: 10px;
}

.cart-item-controls {
    display: flex;
    gap: 20px;
    align-items: center;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-control label {
    font-size: 13px;
    color: #666;
}

.quantity-control input {
    width: 60px;
    padding: 5px;
    border: 1px solid #000;
    text-align: center;
    font-family: 'SuisseSign', 'IBM Plex Sans', sans-serif;
}

.days-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.days-control label {
    font-size: 13px;
    color: #666;
}

.days-control input {
    width: 60px;
    padding: 5px;
    border: 1px solid #000;
    text-align: center;
    font-family: 'SuisseSign', 'IBM Plex Sans', sans-serif;
}

.cart-item-price {
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

.cart-item-remove {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    color: #666;
}

.cart-item-remove:hover {
    color: #000;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.cart-summary {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #000;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
}

.summary-row.total {
    font-size: 20px;
    font-weight: 600;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    margin-top: 10px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #000;
    font-size: 14px;
    font-family: 'SuisseSign', 'IBM Plex Sans', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px #000;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-summary {
    background: #fff;
    padding: 20px;
    margin: 30px 0 20px;
    border: 1px solid #000;
}

.form-summary h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.booking-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 14px;
}

.booking-total {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #000;
    font-size: 18px;
    font-weight: 600;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'SuisseSign', 'IBM Plex Sans', sans-serif;
    width: 100%;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #333;
}

.success-message {
    background: #d4edda;
    border: 1px solid #28a745;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #155724;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 20px auto;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .cart-item-image {
        width: 100%;
        height: 150px;
    }
    
    .cart-item-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }
    
    .quantity-control,
    .days-control {
        width: 100%;
    }
    
    .quantity-control input,
    .days-control input {
        width: 80px;
    }
    
    .item-detail-content {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .item-detail-image {
        aspect-ratio: 4/3;
    }
}

/* Item Detail Modal */
.modal-large {
    max-width: 900px;
}

.item-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 900px) {
    .item-detail-content {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

.item-detail-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.item-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item-detail-info {
    display: flex;
    flex-direction: column;
}

.item-modal-id {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 10px;
}

.item-detail-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.item-modal-description {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    flex: 1;
}

.item-modal-specs {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
}

.variant-selector-modal {
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    border-radius: 4px;
}

.variant-selector-modal label {
    font-size: 13px;
    font-weight: 600;
    margin-right: 10px;
    color: #333;
}

.variant-selector-modal select {
    padding: 8px 12px;
    border: 1px solid #000;
    background: #fff;
    font-size: 14px;
    font-family: 'SuisseSign', 'IBM Plex Sans', sans-serif;
    cursor: pointer;
    min-width: 100px;
}

.variant-selector-modal select:hover {
    background: #f9f9f9;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
}

.spec-row:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}

.spec-label {
    font-weight: 600;
    color: #666;
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}
