@view-transition {
    navigation: auto;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f7f7f7;
}

/* About Page Styles */
.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    padding: 20px;
    padding-top: 0px;
}

h1 {
    font-family: 'Special Gothic Expanded One', sans-serif;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Navigation Icons */
.logoimg {
    max-height: 60px;
    height: 60px;
}

.cartimg {
    max-height: 26px;
    height: 26px;
    margin-right: 25px;
    margin-top: 17px;
    float: right;
    vertical-align: middle;
}

.menuimg {
    max-height: 26px;
    height: 26px;
    margin-right: 35px;
    margin-top: 17px;
    float: right;
}

/* Footer Styles */
.vertical-footer {
    position: fixed;
    top: 50%;
    left: 0;
    right: auto;
    transform: translateY(-50%);
    color: #333;
    padding: 0;
    z-index: 1000;
}

.vertical-footer ul {
    list-style: none;
    margin: 5px;
    padding: 0;
    writing-mode: sideways-lr;
    text-orientation: mixed;
    font-family: Montserrat, sans-serif;
}

.vertical-footer ul li {
    margin: 0;
}

.vertical-footer ul li a {
    margin-bottom: 10px;
    display: inline-block;
    text-decoration: underline;
    color: black;
    font-size: 14px;
}

.vertical-footer ul li a:hover {
    text-decoration: none;
    color: black;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .about-content {
        padding: 20px 0;
    }
    
    .about-text {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .about-text p {
        font-size: 1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
}