
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	font-family: 'Tektur', sans-serif;
	margin: 0;
	background-color: #edf0f5;
}

.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 122px 20px 20px 20px;
	min-height: calc(100vh - 144px);
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

.breadcrumb span {
    color: #666;
    text-decoration: none;
	text-transform: uppercase;
}

/* .breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #000;
} */

.product-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-btn {
    position: absolute;
    background-color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    z-index: 2;
}

.gallery-btn:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.zoom-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.zoom-btn:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    /* justify-content: center; */
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    max-width: 500px;
    padding: 5px;
}

.thumbnail-gallery::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-gallery::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.thumbnail-gallery::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.thumbnail-gallery::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: #007bff;
    transform: scale(1.05);
}

.product-info {
    padding: 20px 0;
}

.product-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.properties {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.property-selector {
    margin-bottom: 30px;
}

.property-selector label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
}

.property-selector select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    background-color: white;
    cursor: pointer;
    min-width: 100px;
	font-weight: 600;
	letter-spacing: 5%;
}

.product-description {
    margin-bottom: 40px;
}

.product-description p {
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.more-details {
    color: #dc3545;
    text-decoration: none;
    font-weight: 500;
}

.more-details:hover {
    text-decoration: underline;
}

.purchase-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: #C80001;
}

.buy-button {
    background-color: #C80001;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.buy-button:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.buy-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {    
    .product-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-title {
        font-size: 28px;
    }
    
    .purchase-section {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .buy-button {
        width: 100%;
        text-align: center;
    }
}

/* Zoom functionality */
.main-image.zoomed {
    cursor: zoom-out;
}

.main-image.zoomed img {
    transform: scale(2);
    cursor: move;
}